%global _empty_manifest_terminate_build 0 Name: python-postgrest-py Version: 0.10.6 Release: 1 Summary: PostgREST client for Python. This library provides an ORM interface to PostgREST. License: MIT URL: https://github.com/supabase-community/postgrest-py Source0: https://mirrors.nju.edu.cn/pypi/web/packages/67/55/dbed1b827241e1ab87811568d9c8099f7b421743b828297945c2cfc2ca91/postgrest_py-0.10.6.tar.gz BuildArch: noarch Requires: python3-httpx Requires: python3-deprecation Requires: python3-pydantic Requires: python3-strenum %description # postgrest-py [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg?label=license)](https://opensource.org/licenses/MIT) [![CI](https://github.com/supabase-community/postgrest-py/actions/workflows/ci.yml/badge.svg)](https://github.com/supabase-community/postgrest-py/actions/workflows/ci.yml) [![Python](https://img.shields.io/pypi/pyversions/postgrest-py)](https://pypi.org/project/postgrest-py) [![Version](https://img.shields.io/pypi/v/postgrest-py?color=%2334D058)](https://pypi.org/project/postgrest-py) [![Codecov](https://codecov.io/gh/supabase-community/postgrest-py/branch/master/graph/badge.svg)](https://codecov.io/gh/supabase-community/postgrest-py) [![Last commit](https://img.shields.io/github/last-commit/supabase-community/postgrest-py.svg?style=flat)](https://github.com/supabase-community/postgrest-py/commits) [![GitHub commit activity](https://img.shields.io/github/commit-activity/m/supabase-community/postgrest-py)](https://github.com/supabase-community/postgrest-py/commits) [![Github Stars](https://img.shields.io/github/stars/supabase-community/postgrest-py?style=flat&logo=github)](https://github.com/supabase-community/postgrest-py/stargazers) [![Github Forks](https://img.shields.io/github/forks/supabase-community/postgrest-py?style=flat&logo=github)](https://github.com/supabase-community/postgrest-py/network/members) [![Github Watchers](https://img.shields.io/github/watchers/supabase-community/postgrest-py?style=flat&logo=github)](https://github.com/supabase-community/postgrest-py) [![GitHub contributors](https://img.shields.io/github/contributors/supabase-community/postgrest-py)](https://github.com/supabase-community/postgrest-py/graphs/contributors) PostgREST client for Python. This library provides an ORM interface to PostgREST. Status: **Unstable** ## INSTALLATION ### Requirements - Python >= 3.7 - PostgreSQL >= 12 - PostgREST >= 7 ### Local PostgREST server If you want to use a local PostgREST server for development, you can use our preconfigured instance via Docker Compose. ```sh docker-compose up ``` Once Docker Compose started, PostgREST is accessible at . ### Instructions #### With Poetry (recommended) ```sh poetry add postgrest ``` #### With Pip ```sh pip install postgrest ``` ## USAGE ### Getting started ```py import asyncio from postgrest import AsyncPostgrestClient async def main(): async with AsyncPostgrestClient("http://localhost:3000") as client: r = await client.from_("countries").select("*").execute() countries = r.data asyncio.run(main()) ``` ### Create ```py await client.from_("countries").insert({ "name": "Việt Nam", "capital": "Hà Nội" }).execute() ``` ### Read ```py r = await client.from_("countries").select("id", "name").execute() countries = r.data ``` ### Update ```py await client.from_("countries").update({"capital": "Hà Nội"}).eq("name", "Việt Nam").execute() ``` ### Delete ```py await client.from_("countries").delete().eq("name", "Việt Nam").execute() ``` ### General filters ### Stored procedures (RPC) ```py await client.rpc("foobar", {"arg1": "value1", "arg2": "value2"}).execute() ``` ## DEVELOPMENT ```sh git clone https://github.com/supabase/postgrest-py.git cd postgrest-py poetry install poetry run pre-commit install ``` ### Testing ```sh poetry run pytest ``` ## CHANGELOG Read more [here](https://github.com/supabase/postgrest-py/blob/master/CHANGELOG.md). ## SPONSORS We are building the features of Firebase using enterprise-grade, open source products. We support existing communities wherever possible, and if the products don’t exist we build them and open source them ourselves. Thanks to these sponsors who are making the OSS ecosystem better for everyone. [![Worklife VC](https://user-images.githubusercontent.com/10214025/90451355-34d71200-e11e-11ea-81f9-1592fd1e9146.png)](https://www.worklife.vc) [![New Sponsor](https://user-images.githubusercontent.com/10214025/90518111-e74bbb00-e198-11ea-8f88-c9e3c1aa4b5b.png)](https://github.com/sponsors/supabase) %package -n python3-postgrest-py Summary: PostgREST client for Python. This library provides an ORM interface to PostgREST. Provides: python-postgrest-py BuildRequires: python3-devel BuildRequires: python3-setuptools BuildRequires: python3-pip %description -n python3-postgrest-py # postgrest-py [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg?label=license)](https://opensource.org/licenses/MIT) [![CI](https://github.com/supabase-community/postgrest-py/actions/workflows/ci.yml/badge.svg)](https://github.com/supabase-community/postgrest-py/actions/workflows/ci.yml) [![Python](https://img.shields.io/pypi/pyversions/postgrest-py)](https://pypi.org/project/postgrest-py) [![Version](https://img.shields.io/pypi/v/postgrest-py?color=%2334D058)](https://pypi.org/project/postgrest-py) [![Codecov](https://codecov.io/gh/supabase-community/postgrest-py/branch/master/graph/badge.svg)](https://codecov.io/gh/supabase-community/postgrest-py) [![Last commit](https://img.shields.io/github/last-commit/supabase-community/postgrest-py.svg?style=flat)](https://github.com/supabase-community/postgrest-py/commits) [![GitHub commit activity](https://img.shields.io/github/commit-activity/m/supabase-community/postgrest-py)](https://github.com/supabase-community/postgrest-py/commits) [![Github Stars](https://img.shields.io/github/stars/supabase-community/postgrest-py?style=flat&logo=github)](https://github.com/supabase-community/postgrest-py/stargazers) [![Github Forks](https://img.shields.io/github/forks/supabase-community/postgrest-py?style=flat&logo=github)](https://github.com/supabase-community/postgrest-py/network/members) [![Github Watchers](https://img.shields.io/github/watchers/supabase-community/postgrest-py?style=flat&logo=github)](https://github.com/supabase-community/postgrest-py) [![GitHub contributors](https://img.shields.io/github/contributors/supabase-community/postgrest-py)](https://github.com/supabase-community/postgrest-py/graphs/contributors) PostgREST client for Python. This library provides an ORM interface to PostgREST. Status: **Unstable** ## INSTALLATION ### Requirements - Python >= 3.7 - PostgreSQL >= 12 - PostgREST >= 7 ### Local PostgREST server If you want to use a local PostgREST server for development, you can use our preconfigured instance via Docker Compose. ```sh docker-compose up ``` Once Docker Compose started, PostgREST is accessible at . ### Instructions #### With Poetry (recommended) ```sh poetry add postgrest ``` #### With Pip ```sh pip install postgrest ``` ## USAGE ### Getting started ```py import asyncio from postgrest import AsyncPostgrestClient async def main(): async with AsyncPostgrestClient("http://localhost:3000") as client: r = await client.from_("countries").select("*").execute() countries = r.data asyncio.run(main()) ``` ### Create ```py await client.from_("countries").insert({ "name": "Việt Nam", "capital": "Hà Nội" }).execute() ``` ### Read ```py r = await client.from_("countries").select("id", "name").execute() countries = r.data ``` ### Update ```py await client.from_("countries").update({"capital": "Hà Nội"}).eq("name", "Việt Nam").execute() ``` ### Delete ```py await client.from_("countries").delete().eq("name", "Việt Nam").execute() ``` ### General filters ### Stored procedures (RPC) ```py await client.rpc("foobar", {"arg1": "value1", "arg2": "value2"}).execute() ``` ## DEVELOPMENT ```sh git clone https://github.com/supabase/postgrest-py.git cd postgrest-py poetry install poetry run pre-commit install ``` ### Testing ```sh poetry run pytest ``` ## CHANGELOG Read more [here](https://github.com/supabase/postgrest-py/blob/master/CHANGELOG.md). ## SPONSORS We are building the features of Firebase using enterprise-grade, open source products. We support existing communities wherever possible, and if the products don’t exist we build them and open source them ourselves. Thanks to these sponsors who are making the OSS ecosystem better for everyone. [![Worklife VC](https://user-images.githubusercontent.com/10214025/90451355-34d71200-e11e-11ea-81f9-1592fd1e9146.png)](https://www.worklife.vc) [![New Sponsor](https://user-images.githubusercontent.com/10214025/90518111-e74bbb00-e198-11ea-8f88-c9e3c1aa4b5b.png)](https://github.com/sponsors/supabase) %package help Summary: Development documents and examples for postgrest-py Provides: python3-postgrest-py-doc %description help # postgrest-py [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg?label=license)](https://opensource.org/licenses/MIT) [![CI](https://github.com/supabase-community/postgrest-py/actions/workflows/ci.yml/badge.svg)](https://github.com/supabase-community/postgrest-py/actions/workflows/ci.yml) [![Python](https://img.shields.io/pypi/pyversions/postgrest-py)](https://pypi.org/project/postgrest-py) [![Version](https://img.shields.io/pypi/v/postgrest-py?color=%2334D058)](https://pypi.org/project/postgrest-py) [![Codecov](https://codecov.io/gh/supabase-community/postgrest-py/branch/master/graph/badge.svg)](https://codecov.io/gh/supabase-community/postgrest-py) [![Last commit](https://img.shields.io/github/last-commit/supabase-community/postgrest-py.svg?style=flat)](https://github.com/supabase-community/postgrest-py/commits) [![GitHub commit activity](https://img.shields.io/github/commit-activity/m/supabase-community/postgrest-py)](https://github.com/supabase-community/postgrest-py/commits) [![Github Stars](https://img.shields.io/github/stars/supabase-community/postgrest-py?style=flat&logo=github)](https://github.com/supabase-community/postgrest-py/stargazers) [![Github Forks](https://img.shields.io/github/forks/supabase-community/postgrest-py?style=flat&logo=github)](https://github.com/supabase-community/postgrest-py/network/members) [![Github Watchers](https://img.shields.io/github/watchers/supabase-community/postgrest-py?style=flat&logo=github)](https://github.com/supabase-community/postgrest-py) [![GitHub contributors](https://img.shields.io/github/contributors/supabase-community/postgrest-py)](https://github.com/supabase-community/postgrest-py/graphs/contributors) PostgREST client for Python. This library provides an ORM interface to PostgREST. Status: **Unstable** ## INSTALLATION ### Requirements - Python >= 3.7 - PostgreSQL >= 12 - PostgREST >= 7 ### Local PostgREST server If you want to use a local PostgREST server for development, you can use our preconfigured instance via Docker Compose. ```sh docker-compose up ``` Once Docker Compose started, PostgREST is accessible at . ### Instructions #### With Poetry (recommended) ```sh poetry add postgrest ``` #### With Pip ```sh pip install postgrest ``` ## USAGE ### Getting started ```py import asyncio from postgrest import AsyncPostgrestClient async def main(): async with AsyncPostgrestClient("http://localhost:3000") as client: r = await client.from_("countries").select("*").execute() countries = r.data asyncio.run(main()) ``` ### Create ```py await client.from_("countries").insert({ "name": "Việt Nam", "capital": "Hà Nội" }).execute() ``` ### Read ```py r = await client.from_("countries").select("id", "name").execute() countries = r.data ``` ### Update ```py await client.from_("countries").update({"capital": "Hà Nội"}).eq("name", "Việt Nam").execute() ``` ### Delete ```py await client.from_("countries").delete().eq("name", "Việt Nam").execute() ``` ### General filters ### Stored procedures (RPC) ```py await client.rpc("foobar", {"arg1": "value1", "arg2": "value2"}).execute() ``` ## DEVELOPMENT ```sh git clone https://github.com/supabase/postgrest-py.git cd postgrest-py poetry install poetry run pre-commit install ``` ### Testing ```sh poetry run pytest ``` ## CHANGELOG Read more [here](https://github.com/supabase/postgrest-py/blob/master/CHANGELOG.md). ## SPONSORS We are building the features of Firebase using enterprise-grade, open source products. We support existing communities wherever possible, and if the products don’t exist we build them and open source them ourselves. Thanks to these sponsors who are making the OSS ecosystem better for everyone. [![Worklife VC](https://user-images.githubusercontent.com/10214025/90451355-34d71200-e11e-11ea-81f9-1592fd1e9146.png)](https://www.worklife.vc) [![New Sponsor](https://user-images.githubusercontent.com/10214025/90518111-e74bbb00-e198-11ea-8f88-c9e3c1aa4b5b.png)](https://github.com/sponsors/supabase) %prep %autosetup -n postgrest-py-0.10.6 %build %py3_build %install %py3_install install -d -m755 %{buildroot}/%{_pkgdocdir} if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi pushd %{buildroot} if [ -d usr/lib ]; then find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst fi if [ -d usr/lib64 ]; then find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst fi if [ -d usr/bin ]; then find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst fi if [ -d usr/sbin ]; then find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst fi touch doclist.lst if [ -d usr/share/man ]; then find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst fi popd mv %{buildroot}/filelist.lst . mv %{buildroot}/doclist.lst . %files -n python3-postgrest-py -f filelist.lst %dir %{python3_sitelib}/* %files help -f doclist.lst %{_docdir}/* %changelog * Tue May 30 2023 Python_Bot - 0.10.6-1 - Package Spec generated