Шаг 1: чтение файла
#read the csv file
with open('myfile.csv', 'rt') as csvfile:
reader = csv.reader(csvfile, dialect='excel')
reader_list = list(reader)
for row in reader_list:
print(row[0])
print(type(row[0])) #printing the type just for illustration
output
'171667494.1541516384'
<class 'str'>
'548162985.1541558366'
<class 'str'>
'149398364.1541533183'
<class 'str'>
'888359874.1541543604'
<class 'str'>
'1628297960.1541566771'
Шаг 2: Я хочу передать точно такую же строку (с одинарными кавычками) в Google API, как показано ниже. Как мне от этого избавиться?
for row in reader_list:
user_deletion_request_resource.upsert(
body = {
"id": { # User ID.
"userId": row[0], # I am passing the strings here
"type": "CLIENT_ID"
}}
).execute()
По какой-то причине API принимает дополнительную цитату, как показано ниже в userId
{'id': {'type': 'CLIENT_ID', 'userId': "'785972698.1540375322'"}, 'deletionRequestTime': '2020-02-03T08:25:16.796Z'}