I’m having some trouble getting your script to work.
If I try running it un-edited (other than replacing the variables), I get this:
Traceback (most recent call last):
File "./airtable.py", line 11, in <module>
from airtable import Airtable
File "/home/r3bl/scripts/airtable.py", line 11, in <module>
from airtable import Airtable
ImportError: cannot import name 'Airtable'
If I modify from airtable import Airtable to just import airtable and then lowercase the word “airtable” in links_tbl and archive_tbl, I get this:
Traceback (most recent call last):
File "./airtable.py", line 81, in <module>
main()
File "./airtable.py", line 24, in main
table_name='Links')
TypeError: 'module' object is not callable
I could use some help getting it to work.