Metadata-Version: 2.1
Name: moneyline
Version: 0.1.0
Summary: Python package meant to ease the use of the LiveOdds API to find arbitrage opportunities
Author: spogtrop
Author-email: spogtrop@gmail.com
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
License-File: LICENSE

# Moneyline 
Moneyline is a python package meant to help detect arbitrage opportunities in sports (only for moneyline bets). It has the following functions:
fetch_and_process_odds_data(api_key, sports, regions), where the api key is a string, and sports and regions are lists of strings; returns df

group_event_odds(df)

find_arb_ml(result_df)

Run these functions sequentially to get the final dataframe that is structured to detect arbitrage and non-arbitrage opportunities


## Installation 
```bash pip install moneyline
