fixed file paths

This commit is contained in:
Hellow 2023-05-10 16:39:44 +02:00
parent 322010cb8a
commit f39c894fd7
3 changed files with 34 additions and 2 deletions

View File

@ -2,6 +2,7 @@
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/venv/lib/python3.10/site-packages" isTestSource="false" />
<excludeFolder url="file://$MODULE_DIR$/venv" />
</content>
<orderEntry type="inheritedJdk" />

View File

@ -8,10 +8,37 @@ beautifulsoup4~=4.11.1
pycountry~=22.3.5
python-dateutil~=2.8.2
pandoc~=2.3
SQLAlchemy
SQLAlchemy~=2.0.7
setuptools~=60.2.0
tqdm~=4.65.0
peewee~=3.15.4
ffmpeg-python~=0.2.0
platformdirs~=3.2.0
transliterate~=1.10.2
pathvalidate~=2.5.2
pytest~=7.2.1
soupsieve~=2.3.2.post1
pip~=21.3.1
build~=0.9.0
wheel~=0.37.1
future~=0.18.3
pytz~=2022.4
attrs~=22.2.0
pep517~=0.13.0
tomli~=2.0.1
numpy~=1.23.4
regex~=2022.9.13
pandas~=1.5.0
ply~=3.11
plumbum~=1.8.1
wcwidth~=0.2.5
pluggy~=1.0.0
exceptiongroup~=1.1.0
iniconfig~=2.0.0
six~=1.16.0
greenlet~=2.0.2
Pygments~=2.13.0
idna~=3.4
urllib3~=1.26.12
pyparsing~=3.0.9
progressbar~=2.5

View File

@ -1,6 +1,8 @@
from transliterate.exceptions import LanguageDetectionError
from transliterate import translit
from pathvalidate import sanitize_filename
def unify(string: str) -> str:
"""
@ -28,4 +30,6 @@ def fit_to_file_system(string: str) -> str:
string = string.replace("/", "|").replace("\\", "|")
string = sanitize_filename(string)
return string