Skip to main content

Python package for simplyfying querying process of mysql

Project description

Flexi MySQL

PyPI version PyPI Downloads Downloads License: MIT

Flexi MySQL is a Python module designed to streamline the process of interacting with MySQL databases. This module offers a variety of functions that significantly reduce the need for manually typing queries, executing them, and handling the results or committing data to the database. Additionally, for scenarios requiring raw SQL queries, the module provides support for creating such queries using MySQL

Examples

Fetching results from the database

import flexi_mysql
myobj = flexi_mysql.connect(host="localhost", user = "root",database="test", password="")
print(myobj.fetch_result(tables = ["t1"], where="id = 2"))

Close connection

import flexi_mysql 
myobj = flexi_mysql.connect(host="localhost", user = "root",database="test", password="")
myobj.close_connection()

Update value in a table

import flexi_mysql
myobj =  flexi_mysql.connect(host="localhost", user="root", database="test")
myobj.update_value(table_name="t1", columns = ["name"], value="Eternity", where = "id = 4")

Fetching results from database using with statement

import flexi_mysql
with flexi_mysql.connect(host="localhost", user="root", database="test") as myobj:
    print(myobj.fetch_result(tables = ["t1"], where="id = 2"))

Documentation

Name Description
create_database Create New Database
drop_database Delete Database
create_table Create a new table
drop_table Deletes the specified table
truncate_table Deletes the contents from the specified table
show_tables Shows all tables in the connected database
show_databases Shows all databases
add_column Adds a new column to the specified table
drop_column Deletes the specified column from the table
modify_column Modify the colummn of a table
drop_primarykey Delete the primary key from the table specfied
drop_foreignkey Delete the foriegn key from the table specified
describe_table Shows the structure of the specified table
fetch_result Used to fetch results from the database
update_value Update the values in the specified table.
insert_value Used to insert a single set of values to the specified table.
insert_values Used to insert multiple sets of values to the specified table.
delete_value Deletes value(s) from the specified table
inner_join Used for INNER JOIN of two tables
left_join Used for LEFT JOIN of two tables
right_join Used for RIGHT JOIN of two tables
cross_join Used for CROSS JOIN of two tables
raw_query Used for fetching results from a table using MySQL Query
raw_update Used for updating values to a table using MySQL Query
raw_delete Used for deleting values from a table using MySQL Query
close_connection Used to close the connection to the database.

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

flexi_mysql-0.5.0.tar.gz (7.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

flexi_mysql-0.5.0-py3-none-any.whl (7.1 kB view details)

Uploaded Python 3

File details

Details for the file flexi_mysql-0.5.0.tar.gz.

File metadata

  • Download URL: flexi_mysql-0.5.0.tar.gz
  • Upload date:
  • Size: 7.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for flexi_mysql-0.5.0.tar.gz
Algorithm Hash digest
SHA256 6962a077bcf5ddc9ea9bd141a57873ba39878f2d99a509905f85ec7003dc45fd
MD5 c9c1cac06981adca31fc3ac17e292eb0
BLAKE2b-256 82f6af121553fac061f53aa6deddd53750743538b39d5ef8faa95b0f6cc33101

See more details on using hashes here.

Provenance

The following attestation bundles were made for flexi_mysql-0.5.0.tar.gz:

Publisher: python-publish.yml on eternity2745/flexi-mysql

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flexi_mysql-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: flexi_mysql-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 7.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for flexi_mysql-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5ede4782b65da22d45d7894475f27022f5736f49c67eb52a18e437d44d332408
MD5 957fac194a9e009d9a9f0d10d2feb48a
BLAKE2b-256 61280995d049af0ba848b595820c9dffbdc94198586e87b525f325c3b87fd53c

See more details on using hashes here.

Provenance

The following attestation bundles were made for flexi_mysql-0.5.0-py3-none-any.whl:

Publisher: python-publish.yml on eternity2745/flexi-mysql

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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