Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
706
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. #!/usr/bin/env python
  2. from alerts.models import *
  3. user = Account()
  4. user.username = 'testuser'
  5. user.password = 'testpass'
  6. user.email = 'robertgenito@gmail.com'
  7. session = Session()
  8. session.add(user)
  9. session.commit()
  10. print 'committed that shiz :D'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement