gitextract_eqf5qz2p/ ├── .editorconfig ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .hound.yml ├── .travis.yml ├── CONTRIBUTORS.md ├── LICENSE ├── Procfile ├── README.md ├── cosmos_search/ │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── human_curated_lists/ │ ├── awesome-competitive-coding.md │ ├── awesome-lists.md │ └── best-student-discount-services.md ├── lists.json ├── manage.py ├── metadata.json ├── requirements.txt ├── runtime.txt ├── scripts/ │ └── develop.sh ├── search/ │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations/ │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── templatetags/ │ │ ├── __init__.py │ │ ├── calculator.py │ │ ├── random_numbers.py │ │ └── youtube.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── static/ │ └── css/ │ └── calculator.css ├── tags.json ├── templates/ │ └── cosmos/ │ ├── _base_css.html │ ├── _footer.html │ ├── _nav.html │ ├── bundles/ │ │ ├── css.html │ │ └── js.html │ ├── calculator.html │ ├── code.html │ ├── codeResults.html │ ├── error/ │ │ ├── HTTP400.html │ │ ├── HTTP403.html │ │ ├── HTTP404.html │ │ └── HTTP500.html │ ├── header.html │ ├── index.html │ ├── lists.html │ ├── listsResults.html │ ├── lists_template.html │ ├── news.html │ ├── notfound.html │ ├── searchresults.html │ ├── tags.html │ └── youtubeResults.html ├── tox.ini └── update/ ├── __init__.py ├── admin.py ├── apps.py ├── migrations/ │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py