├── .gitignore ├── LICENSE ├── docs ├── build.md ├── contribute.md ├── index.md ├── installation.md ├── quickstart.md └── requirements.md ├── readme.md ├── requirements.txt ├── tests ├── api_get_token.py ├── api_get_version.py ├── api_post_entry.py └── context.py └── wallabag ├── __init__.py ├── __main__.py ├── api.py ├── conf.py ├── entry.py ├── wallabag.py ├── wallabag_add.py ├── wallabag_config.py ├── wallabag_delete.py ├── wallabag_export.py ├── wallabag_help.py ├── wallabag_list.py ├── wallabag_show.py └── wallabag_update.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /docs/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/docs/build.md -------------------------------------------------------------------------------- /docs/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/docs/contribute.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/docs/requirements.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/api_get_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/tests/api_get_token.py -------------------------------------------------------------------------------- /tests/api_get_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/tests/api_get_version.py -------------------------------------------------------------------------------- /tests/api_post_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/tests/api_post_entry.py -------------------------------------------------------------------------------- /tests/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/tests/context.py -------------------------------------------------------------------------------- /wallabag/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Prevent the script from using as a module 3 | """ 4 | pass 5 | -------------------------------------------------------------------------------- /wallabag/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/wallabag/__main__.py -------------------------------------------------------------------------------- /wallabag/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/wallabag/api.py -------------------------------------------------------------------------------- /wallabag/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/wallabag/conf.py -------------------------------------------------------------------------------- /wallabag/entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/wallabag/entry.py -------------------------------------------------------------------------------- /wallabag/wallabag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/wallabag/wallabag.py -------------------------------------------------------------------------------- /wallabag/wallabag_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/wallabag/wallabag_add.py -------------------------------------------------------------------------------- /wallabag/wallabag_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/wallabag/wallabag_config.py -------------------------------------------------------------------------------- /wallabag/wallabag_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/wallabag/wallabag_delete.py -------------------------------------------------------------------------------- /wallabag/wallabag_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/wallabag/wallabag_export.py -------------------------------------------------------------------------------- /wallabag/wallabag_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/wallabag/wallabag_help.py -------------------------------------------------------------------------------- /wallabag/wallabag_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/wallabag/wallabag_list.py -------------------------------------------------------------------------------- /wallabag/wallabag_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/wallabag/wallabag_show.py -------------------------------------------------------------------------------- /wallabag/wallabag_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nepochal/wallabag-cli/HEAD/wallabag/wallabag_update.py --------------------------------------------------------------------------------