├── .coveragerc ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md └── dependabot.yml ├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CHANGELOG.rst ├── CODE_OF_CONDUCT.md ├── LICENSE.txt ├── Pipfile ├── Pipfile.lock ├── README.md ├── asset └── chart-example.gif ├── docs ├── Makefile ├── _static │ └── .gitignore ├── authors.rst ├── changelog.rst ├── conf.py ├── index.rst └── license.rst ├── pyproject.toml ├── requirements.txt ├── setup.cfg ├── setup.py ├── src └── twelvedata │ ├── __init__.py │ ├── client.py │ ├── context.py │ ├── endpoints.py │ ├── exceptions.py │ ├── http_client.py │ ├── mixins.py │ ├── renders.py │ ├── time_series.py │ ├── utils.py │ └── websocket.py └── tests ├── conftest.py └── test_client.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/README.md -------------------------------------------------------------------------------- /asset/chart-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/asset/chart-example.gif -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.gitignore: -------------------------------------------------------------------------------- 1 | # Empty directory 2 | -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. _authors: 2 | .. include:: ../AUTHORS.rst 3 | -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. _changes: 2 | .. include:: ../CHANGELOG.rst 3 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/docs/license.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pytimeparse 2 | requests 3 | setuptools -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/setup.py -------------------------------------------------------------------------------- /src/twelvedata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/src/twelvedata/__init__.py -------------------------------------------------------------------------------- /src/twelvedata/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/src/twelvedata/client.py -------------------------------------------------------------------------------- /src/twelvedata/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/src/twelvedata/context.py -------------------------------------------------------------------------------- /src/twelvedata/endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/src/twelvedata/endpoints.py -------------------------------------------------------------------------------- /src/twelvedata/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/src/twelvedata/exceptions.py -------------------------------------------------------------------------------- /src/twelvedata/http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/src/twelvedata/http_client.py -------------------------------------------------------------------------------- /src/twelvedata/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/src/twelvedata/mixins.py -------------------------------------------------------------------------------- /src/twelvedata/renders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/src/twelvedata/renders.py -------------------------------------------------------------------------------- /src/twelvedata/time_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/src/twelvedata/time_series.py -------------------------------------------------------------------------------- /src/twelvedata/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/src/twelvedata/utils.py -------------------------------------------------------------------------------- /src/twelvedata/websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/src/twelvedata/websocket.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding: utf-8 3 | -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twelvedata/twelvedata-python/HEAD/tests/test_client.py --------------------------------------------------------------------------------