├── .flake8 ├── .github ├── dependabot.yaml └── workflows │ ├── release.yaml │ └── test.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── COPYING.md ├── MANIFEST.in ├── README.md ├── RELEASE.md ├── jupyterhub_config.py ├── jupyterhub_idle_culler ├── __init__.py └── __main__.py ├── pyproject.toml └── tests ├── conftest.py ├── jupyterhub_config.py └── test_idle_culler.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/jupyterhub-idle-culler/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/jupyterhub-idle-culler/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/jupyterhub-idle-culler/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/jupyterhub-idle-culler/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/jupyterhub-idle-culler/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/jupyterhub-idle-culler/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/jupyterhub-idle-culler/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/jupyterhub-idle-culler/HEAD/COPYING.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/jupyterhub-idle-culler/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/jupyterhub-idle-culler/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/jupyterhub-idle-culler/HEAD/RELEASE.md -------------------------------------------------------------------------------- /jupyterhub_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/jupyterhub-idle-culler/HEAD/jupyterhub_config.py -------------------------------------------------------------------------------- /jupyterhub_idle_culler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/jupyterhub-idle-culler/HEAD/jupyterhub_idle_culler/__init__.py -------------------------------------------------------------------------------- /jupyterhub_idle_culler/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/jupyterhub-idle-culler/HEAD/jupyterhub_idle_culler/__main__.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/jupyterhub-idle-culler/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/jupyterhub-idle-culler/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/jupyterhub_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/jupyterhub-idle-culler/HEAD/tests/jupyterhub_config.py -------------------------------------------------------------------------------- /tests/test_idle_culler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyterhub/jupyterhub-idle-culler/HEAD/tests/test_idle_culler.py --------------------------------------------------------------------------------