> ## Content Index
> Fetch the complete content index at: https://blog.jestor.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# Launching Python SDK
- URL: https://blog.jestor.com/launching-python-sdk/
- Published: 2022-09-01T14:58:41.000Z
- Updated: 2025-03-20T19:39:40.000Z
- Author: Fernando Nakandakari
- Tags: New features, #Migrated-1742495932782, #wp, #wp-post, #Import 2025-03-20 11:39

Open Source [Jestor](https://www.linkedin.com/company/jestor/?ref=blog.jestor.com) functions for [#developers](https://www.linkedin.com/feed/hashtag/?keywords=developers&highlightedUpdateUrns=urn%3Ali%3Aactivity%3A6970761932261797888&ref=blog.jestor.com).

- Connect your Jestor with your Python application with a few commands
- Custom Jestor functions
- Easily update your application and functions

Live for all users! What should be our next SDK?

## A few examples:

### Create Record

To create a record use the *table* method using the table name as a parameter, then the *insert* method using a Dictionary as a parameter. Example:Python

```
jestor = Jestor(token, org)
result = jestor.table('table_name').insert({'name': 'test'})
print(result) #result will be a python array with the values

```

### Edit Record

To edit a record use the *table* method using the table name as a parameter, then the *update* method using the id of the record that will be changed and a Dictionary as a parameter. Example:Python

```
jestor = Jestor(token, org)
recordId = 1
result = jestor.table('table_name').update(recordId, {'name': 'test'})
print(result) #result will be a python array with the values
```

And more

Here's the complete documentation: [https://docs.jestor.com/docs/jestor-sdk-for-python](https://docs.jestor.com/docs/jestor-sdk-for-python?ref=blog.jestor.com)