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
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
| <!Doctype html> |
| 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' | |
| 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] |