Skip to content

Instantly share code, notes, and snippets.

View Rhyanz46's full-sized avatar
🏠
Working from home

Arian Saputra Rhyanz46

🏠
Working from home
View GitHub Profile
@Rhyanz46
Rhyanz46 / python-sqlalchemy-timezone
Created May 5, 2020 14:50 — forked from tell-k/python-sqlalchemy-timezone
sqlalchemy timzone datetime
#!/usr/bin/env python
#-*- coding:utf8 -*-
from datetime import datetime
from sqlalchemy import create_engine
from sqlalchemy.orm import scoped_session, sessionmaker
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy import Column, Integer, Date
from sqlalchemy.dialects.mysql import TIMESTAMP
from sqlalchemy.types import TypeDecorator