tosin2013 commited on
Commit
acb5465
1 Parent(s): 8a96a0e

adding more choices

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -305,8 +305,8 @@ to_currency_choices = ['USD', 'JPY', 'GBP', 'AUD', 'CAD', 'CHF', 'NZD', 'EUR']
305
  api_key_link = "https://www.alphavantage.co/support/#api-key"
306
 
307
  api_key_input = gr.Textbox(label="API Key", placeholder="Enter your API key")
308
- from_currency_input = gr.Dropdown(label="From Currency", choices=['EUR', 'GBP', 'USD', 'AUD', 'JPY'])
309
- to_currency_input = gr.Dropdown(label="To Currency", choices=['USD', 'JPY', 'GBP', 'AUD', 'CAD'])
310
  interval_input = gr.Radio(label="Interval", choices=["1min", "5min", "15min", "30min", "60min"])
311
 
312
  gr.Interface(
 
305
  api_key_link = "https://www.alphavantage.co/support/#api-key"
306
 
307
  api_key_input = gr.Textbox(label="API Key", placeholder="Enter your API key")
308
+ from_currency_input = gr.Dropdown(label="From Currency", choices= ['EUR', 'GBP', 'USD', 'AUD', 'JPY', 'CAD', 'CHF', 'NZD'])
309
+ to_currency_input = gr.Dropdown(label="To Currency", choices=['USD', 'JPY', 'GBP', 'AUD', 'CAD', 'CHF', 'NZD', 'EUR'])
310
  interval_input = gr.Radio(label="Interval", choices=["1min", "5min", "15min", "30min", "60min"])
311
 
312
  gr.Interface(