gitextract_79k4xdni/ ├── .github/ │ └── workflows/ │ └── python-ci.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.rst ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README-zh-cn.rst ├── README.rst ├── apt_smart/ │ ├── __init__.py │ ├── backends/ │ │ ├── __init__.py │ │ ├── debian.py │ │ ├── linuxmint.py │ │ └── ubuntu.py │ ├── cli.py │ ├── http.py │ ├── releases.py │ └── tests.py ├── constraints.txt ├── docs/ │ ├── api.rst │ ├── changelog.rst │ ├── conf.py │ ├── index.rst │ └── readme.rst ├── requirements-checks.txt ├── requirements-tests.txt ├── requirements-travis.txt ├── requirements.txt ├── scripts/ │ ├── check-code-style.sh │ ├── collect-full-coverage.sh │ └── install-on-travis.sh ├── setup.cfg ├── setup.py ├── test_custom_mirrors.txt └── tox.ini