aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-10-20Update READMECody Logan
2023-10-20Add type annotations to source filesCody Logan
2023-10-20Move logging configuration to new fileCody Logan
Also, use a LoggerAdapter to add contextual info (such as filenames) to log messages when downloading, especially useful with threaded batch processing.
2023-10-20Move batch_download function to proper fileCody Logan
2023-10-20Reorganize File classCody Logan
2023-10-20Tweak pyproject.toml and setup.pyCody Logan
2023-10-20Fix bug in batch downloadingCody Logan
An invalid line in the batch file would cause the last valid file to be downloaded twice.
2023-10-17Clean up exception handling and error messagesCody Logan
2023-10-13Add note to README about dev branchCody Logan
2023-10-13Refactor parsing logic and revise exception handlingCody Logan
2023-10-13Update copyright yearCody Logan
2023-10-13Revise batch file parsing to ignore blank and commented linesCody Logan
Previously, blank lines would cause an error and lines prepended with "#" would be downloaded like any other, assuming they were valid. Now, "#" can be used to mark ignored files or comments.
2023-10-13Change logfile log level to debugCody Logan
2023-10-13Refactor code and improve docstringsCody Logan
2023-10-13Add Python 3.12 to matrixCody Logan
2023-10-10Move man-related files to docs directoryCody Logan
2023-10-09Style cleanupCody Logan
2023-10-09Add some tests for download functionsCody Logan
2023-10-09Add coverage conversion stepCody Logan
2023-10-09Add Codecov report to actions fileCody Logan
2023-10-06Remove unneeded dependency in testsCody Logan
2023-10-06Update actions for dev branch and Python 3.12Cody Logan
2023-10-06Add new options to readme and man pageCody Logan
2023-10-03Reduce repeated code in log configurationCody Logan
2023-10-03Add parallel download option in batch modeCody Logan
Number of download threads can be set with new -j option. Unfortunately, it's not that much faster than downloading in serial, since the API calls made before the downloads actually start are not (and ideally should not be) parallelized. Still, for large batches, it saves a bit of time. Known issue: due to the download threads writing to the log asynchronously, the messages get jumbled up. This will be fixed eventually.
2023-10-03Refactor for better code organizationCody Logan
2023-10-03Add short user and pass optionsCody Logan
Swapped path short option from -p to -P and added -u for username and -p for password
2023-10-03Update README and do some code cleanupCody Logan
2023-10-03Update READMECody Logan
2023-10-02Merge branch 'dev' of github.com:clpo13/wikiget into devCody Logan
2023-10-02Include man page, readme, and license when installing wheelCody Logan
2023-10-02Update man page with alternate invocationsCody Logan
2023-10-02Add initial manpageCody Logan
2023-09-27Update manifestCody Logan
2023-09-26Style and format fixesCody Logan
2023-09-26Merge branch 'logging' into devCody Logan
2023-09-26Reorganize file treeCody Logan
2023-09-26Update link in READMECody Logan
2023-09-26Update READMECody Logan
2023-09-26Reorganize code into src layoutCody Logan
2023-09-26Fix typo in pyproject.tomlCody Logan
2023-09-26Merge pull request #6 from clpo13/style-and-lintclpo13
Run linters with Hatch.
2023-09-26Remove unused Travis CI configCody Logan
2023-09-26Remove version constraints from lint toolsCody Logan
2023-09-26Get rid of magic numbers for verbosity checkingCody Logan
2023-09-26Additional cleanup with RuffCody Logan
2023-09-26Style fixups with BlackCody Logan
2023-09-26Use Hatch to build and run tests/lintersCody Logan
2023-09-26Modernize setuptools build (#5)clpo13
Remove usage of deprecated `python setup.py test` and move to pyproject.toml for project configuration.
2023-09-26Update python.ymlclpo13