Skip to content

Commit

Permalink
Improve CLI help
Browse files Browse the repository at this point in the history
  • Loading branch information
yaph committed Oct 24, 2022
1 parent fbebbd9 commit 1572106
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wikidata_dl/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ def main():
parser.add_argument('--cache-dir', '-d', type=Path, default='wikidata',
help='The directory where Wikidata files are stored.')
parser.add_argument('--cache-time', '-t', default=2592000, type=int,
help='Cache time in seconds, set to 30 days by default.')
help='Cache time for items in seconds, set to 30 days by default.')
parser.add_argument('--format', '-f', choices=('csv', 'json'), default='csv',
help='Download format, defaults to csv.')
help='Download format of query result, defaults to csv.')
parser.add_argument('--items', '-i', action='store_true',
help='Download Wikidata items as individual JSON files.')
parser.add_argument('--language', '-l', type=str, default='en',
Expand Down

0 comments on commit 1572106

Please sign in to comment.