Skip to content

Commit

Permalink
Change table name
Browse files Browse the repository at this point in the history
  • Loading branch information
ramisedhom committed Jun 29, 2023
1 parent 4ab6369 commit dcb2ea9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions update-seatable-database.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
## Initialize connection to SeaTable
server_url = 'https://cloud.seatable.io'
api_token = os.environ.get('SEATABLE_API_TOKEN')
table_name = 'Plugins Categorized'
table_name = 'Plugins'
base = Base(api_token, server_url)
base.auth()

## Get rows from 'Plugins Categorized' table
## Get rows from 'Plugins' table
lst_seatable = base.query('SELECT _id, ID, Name, Description, `Github Link` FROM `' + table_name + '` LIMIT 10000')

## Convert list to Pandas dataframe using json_normalize to flatten the list
Expand Down

0 comments on commit dcb2ea9

Please sign in to comment.