Created
July 21, 2018 12:12
-
-
Save aodag/ed327394bd2cfabda0c337eacce1ab69 to your computer and use it in GitHub Desktop.
typing, attrs and sqlalchemy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from typing import Optional | |
import attr | |
from sqlalchemy import ( | |
Table, | |
MetaData, | |
Column, | |
Unicode, | |
Integer, | |
create_engine, | |
ForeignKey, | |
) | |
from sqlalchemy.orm import mapper, sessionmaker, relationship | |
meta = MetaData() | |
@attr.s | |
class Job: | |
id: Optional[int] = attr.ib(default=None) | |
name: str = attr.ib(default="") | |
@attr.s | |
class Person: | |
id: Optional[int] = attr.ib(default=None) | |
name: str = attr.ib(default="") | |
job: Job = attr.ib(default=None) | |
person_table = Table( | |
"person", | |
meta, | |
Column("id", Integer, primary_key=True), | |
Column("name", Unicode), | |
Column("job_id", Integer, ForeignKey("job.id")), | |
) | |
job_table = Table( | |
"job", meta, Column("id", Integer, primary_key=True), Column("name", Unicode) | |
) | |
engine = create_engine("sqlite:///") | |
engine.echo = True | |
Session = sessionmaker(bind=engine) | |
mapper(Job, job_table) | |
mapper(Person, person_table, properties={"job": relationship(Job)}) | |
meta.create_all(bind=engine) | |
j = Job(name="engineer") | |
p = Person(name="aodag", job=j) | |
print(p) | |
session = Session() | |
session.add(p) | |
session.flush() | |
print(p) | |
print([attr.asdict(p) for p in session.query(Person).all()]) | |
# -> [{'id': 1, 'name': 'aodag', 'job': {'id': 1, 'name': 'engineer'}}] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment