├── .github ├── FUNDING.yml ├── dependabot.yml ├── release.yml └── workflows │ ├── ci.yml │ ├── pr-labels.yml │ └── release.yml ├── .gitignore ├── .readthedocs.yaml ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── docs ├── Makefile ├── conf.py ├── index.rst ├── make.bat └── simple.rst ├── mousebender ├── __init__.py ├── py.typed └── simple.py ├── noxfile.py ├── pyproject.toml └── tests ├── __init__.py ├── data ├── __init__.py └── simple │ ├── __init__.py │ ├── archive_links.aicoe-tensorflow.html │ ├── archive_links.numpy-piwheels.html │ ├── archive_links.numpy.html │ ├── archive_links.pulpcore-client.html │ ├── archive_links.pytorch.html │ ├── index.piwheels.html │ └── index.pypi.html └── test_simple.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: brettcannon 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/pr-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/.github/workflows/pr-labels.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/simple.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/docs/simple.rst -------------------------------------------------------------------------------- /mousebender/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/mousebender/__init__.py -------------------------------------------------------------------------------- /mousebender/py.typed: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mousebender/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/mousebender/simple.py -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/simple/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/simple/archive_links.aicoe-tensorflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/tests/data/simple/archive_links.aicoe-tensorflow.html -------------------------------------------------------------------------------- /tests/data/simple/archive_links.numpy-piwheels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/tests/data/simple/archive_links.numpy-piwheels.html -------------------------------------------------------------------------------- /tests/data/simple/archive_links.numpy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/tests/data/simple/archive_links.numpy.html -------------------------------------------------------------------------------- /tests/data/simple/archive_links.pulpcore-client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/tests/data/simple/archive_links.pulpcore-client.html -------------------------------------------------------------------------------- /tests/data/simple/archive_links.pytorch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/tests/data/simple/archive_links.pytorch.html -------------------------------------------------------------------------------- /tests/data/simple/index.piwheels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/tests/data/simple/index.piwheels.html -------------------------------------------------------------------------------- /tests/data/simple/index.pypi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/tests/data/simple/index.pypi.html -------------------------------------------------------------------------------- /tests/test_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettcannon/mousebender/HEAD/tests/test_simple.py --------------------------------------------------------------------------------