Finished/refactored the add-to-csv script for Talkspace to move faster and not make so many API calls. Added some notes for Datasnipper.

This commit is contained in:
Norm Rasmussen
2023-12-12 17:22:13 -05:00
parent b35a650a11
commit b8dd4f0fe6
7 changed files with 25116 additions and 1 deletions

8
Scripts/dict_test.py Normal file
View File

@ -0,0 +1,8 @@
test_list = [
{"row_num":0, "name":"hello"},
{"row_num":1, "name":"goodbye"}
]
if "goodbye" in test_list[0].values():
print("It Exists!")
else:
print("it doesn't exist")