Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 524 Bytes

README.md

File metadata and controls

22 lines (20 loc) · 524 Bytes

Code style: black

CSV TO MYSQL

This package help to import csv file and push data to MYSQL

Requirement

Install python-mysql which can be installed from: https://dev.mysql.com/doc/connector-python/en/ For debian and ubuntu user:

sudo apt install python-mysql

Setup mysqldb configuration

inside /db/configure.py

configure = {
  'user': <username>
  'password': <password>
  'database': <database_name>
  }