Subversion Repositories yaws

Rev

Rev 1 | Rev 14 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1 Rev 13
Line 19... Line 19...
19
# along with this program; if not, write to the Free Software
19
# along with this program; if not, write to the Free Software
20
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Line 21... Line 21...
21
 
21
 
Line 22... Line 22...
22
from sqlalchemy import create_engine
22
from sqlalchemy import create_engine
23
 
23
 
Line 24... Line 24...
24
engine = create_engine('sqlite:///ws.sqlite3', echo=True)
24
engine = create_engine('sqlite:///yaws.sqlite3', echo=True)
25
from sqlalchemy.orm import sessionmaker
25
from sqlalchemy.orm import sessionmaker
26
 
26