Pydbantic

Latest version: v0.0.47

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

Scan your dependencies

Page 4 of 6

0.0.28

What's Changed
* Added Support for Autoincrement, ForeignKeys, Relationship, sqlalchemy type within for ModelField, PrimaryKey, Default (39), Unique fieldsby codemation in https://github.com/codemation/pydbantic/pull/39
* New Relationship mapping options
* Sqlalchemy type definitions

Examples
python
from uuid import uuid4
from datetime import datetime
from typing import List, Optional, Union
import sqlalchemy
from pydbantic import DataBaseModel, PrimaryKey, Unique, Relationship, ForeignKey

def uuid_str():
return str(uuid4())

class Department(DataBaseModel):
department_id: str = PrimaryKey()
name: str
company: str
is_sensitive: bool = False
positions: List[Optional['Positions']] = []

class Positions(DataBaseModel):
position_id: str = PrimaryKey()
name: str
department: Department = None
employees: List[Optional['Employee']] = []

class EmployeeInfo(DataBaseModel):
__tablename__ = "employee_info"
ssn: Optional[int] = PrimaryKey(sqlalchemy_type=sqlalchemy.Integer, autoincrement=True)
bio_id: str = Unique(sqlalchemy.String(50), default=uuid_str)
first_name: str
last_name: str
address: str
address2: Optional[str]
city: Optional[str]
zip: Optional[int]
new: Optional[str]
employee: Optional['Employee'] = Relationship("Employee", 'bio_id', 'employee_id')

class Employee(DataBaseModel):
__tablename__ = "employee"
employee_id: str = PrimaryKey()
emp_ssn: Optional[int] = ForeignKey(EmployeeInfo, 'ssn')
employee_info: Optional[EmployeeInfo] = Relationship("EmployeeInfo", 'employee_id', 'bio_id')
position: List[Optional[Positions]] = []
salary: float
is_employed: bool
date_employed: Optional[str]

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


class Coordinate(DataBaseModel):
id: str = PrimaryKey(default=get_uuid4)
lat_long: tuple
journeys: List[Optional["Journey"]] = []

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



**Full Changelog**: https://github.com/codemation/pydbantic/compare/0.0.27...0.0.28

0.0.27

**Full Changelog**: https://github.com/codemation/pydbantic/compare/0.0.26...0.0.27

0.0.26

What's Changed
* Alembic migrations and mod many methods by codemation in https://github.com/codemation/pydbantic/pull/37


**Full Changelog**: https://github.com/codemation/pydbantic/compare/0.0.25...0.0.26

0.0.25

What's Changed
* sync pydnatic version in setup.py with requirements.txt (1.9.1) by eudoxos in https://github.com/codemation/pydbantic/pull/36

New Contributors
* eudoxos made their first contribution in https://github.com/codemation/pydbantic/pull/36

**Full Changelog**: https://github.com/codemation/pydbantic/compare/0.0.24...0.0.25

0.0.24

What's Changed
* updated pydantic / databases pinned versions by codemation in https://github.com/codemation/pydbantic/pull/35


**Full Changelog**: https://github.com/codemation/pydbantic/compare/0.0.23...0.0.24

0.0.23

What's Changed
* Add unique model constraint by codemation in https://github.com/codemation/pydbantic/pull/34


**Full Changelog**: https://github.com/codemation/pydbantic/compare/0.0.22...0.0.23

Page 4 of 6

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.