Skip to main content

additional column types for SQLAlchemy

Project description

This repo contains a custom column types for SQLAlchemy which I use in different projects.

The code should be compatible with SQLAlchemy 1.2.3 - 2.0 and Python 3.6 - 3.13 as well as pypy 3.9.

pip install ColumnAlchemy

UTCDateTime

UTCDateTime stores a Python tz-aware datetime.datetime value as UTC datetime in the database (without explicit timezone information). I use this to introduce tz-aware timezones in systems which expect "naive" datetimes in the database.

from schwarz.column_alchemy import UTCDateTime

class Foo(Base)
    __tablename__ = 'foo'
    id = Column(Integer, autoincrement=True, primary_key=True)
    timestamp = Column(UTCDateTime)

ShiftedDecimal

ShiftedDecimal stores a Decimal as integer in the database (with limited precision). This is especially useful to store decimal values even in sqlite which requires special treatment to store decimals.

from decimal import Decimal
from schwarz.column_alchemy import ShiftedDecimal

class Foo(Base)
    __tablename__ = 'foo'
    id = Column(Integer, autoincrement=True, primary_key=True)
    percentage = Column(ShiftedDecimal(4))

foo = Foo(percentage=Decimal('1.2324'))
# stores percentage as 12324 in the database but returns the
# correct Decimal value after loading.

ValuesEnum

TODO

IntValuesEnum

TODO

YearMonthColumn

YearMonth is similar to datetime.date but without a day attribute. It can be used to represent a calendar month and provides some convenience methods like first_date_of_month() and last_date_of_month(). A YearMonthColumn stores a YearMonth instance as "YYYY-MM" in the database.

from schwarz.column_alchemy import YearMonth, YearMonthColumn

class Foo(Base)
    __tablename__ = 'foo'
    id = Column(Integer, autoincrement=True, primary_key=True)
    month = Column(YearMonthColumn())

foo = Foo(month=YearMonth(2020, 7))
# stores "month" as "2020-07" in the database but returns a
# YearMonth instance after loading.

YearMonthIntColumn

Very similar to YearMonthColumn but stores YearMonth(2020, 7) as 202007 (integer).

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ColumnAlchemy-0.10.1-py3-none-any.whl (27.7 kB view details)

Uploaded Python 3

File details

Details for the file ColumnAlchemy-0.10.1-py3-none-any.whl.

File metadata

  • Download URL: ColumnAlchemy-0.10.1-py3-none-any.whl
  • Upload date:
  • Size: 27.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.13.1

File hashes

Hashes for ColumnAlchemy-0.10.1-py3-none-any.whl
Algorithm Hash digest
SHA256 68e46e215d92a401470a203b0a894bec7214a47def2ab1dddc1ed8f83f3929f9
MD5 ac55f67179b8d98801f0a7c8298b9cfa
BLAKE2b-256 8a1e630cf9dc2b20b3e2403acd3fc1e207daa9c9f8662345c2946be35ba19c31

See more details on using hashes here.

Supported by

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