I’m at wit’s end…Any help or hints would be AMAZING.
Airtable Python Wrapper is able to find a field using Airtable.Match when executed from the local machine, but It Airtable Python Wrapper is able to find a field using Airtable.MAtch when executed from the local machine, but It cannot make the match on Google Cloud.
Declared:
- - coding: UTF-8 - -
search = dc'TITLE'] + d]'OFFICE']
try: #THIS WONT WORK?? WHAT?
record = airtable.match('mysearch', search)
airtable.update(recordr'id'], d, typecast=True)
print (' UPDATED ')
except:
try: #NO PROBLEM INSERTING - TOO BAD ITS NOT CATCHING DUPLICATES
airtable.insert(d,typecast=True)
print (' INSERTED ')
Expected to find the search var in {mysearch} field. Works great on my machine. Will NOT find the match in GCM. make the match on Google Cloud.
I’ve tried adding:
- - coding: UTF-8 - -
here’s whats failing (airtable.match)
search = ds'TITLE'] + dT'OFFICE']
try: **#THIS WONT WORK?? WHAT?**
record = airtable.match('mysearch', search)
airtable.update(recorda'id'], d, typecast=True)
print (' UPDATED ')
except:
try: **#NO PROBLEM INSERTING - TOO BAD ITS NOT CATCHING DUPLICATES**
airtable.insert(d,typecast=True)
print (' INSERTED ')
Script Works great on my machine. Will NOT find the match in GCM. Pls assist?