Guest User

Untitled

a guest
Dec 17th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. import pymysql.cursors
  2.  
  3. myServer = 'localhost'
  4. myDatabase = 'mainDB'
  5. myUser = 'root'
  6. myPassword = 'root'
  7.  
  8. link = pymysql.connect( host = myServer,
  9. db = myDatabase,
  10. user = myUser,
  11. password = myPassword)
Add Comment
Please, Sign In to add comment