RegEx update

This commit is contained in:
Андрей 2021-04-06 11:07:48 +04:00 committed by GitHub
parent 3e602070ac
commit 2606b08393
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,7 +16,7 @@ template = '{author} -- {title} -- {year}.{ext}'
curdir = os.getcwd() curdir = os.getcwd()
# Компилируем регулярку # Компилируем регулярку
# https://regexr.com/5q42v # https://regexr.com/5q42v
bookregex = re.compile(r'[\[\(]*([А-Яа-я\w\s]+?)[\]\)]*[:\.\-\s]*([А-Яа-я\w\d\s]+?)[:\.\-\s]*(\d+)(?:\.(pdf|doc[x]*|epub|fb2|txt))') bookregex = re.compile(r'[\[\(]*([А-Яа-я\w\s]+?)[\]\)]*[:\.\-\s]*([А-Яа-я\w\d\s]+?)[:\.\-\s]*(\d+)(?:\.(pdf|doc[x]*|odf|epub|fb2|txt))')
# Получаем дерево каталогов и файлов в curdir # Получаем дерево каталогов и файлов в curdir
for rootdir, subdirs, files in os.walk(curdir): for rootdir, subdirs, files in os.walk(curdir):