simple python flask api which scrape goodreturns.in and return currency rate in India with other world currencies in json format.
Read more at: https://www.goodreturns.in/currency/world-currencies-vs-indian-rupee-inr.html
python3 app.py
s = "I live in the India" | |
t = s[::-1].replace(" ", "") | |
s = list(s) | |
index= 0 | |
for i in range(len(s)): | |
if s[i] != " ": | |
s[i] = t[index] |
from googleapiclient.discovery import build | |
from googleapiclient.http import MediaFileUpload | |
from google.oauth2 import service_account | |
# Replace 'FOLDER_NAME' with the name you want to give your new folder | |
folder_name = 'Test Upload' | |
<!Doctype html> |
simple python flask api which scrape goodreturns.in and return currency rate in India with other world currencies in json format.
Read more at: https://www.goodreturns.in/currency/world-currencies-vs-indian-rupee-inr.html
python3 app.py