Skip to content
Merged

Dev #92

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions api.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,14 @@ def decorated_function(*args, **kwargs):
@require_api_key
def get_generic():
return {
'/genai/resume_market':'Resume market',
'/genai/resume_ticker/TICKER.sa':'Basic info about TICKSER.sa',
'/genai/resume_market': 'Resume market',
'/genai/resume_ticker/TICKER': 'Resume for specific ticker',
'/brapi/quote/TICKER': 'Get stock quote data',
'/brapi/async_quote/TICKER': 'Get stock quote data (async)',
'/brapi/sync_quote/TICKER': 'Get stock quote data with modules',
'/brapi/sync_quote_list': 'Get list of predefined stocks',
'/brapi/sync_quote_by_sector/SECTOR': 'Get stocks by sector (top 10 by volume)',
'/brapi/sync_quote_list_sectors': 'Get available sectors list',
}, 200


Expand Down
38 changes: 0 additions & 38 deletions controllers/mainprices.py

This file was deleted.

4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Flask
Flask-Cors
python-dotenv
pandas
yfinance
marko
brapi
google-generativeai
plotly
requests
gunicorn
gevent
werkzeug
Loading