We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 931cc82 commit 8f15eb3Copy full SHA for 8f15eb3
sandbox/test_appdirs.py
@@ -1,4 +1,4 @@
1
-import appdirs
+import platformdirs
2
3
# get current version
4
# get current paths (ffmpeg/ffprobe)
@@ -7,4 +7,4 @@
7
8
app = "ffmpeg-downloader", "python-ffmpegio"
9
10
-print(appdirs.user_data_dir(*app))
+print(platformdirs.user_data_dir(*app))
src/ffmpeg_downloader/_path.py
@@ -1,5 +1,5 @@
from os import path
-from appdirs import user_data_dir
+from platformdirs import user_data_dir
def get_dir():
5
return user_data_dir("ffmpeg-downloader", "ffmpegio")
0 commit comments