├── .flake8 ├── .github ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── python-package.yml │ └── python-publish.yml ├── .gitignore ├── .pylintrc ├── LICENSE ├── Makefile ├── README.md ├── pyproject.toml ├── setup.cfg ├── setup.py ├── tefas ├── __init__.py ├── crawler.py └── schema.py ├── tests ├── __init__.py ├── test_crawler.py └── test_data_schema.py └── tox.ini /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakyilmaz321/tefas-crawler/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakyilmaz321/tefas-crawler/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakyilmaz321/tefas-crawler/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakyilmaz321/tefas-crawler/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakyilmaz321/tefas-crawler/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakyilmaz321/tefas-crawler/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakyilmaz321/tefas-crawler/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakyilmaz321/tefas-crawler/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakyilmaz321/tefas-crawler/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakyilmaz321/tefas-crawler/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakyilmaz321/tefas-crawler/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakyilmaz321/tefas-crawler/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakyilmaz321/tefas-crawler/HEAD/setup.py -------------------------------------------------------------------------------- /tefas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakyilmaz321/tefas-crawler/HEAD/tefas/__init__.py -------------------------------------------------------------------------------- /tefas/crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakyilmaz321/tefas-crawler/HEAD/tefas/crawler.py -------------------------------------------------------------------------------- /tefas/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakyilmaz321/tefas-crawler/HEAD/tefas/schema.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakyilmaz321/tefas-crawler/HEAD/tests/test_crawler.py -------------------------------------------------------------------------------- /tests/test_data_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakyilmaz321/tefas-crawler/HEAD/tests/test_data_schema.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burakyilmaz321/tefas-crawler/HEAD/tox.ini --------------------------------------------------------------------------------