A Flask-based web application for processing and labeling match resolution results using the Sayari API.
- Clone the repository:
git clone https://github.com/yourusername/match-qa.git
cd match-qa- Install dependencies:
pip install -r requirements.txt- Create a
.envfile with your Sayari API credentials:
# Prod Credentials
base_url=https://api.sayari.com
client_id=YOUR_CLIENT_ID
client_secret=YOUR_CLIENT_SECRET
# Dev Credentials
dev_base_url=https://api.develop.sayari.com
dev_client_id=YOUR_DEV_CLIENT_ID
dev_client_secret=YOUR_DEV_CLIENT_SECRET
- Run the application:
python app.py