Skip to main content

Connect python with Mysql

Project description

mysqlconnect

Connect python with Mysql

Installation

Run below command to install package

pip install mysqlconnect

prerequisite

mysql-connector-python must be installed To install it, run below command

pip install mysql-connector-python

Connect with Mysql using python

import

from connectdb import mysql_db

connect

ob=mysql_db.sql("host","user","password")

Check database List

Function db_list is used to show databases list ob.db_list

Create Database

Function create_ db is used to create a new database

    Parameters
    ----------
    db_name: database name

ob.create_db(Data_base_name)

Drop Database

Function drop_ db is used to drop a database

    Parameters
    ----------
    db_name: database name

ob.drop_db(Data_base_name)

Create table

Function create_ table is used to create a new table

    Parameters
    ----------
    table_name: table name
    columns: columns names with data type and other discription in SQL format
    example-columns="CI_n INT(2),CI_m INT(2),IAC_u VARCHAR(10),IAC_v VARCHAR(10),IAC_w VARCHAR(10),CAC_u VARCHAR(10),CAC_v VARCHAR(10),CAC_w VARCHAR(10)"

ob.create_table(table_name,columns)

Insert into Table

Function insert is used to insert value in table

    Parameters
    ----------
    table_name: table name
    data: values to be inserted in order

ob.insert(table_name,data)

columns

Function columns is used to print columns names

    Parameters
    ----------
    t_name: table name

ob.columns(t_name)

Select DataBase

Function select_db is used to select a database

    Parameters
    ----------
    db_name: database name

ob.select_db(db_name)

Query

Function query is used to run a SQL query

    Parameters
    ----------
    query: SQL query

ob.query(query)

License

© 2022 Vanshika Panwar

This repository is licensed under the MIT license. See LICENSE for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mysqlconnect-1.0.0.tar.gz (3.8 kB view details)

Uploaded Source

File details

Details for the file mysqlconnect-1.0.0.tar.gz.

File metadata

  • Download URL: mysqlconnect-1.0.0.tar.gz
  • Upload date:
  • Size: 3.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.5

File hashes

Hashes for mysqlconnect-1.0.0.tar.gz
Algorithm Hash digest
SHA256 9ff9284ea14ac37ec1b9932e90e8cdfbab9c814e0094a283ffc614678eaf3c72
MD5 4f36bce24a53620ddeef294594ae09cb
BLAKE2b-256 1e866166fd6b1ba723864f8dea3782abbf68173914da648a4b70a43bc922ebb4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page