Created
July 28, 2018 07:54
-
-
Save alasarr/9fb5752b17b771c4c7b5eb9f8c298322 to your computer and use it in GitHub Desktop.
COPY from CARTO
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# create table trans_amt_rank_201805( | |
# region_type text, | |
# region_id text, | |
# month text | |
# industry_code text, | |
# industry_name text, | |
# trans_amt_share text, | |
# trans_amt_rank integer | |
# | |
# ) | |
import requests | |
import time | |
import traceback | |
start_time = time.time() | |
api_key = '50e02854ebc4813f9b9f8210ac010639c260b2e5' | |
username = 'alasarr' | |
upload_file = 'trans_amt_rank_201805.csv' | |
q = "COPY trans_amt_rank_201805 (region_type,region_id,month,industry_code,industry_name,trans_amt_share,trans_amt_rank) FROM STDIN WITH (FORMAT csv, HEADER true)" | |
url = "http://%s.carto.com/api/v2/sql/copyfrom" % username | |
with open(upload_file, 'rb') as f: | |
try: | |
r = requests.post(url, params={'api_key': api_key, 'q': q}, data=f, stream=True) | |
if r.status_code != 200: | |
print(r.text) | |
else: | |
status = r.json() | |
print("Success: %s rows imported" % status['total_rows']) | |
except: | |
# print(r) | |
traceback.print_exc() | |
end_time = time.time() - start_time | |
print(end_time) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment