Skip to content

Instantly share code, notes, and snippets.

View 2tanayk's full-sized avatar
💭
Hustling 🏃‍♂️

Tanay Kamath 2tanayk

💭
Hustling 🏃‍♂️
View GitHub Profile
@2tanayk
2tanayk / python_mysql.py
Created July 14, 2020 11:26 — forked from bradtraversy/python_mysql.py
Python & MySQL crash course for beginners
import mysql.connector
from mysql.connector import errorcode
config = {
'user': 'root',
'password': '',
'host': 'localhost',
'database': 'acme'
}