8 lines
148 B
Python
8 lines
148 B
Python
#!/usr/bin/env python
|
|
#-*- coding:utf-8 -*-
|
|
|
|
# database.py
|
|
import torndb
|
|
|
|
db_session = torndb.Connection("localhost", "test", user="", password="")
|