Pydbantic

Latest version: v0.0.47

Safety actively analyzes 723929 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 6 of 6

0.0.16

What's Changed
* Object Filtering - order_by by codemation in https://github.com/codemation/pydbantic/pull/20


**Full Changelog**: https://github.com/codemation/pydbantic/compare/0.0.15...0.0.16

0.0.15

What's Changed
* Filter operators and pagination by codemation in https://github.com/codemation/pydbantic/pull/17


**Full Changelog**: https://github.com/codemation/pydbantic/compare/0.0.14...0.0.15

0.0.14

What's Changed
* Fix/Enhancement - Improved db connection context manager by codemation in https://github.com/codemation/pydbantic/pull/15


**Full Changelog**: https://github.com/codemation/pydbantic/compare/0.0.13...0.0.14

0.0.13

Whats changed?

Multi App same DB support & Improvement Migrations - replaced complete `TableMeta` lookups during `compare_tables_and_migrate` with tables in self.tables, thus allowing the same `database` to be used accross multiple applications that do not share model definitions.

0.0.12

- Fixed SqlAlchemy Column Type selection preventing foreign model usage with arrays in MySQL

0.0.11

- Improved support for foreign model updates, .save() will invoke creation of foreign objects if not existing,
- Added support for Arrays of Foreign References where a single field in a DataBaseModel may contain a list of other DataBaseModel objects

python
from uuid import uuid4
from datetime import datetime
from typing import List, Optional
from pydbantic import DataBaseModel, PrimaryKey


def time_now():
return datetime.now().isoformat()
def get_uuid4():
return str(uuid4())

class Coordinate(DataBaseModel):
time: str = PrimaryKey(default=time_now)
latitude: float
longitude: float

class Journey(DataBaseModel):
trip_id: str = PrimaryKey(default=get_uuid4)
waypoints: List[Optional[Coordinate]]

Page 6 of 6

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.