A local client for connecting and working with MySQL databases
Project description
MySQL Client
This Python module provides a client for interacting with MySQL databases, allowing users to perform various operations such as executing queries, uploading data from files, fetching data, and more.
Installation
To use the MySQL Client, you need to have Python installed. You can install the module via pip:
pip install shipyard-mysql
Usage
from mysql_client import MySqlClient
# Initialize the MySQL client
client = MySqlClient(username='your_username', pwd='your_password', host='localhost', database='your_database')
# Execute a query
query = "SELECT * FROM your_table"
client.execute_query(query)
# Upload data from a file
client.upload(file='data.csv', table_name='your_table')
# Fetch data
result_df = client.fetch(query)
# Close the connection
client.close()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
shipyard_mysql-0.1.0.tar.gz
(5.3 kB
view hashes)
Built Distribution
Close
Hashes for shipyard_mysql-0.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc98c2ae27728a2baeaa496500c0c8081737d1d62e913bbbf1cb3aeeef29cabe |
|
MD5 | 84f830ee7051f301dffd11397ceb0c9e |
|
BLAKE2b-256 | 01d7873a9e819f640915e32279f3710b0bd80532188be8e638aa57a1c22135eb |