Metadata-Version: 2.1
Name: oddsapi
Version: 1.1.1
Summary: Python bindings for The Odds-Api
Home-page: https://github.com/sarartur/oddsapi
Author: Artur Saradzhyan
Author-email: saradzhyanartur@gmail.com
License: UNKNOWN
Description: # Python bindings for The Odds-Api.
        Python bindings for The Odds-Api.
        ## Description & Implementation
        A full Python Wrapper around The Odds-API which provides sports odds data for loads of sports from bookmakers around the world.
        Get your free API key at https://the-odds-api.com/. 
        ## Usage
        Please refer to https://the-odds-api.com/liveapi/guides/v3/ for detailed instructions for The Odds-Api. Below is a simple example of the usage.
        ``` python
        from oddsapi import OddsClient
        
        client = OddsClient(api_key="your api key")
        sports = client.retrieve_sports()
        odds = client.retrieve_odds(
            sport_key='americanfootball_ncaaf',
            region='us',
            mkt='spreads'
        )
        print(f"Requests Remaining: {client.requests_remaining}")
        print(f"Requests Used: {client.requests_used}")
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
