Skip to content

Instantly share code, notes, and snippets.

@Dwiga
Created April 25, 2017 11:40
Show Gist options
  • Save Dwiga/06c9aa0365651d51e7813d5c248e1c1a to your computer and use it in GitHub Desktop.
Save Dwiga/06c9aa0365651d51e7813d5c248e1c1a to your computer and use it in GitHub Desktop.
python connection
import pymysql
db = pymysql.connect(host="localhost", user="root", passwd="psswrd", db="movie")
kusi = db.cursor()
import sqlite3
con = sqlite3.connect("alpha.db")
exe = con.cursor()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment