def readFile(file_object):
reader = csv.reader(file_object)
for row in reader:
status = api.get_status(row[0])
api.retweet(status.id)
print('Just retweeted the status with ID: %s' % (status.id))
## В ЭТОТ МОМЕНТ НУЖНО УДАЛИТЬ ПРОЧИТАННУЮ СТРОКУ(РЯД)
time.sleep(10)
if __name__ == "__main__":
csv_path = 'data.csv'
with open(csv_path, 'rt') as dataFile:
readFile(dataFile)