├── .circleci └── config.yml ├── .flake8 ├── .gitignore ├── .pylintrc ├── LICENSE ├── README.md ├── example.py ├── numerapi ├── __init__.py └── numerapi.py └── setup.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atreichel/NumerAPI/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atreichel/NumerAPI/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atreichel/NumerAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atreichel/NumerAPI/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atreichel/NumerAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atreichel/NumerAPI/HEAD/README.md -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atreichel/NumerAPI/HEAD/example.py -------------------------------------------------------------------------------- /numerapi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /numerapi/numerapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atreichel/NumerAPI/HEAD/numerapi/numerapi.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atreichel/NumerAPI/HEAD/setup.py --------------------------------------------------------------------------------