├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.rst ├── afterhours ├── __init__.py ├── afterhours.py ├── tests │ ├── test_afterhours.py │ ├── test_utils.py │ └── tests.py └── utils.py ├── docs └── notebooks │ └── SampleUsage.ipynb ├── requirements.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrestler/after-hours/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrestler/after-hours/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrestler/after-hours/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrestler/after-hours/HEAD/README.rst -------------------------------------------------------------------------------- /afterhours/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrestler/after-hours/HEAD/afterhours/__init__.py -------------------------------------------------------------------------------- /afterhours/afterhours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrestler/after-hours/HEAD/afterhours/afterhours.py -------------------------------------------------------------------------------- /afterhours/tests/test_afterhours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrestler/after-hours/HEAD/afterhours/tests/test_afterhours.py -------------------------------------------------------------------------------- /afterhours/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrestler/after-hours/HEAD/afterhours/tests/test_utils.py -------------------------------------------------------------------------------- /afterhours/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrestler/after-hours/HEAD/afterhours/tests/tests.py -------------------------------------------------------------------------------- /afterhours/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrestler/after-hours/HEAD/afterhours/utils.py -------------------------------------------------------------------------------- /docs/notebooks/SampleUsage.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrestler/after-hours/HEAD/docs/notebooks/SampleUsage.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrestler/after-hours/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawrestler/after-hours/HEAD/setup.py --------------------------------------------------------------------------------