├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── examples └── epic-201572338.gif ├── k2flix ├── __init__.py ├── core.py ├── crawler.py ├── tests │ └── test_core.py └── version.py ├── requirements.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeplerGO/k2flix/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeplerGO/k2flix/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeplerGO/k2flix/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeplerGO/k2flix/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeplerGO/k2flix/HEAD/README.rst -------------------------------------------------------------------------------- /examples/epic-201572338.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeplerGO/k2flix/HEAD/examples/epic-201572338.gif -------------------------------------------------------------------------------- /k2flix/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeplerGO/k2flix/HEAD/k2flix/__init__.py -------------------------------------------------------------------------------- /k2flix/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeplerGO/k2flix/HEAD/k2flix/core.py -------------------------------------------------------------------------------- /k2flix/crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeplerGO/k2flix/HEAD/k2flix/crawler.py -------------------------------------------------------------------------------- /k2flix/tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeplerGO/k2flix/HEAD/k2flix/tests/test_core.py -------------------------------------------------------------------------------- /k2flix/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeplerGO/k2flix/HEAD/k2flix/version.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | matplotlib 3 | astropy 4 | imageio 5 | tqdm 6 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeplerGO/k2flix/HEAD/setup.py --------------------------------------------------------------------------------