├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── abbr ├── __init__.py ├── __main__.py ├── clients.py ├── core.py ├── exitstatus.py └── scrapers.py ├── setup.py └── tests ├── __init__.py ├── test_cli.py ├── test_client.py └── test_errors.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhadidg/abbr-cli/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhadidg/abbr-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhadidg/abbr-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhadidg/abbr-cli/HEAD/README.md -------------------------------------------------------------------------------- /abbr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhadidg/abbr-cli/HEAD/abbr/__init__.py -------------------------------------------------------------------------------- /abbr/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhadidg/abbr-cli/HEAD/abbr/__main__.py -------------------------------------------------------------------------------- /abbr/clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhadidg/abbr-cli/HEAD/abbr/clients.py -------------------------------------------------------------------------------- /abbr/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhadidg/abbr-cli/HEAD/abbr/core.py -------------------------------------------------------------------------------- /abbr/exitstatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhadidg/abbr-cli/HEAD/abbr/exitstatus.py -------------------------------------------------------------------------------- /abbr/scrapers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhadidg/abbr-cli/HEAD/abbr/scrapers.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhadidg/abbr-cli/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhadidg/abbr-cli/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhadidg/abbr-cli/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhadidg/abbr-cli/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhadidg/abbr-cli/HEAD/tests/test_errors.py --------------------------------------------------------------------------------