Metadata-Version: 2.1
Name: tefas-wrapper
Version: 0.0.2
Summary: Tefas wrapper to fetch funds data from http://tefas.gov.tr/
Home-page: https://github.com/semudu/tefas-wrapper
Author: Serhat Durmaz
Author-email: serhat.md@gmail.com
License: MIT
Download-URL: https://github.com/semudu/tefas-wrapper/archive/v0.0.2.tar.gz
Keywords: TEFAS,WRAPPER,FUND,FON
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: beautifulsoup4

# tefas-wrapper
Fetch funds data from https://www.tefas.gov.tr

    pip install tefas-wrapper


usage:

    from wrapper import Tefas

    # ...

    tefas = Tefas()
    # single day
    result = tefas.fetch("AFT", "25.11.2020", "25.11.2020")

    # between two dates
    result = tefas.fetch("AFT", "15.11.2020", "20.11.2020")

    # from a cetain day until today
    result = tefas.fetch("AFT", "15.11.2020")                

    # latest value
    result = tefas.fetch("AFT")

    # latest values of all funds
    result = tefas.fetch()

    # ...



