├── LICENSE ├── README.rst ├── requirements.txt └── scripts └── link_docs.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catherinedevlin/python_learners_glossary/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catherinedevlin/python_learners_glossary/HEAD/README.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | beautifulsoup4 3 | -------------------------------------------------------------------------------- /scripts/link_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catherinedevlin/python_learners_glossary/HEAD/scripts/link_docs.py --------------------------------------------------------------------------------