I hereby claim:
- I am inconshreveable on github.
- I am inconshreveable (https://keybase.io/inconshreveable) on keybase.
- I have a public key ASDwe8KdGCHgHjTPWL2BVXtIHWHDJjlUqJrqx5IXlYZXnwo
To claim this, I am signing this object:
| package main | |
| import ( | |
| "io" | |
| "net" | |
| "os" | |
| "time" | |
| ) | |
| func main() { |
I hereby claim:
To claim this, I am signing this object:
| import sqlalchemy | |
| from sqlalchemy import create_engine, Column, Integer | |
| from sqlalchemy.orm import sessionmaker | |
| from sqlalchemy.ext.declarative import declarative_base | |
| def setup(): | |
| # set up a simple in memory sqlite db with two table | |
| engine = create_engine('sqlite:///:memory:') | |
| Base = declarative_base(bind=engine) | |
| class A(Base): |