├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── add-new-library-to-this-list.md │ └── add-xxx.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── docs ├── CNAME └── css │ └── extra.css ├── mkdocs.yml ├── requirements.txt └── sort.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveerpot/awesome-python/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/add-new-library-to-this-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveerpot/awesome-python/HEAD/.github/ISSUE_TEMPLATE/add-new-library-to-this-list.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/add-xxx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveerpot/awesome-python/HEAD/.github/ISSUE_TEMPLATE/add-xxx.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveerpot/awesome-python/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | *.py[co] 4 | 5 | docs/index.md 6 | site/ 7 | 8 | # PyCharm IDE 9 | .idea 10 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveerpot/awesome-python/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveerpot/awesome-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveerpot/awesome-python/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveerpot/awesome-python/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveerpot/awesome-python/HEAD/README.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | awesome-python.com -------------------------------------------------------------------------------- /docs/css/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveerpot/awesome-python/HEAD/docs/css/extra.css -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveerpot/awesome-python/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveerpot/awesome-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanveerpot/awesome-python/HEAD/sort.py --------------------------------------------------------------------------------