Skip to main content

The python framework, providing fast and robust way to build client-side API wrappers.

Project description

sensei

Logo Banner


Python versions PyPi Version Coverage

The python framework, providing fast and robust way to build client-side API wrappers.

Source code is made available under the MIT License.

Quick Overview

Here is example of OOP style.

from typing import Annotated, Any, Self
from sensei import Router, Query, Path, APIModel, Header, Args, pascal_case, format_str, RateLimit

router = Router('https://reqres.in/api', rate_limit=RateLimit(5, 1))


@router.model()
class BaseModel(APIModel):
    def __finalize_json__(self, json: dict[str, Any]) -> dict[str, Any]:
        return json['data']

    def __prepare_args__(self, args: Args) -> Args:
        args.headers['X-Token'] = 'secret_token'
        return args

    def __header_case__(self, s: str) -> str:
        return pascal_case(s)


class User(BaseModel):
    email: str
    id: int
    first_name: str
    last_name: str
    avatar: str

    @classmethod
    @router.get('/users')
    def query(
            cls,
            page: Annotated[int, Query(1)],
            per_page: Annotated[int, Query(3, le=7)],
            bearer_token: Annotated[str, Header('secret', le=10)],
    ) -> list[Self]:
        ...

    @classmethod
    @router.get('/users/{id_}')
    def get(cls, id_: Annotated[int, Path(alias='id')]) -> Self:
        ...

    @router.delete('/users/{id_}')
    def delete(self) -> Self:
        ...

    @delete.prepare
    def _delete_in(self, args: Args) -> Args:
        url = args.url
        url = format_str(url, {'id_': self.id})
        args.url = url
        return args


users = User.query(per_page=7)
user_id = users[0].id
user = User.get(user_id)
print(user == users[0])

Example of functional style.

from typing import Annotated
from sensei import Router, Path, APIModel

router = Router('https://pokeapi.co/api/v2/')


class Pokemon(APIModel):
    name: str
    id: int
    height: int
    weight: int
    types: list


@router.get('/pokemon/{pokemon_name}')
def get_pokemon(
        pokemon_name: Annotated[str, Path()],
) -> Pokemon:
    ...


pokemon = get_pokemon(pokemon_name="pikachu")
print(pokemon)

Installing sensei

To install sensei from PyPi, you can use that:

pip install sensei

To install sensei from GitHub, use that:

pip install git+https://github.com/CrocoFactory/sensei.git

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sensei-0.1.0rc2.tar.gz (23.9 kB view details)

Uploaded Source

Built Distribution

sensei-0.1.0rc2-py3-none-any.whl (31.1 kB view details)

Uploaded Python 3

File details

Details for the file sensei-0.1.0rc2.tar.gz.

File metadata

  • Download URL: sensei-0.1.0rc2.tar.gz
  • Upload date:
  • Size: 23.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for sensei-0.1.0rc2.tar.gz
Algorithm Hash digest
SHA256 dad84ea2d7622e487ca78479f3d336d106db3159f56ddf1f8c714d77499fb627
MD5 d56ef8aeee13ec8a0ecb7dc0ac4f6dd2
BLAKE2b-256 7234fe69219fd278cd214cfe6ea8b39e38696666cd0810438648e4693319b0ec

See more details on using hashes here.

File details

Details for the file sensei-0.1.0rc2-py3-none-any.whl.

File metadata

  • Download URL: sensei-0.1.0rc2-py3-none-any.whl
  • Upload date:
  • Size: 31.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for sensei-0.1.0rc2-py3-none-any.whl
Algorithm Hash digest
SHA256 7ca1d17e4128f83798ebd353d7ac0eb1cbc88bf7d3f31612737559cf1a27ecca
MD5 fa957655a995095e902a91ce7d4d6de9
BLAKE2b-256 8eef1aa281c55d71b35e12ff672db4fbe5c75aabba3b06125280d2e186ae8e9b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page