Fix names in config file
This commit is contained in:
parent
793b414426
commit
14096a796c
3 changed files with 15 additions and 12 deletions
5
.vscode/settings.json
vendored
5
.vscode/settings.json
vendored
|
@ -4,5 +4,8 @@
|
|||
"[python]": {
|
||||
"editor.tabSize": 4,
|
||||
"editor.rulers": [88]
|
||||
}
|
||||
},
|
||||
"python.formatting.provider": "black",
|
||||
"python.linting.flake8Enabled": true,
|
||||
"python.linting.enabled": true,
|
||||
}
|
||||
|
|
14
README.md
14
README.md
|
@ -10,14 +10,14 @@ Podweasels main configuration file is called `.podweasel.json` and should be loc
|
|||
|
||||
```
|
||||
{
|
||||
"podcast-directory" : "/home/<USER>/podcasts",
|
||||
"podcast_directory" : "/home/<USER>/podcasts",
|
||||
"maxnum" : 5,
|
||||
"cover-image" : true,
|
||||
"cover-image-name" : "folder",
|
||||
"rename-episodes" : true,
|
||||
"date-format" : "%Y-%m-%d",
|
||||
"connection-timeout" : 10,
|
||||
"conncetion-retries" : 3
|
||||
"cover_image" : true,
|
||||
"cover_image_name" : "folder",
|
||||
"rename_episodes" : true,
|
||||
"date_format" : "%Y-%m-%d",
|
||||
"connection_timeout" : 10,
|
||||
"conncetion_retries" : 3
|
||||
}
|
||||
```
|
||||
|
||||
|
|
|
@ -66,7 +66,7 @@ def print_green(s):
|
|||
|
||||
|
||||
def get_folder(shortname):
|
||||
base = CONFIGURATION["podcast-directory"]
|
||||
base = CONFIGURATION["podcast_directory"]
|
||||
return os.path.join(base, shortname)
|
||||
|
||||
|
||||
|
@ -306,7 +306,7 @@ def get_original_filename(url):
|
|||
|
||||
|
||||
def file_exists(shortname, filename):
|
||||
base = CONFIGURATION["podcast-directory"]
|
||||
base = CONFIGURATION["podcast_directory"]
|
||||
if os.path.exists(os.path.join(base, shortname, filename)):
|
||||
return True
|
||||
|
||||
|
@ -350,7 +350,7 @@ def download_multiple(feed, maxnum):
|
|||
|
||||
def download_single(folder, url, filename):
|
||||
print(url)
|
||||
base = CONFIGURATION["podcast-directory"]
|
||||
base = CONFIGURATION["podcast_directory"]
|
||||
|
||||
if "connection_timeout" in CONFIGURATION:
|
||||
connection_timeout = CONFIGURATION["connection_timeout"]
|
||||
|
@ -415,7 +415,7 @@ def available_feeds():
|
|||
contain a json configuration file describing which elements
|
||||
have been downloaded already, and how many will be kept.
|
||||
"""
|
||||
base = CONFIGURATION["podcast-directory"]
|
||||
base = CONFIGURATION["podcast_directory"]
|
||||
paths = [
|
||||
p
|
||||
for p in os.listdir(base)
|
||||
|
|
Loading…
Add table
Reference in a new issue