import csv

from utils import sqlConnect


def test():
    connect = sqlConnect.MySQLConnection()
    sql = "SELECT * FROM mBodyMap_projects"
    t = connect.query(sql)
    print(t, connect)


test()
