Guest User

Untitled

a guest
Feb 21st, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. class db(object):
  2. __metaclass__ = Lazy
  3.  
  4. @classmethod
  5. def instantiate(cls):
  6. return db_connection()
  7.  
  8. def func1():
  9. db.execute('SELECT * FROM things')
  10.  
  11. def func2():
  12. db.execute('SELECT * FROM other_things')
Add Comment
Please, Sign In to add comment