Guest User

Untitled

a guest
Jun 18th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. >>> from globaldb import mc,mcdb
  2. mcdb>>> mcdb.set('a', 1)
  3. True
  4. >>> mcdb.get('a')
  5. 1
  6. >>> mc.set('a', [1,2,3]
  7. ... )
  8. True
  9. >>> mc.get('a')
  10. [1, 2, 3]
  11. >>>
Add Comment
Please, Sign In to add comment