Skip to main content

Collection of my Python and FastAPI shortcuts, snippets etc.

Project description

creyPY

My collection of Python and FastAPI shortcuts etc.

Installation

pip install creyPY -U

Versioning

This library uses Semantic Versioning.

FastAPI

This library installes fastapi and pydantic, as well as sqlalchemy for you. It also provides a sqlalchemy base class and companion pydantic schemas. Also there are some helper functions for FastAPI in creyPY.fastapi.app like generate_unique_id to generate unique operation IDs for the OpenAPI schema to work with code generators.

Database connection

The creyPY.fastapi.db module provides a Session class that can be used as a context manager to connect to a database. It exposes the SQLALCHEMY_DATABASE_URL variable for you to use. It uses the following environment variables:

  • POSTGRES_HOST: The host of the database
  • POSTGRES_PORT: The port of the database
  • POSTGRES_USER: The user of the database
  • POSTGRES_PASSWORD: The password of the database
  • POSTGRES_DB: The database name

Currently only PostgreSQL is supported. It creates a sync session, it is planned to add async support in the future. You can use this like this:

from creyPY.fastapi.db.session import get_db

async def test_endpoint(
    db: Session = Depends(get_db),
) -> Any:
    pass

Constants

The constants module contains a few enums that I use in my projects. The best way to understand this library is to look at the code (it's not that much). However for simplicity, here is a brief overview:

  • LanguageEnum: Contains all languages according to ISO 639
  • CountryEnum: Contains all countries according to ISO 3166
  • CurrencyEnum: Contains all accepted stripe currencies (Commented out are the Zero-decimal currencies, to avoid custom implementation)
  • StripeStatus: Contains all stripe payment statuses
  • GroupMode: Contains time group modes (e.g. day, week, month, year)

Usage example

from creyPY.const import LanguageEnum

print(LanguageEnum.EN) # Output: LanguageEnum.EN
print(LanguageEnum.EN.value) # Output: English

TODO

  • Add async support for database connection
  • Add version without postgresql dependency

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

creypy-2.1.1rc0.tar.gz (16.3 kB view details)

Uploaded Source

Built Distribution

creyPY-2.1.1rc0-py3-none-any.whl (19.1 kB view details)

Uploaded Python 3

File details

Details for the file creypy-2.1.1rc0.tar.gz.

File metadata

  • Download URL: creypy-2.1.1rc0.tar.gz
  • Upload date:
  • Size: 16.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for creypy-2.1.1rc0.tar.gz
Algorithm Hash digest
SHA256 7a4183b30dc39f32961d192cb56f9bfb1aea7b5ec66c80ff4684e472e370043a
MD5 c0efd0386ed54031eccdc9a9c8e57757
BLAKE2b-256 66a456552ec6233dc219e1c85de6ca41581d4d7cd91432cb207cd0d138467414

See more details on using hashes here.

Provenance

The following attestation bundles were made for creypy-2.1.1rc0.tar.gz:

Publisher: ci.yml on creyD/creyPY

Attestations:

File details

Details for the file creyPY-2.1.1rc0-py3-none-any.whl.

File metadata

  • Download URL: creyPY-2.1.1rc0-py3-none-any.whl
  • Upload date:
  • Size: 19.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for creyPY-2.1.1rc0-py3-none-any.whl
Algorithm Hash digest
SHA256 4b3da070ab6d104e4f23908c980dec7f683cc735048e5e7d661718c14601e15f
MD5 f415b2adaa1551e69ae66b750628d977
BLAKE2b-256 1772a693597d767e6b6bdd91fd0fdaa9446684551078596c68ff995f7d61f646

See more details on using hashes here.

Provenance

The following attestation bundles were made for creyPY-2.1.1rc0-py3-none-any.whl:

Publisher: ci.yml on creyD/creyPY

Attestations:

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