Skip to content
Snippets Groups Projects
README.md 418 B
Newer Older
  • Learn to ignore specific revisions
  • Fynn Becker's avatar
    Fynn Becker committed
    ### postgrestutils
    
    A very basic POSTGREST client and utils
    
    #### Setup
      - add `"postgrestutils"` to your `INSTALLED_APPS` setting
      - add `POSTGREST_UTILS_BASE_URI` (should default to the most frequently used POSTGREST instance in the future) and `POSTGREST_UTILS_JWT` to your project settings
    
    
    #### Usage
    ```python
    from postgrestutils import postgrest_client
    postgrest_client.get("kerbals?select=id,forename")
    ```