This file contains 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
import sql | |
import logging as log | |
log.basicConfig(level=log.DEBUG) | |
sql.db = sql.Db('dbname=postgres user=postgres password=1234 host=127.0.0.1 port=5432') | |
class Bet: | |
pass | |
class Table(sql.Table): |