from pyairtable import Table # Set up the connection to our Airtable table BASE_ID = "app4WdpCpbne8JVJU" API_KEY="patmeLtGxrVz8HN1C.699482b9f0c5ea37997a38ff8964f71726630d4859f3eef542aaff9f097bba86" TABLE_NAME="pytable" table = Table(API_KEY, BASE_ID, TABLE_NAME) same="ansentase" add_this={ "Name":same } table.create(add_this)