Skip to main content

A library to interact with MySQL

Project description

Shiba-Py-Mysql

License

Shiba-Py-Mysql is a lightweight Python library that provides a convenient interface for interacting with MySQL databases using the pymysql library. It simplifies common database administration tasks such as creating databases, selecting databases, creating tables, and performing basic CRUD operations.

Features

  • Easy database creation and selection.
  • Table creation with support for different column types.
  • Retrieving data from tables with support for JSON fields.

Installation

You can install Shiba-Py-Mysql using pip:

pip install shiba-mysql
import shiba as s

# Create a connection to the MySQL database
connection = s.ShibaConnection(host='localhost', port=3306, user='myuser', password='mypassword')

# Create a new database
connection.create_database('my_database')

# Select the database
connection.use_database('my_database')

# Create a table
table_builder = connection.create_table('users')
table_builder.increments('id')
table_builder.string('name', 20)
table_builder.integer('age')
table_builder.text('languages')
table_builder.text('settings')
table_builder.build()
# Insert data into the table
data_single = {
    "name": "John",
    "age": 30,
    "languages": json.dumps(["Python", "JavaScript", "Java"]),
    "settings": json.dumps({"theme": "dark", "notifications": True})
}

data_list = [
    {
        "name": "Alice",
        "age": 25,
        "languages": json.dumps(["Python", "C++"]),
        "settings": json.dumps({"theme": "light", "notifications": False})
    },
    {
        "name": "Bob",
        "age": 35,
        "languages": json.dumps(["JavaScript", "TypeScript"]),
        "settings": json.dumps({"theme": "dark", "notifications": True})
    }
]

cx.table('users').insert(data_single)
cx.table('users').insert(data_list)

x = cx.table("users").get()
for e in x:
    for k, v in e.items():
        if k == "languages":
            languages = json.loads(v)
            languages_str = ", ".join(languages)
            print(f"Languages: {languages_str}")
        elif k == "settings":
            settings_str = json.loads(v)
            print(f"Settings\n  Theme: {settings_str['theme']}\n  Notifications: {settings_str['notifications']}")
        else:
            print(f"{k}: {str(v)}")

LICENSE

This project is under the MIT License.

Change log

========== 1.0.0 (14/07/2023)

  • FIRST RELEASE -- CREATE MODEL

========= 1.1.0 (15/07/2023)

  • SECODN RELEASE -- ADD METHOD TABLE BUILDER: BINARY -- ADD METHOD TABLE BUILDER: BOOLEAN -- ADD METHOD TABLE BUILDER: CHAR -- ADD METHOD TABLE BUILDER: TIME -- ADD METHOD TABLE BUILDER: DATE -- ADD METHOD TABLE BUILDER: DATETIME -- ADD METHOD TABLE BUILDER: ENUM

-- ADD METHOD TABLE BUILDER: FOREIGN KEY -- BUG FIX TABLE BUILDER: PRIMARY KEY

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

shiba_mysql-1.1.1.tar.gz (7.3 kB view details)

Uploaded Source

Built Distribution

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

shiba_mysql-1.1.1-py3-none-any.whl (13.9 kB view details)

Uploaded Python 3

File details

Details for the file shiba_mysql-1.1.1.tar.gz.

File metadata

  • Download URL: shiba_mysql-1.1.1.tar.gz
  • Upload date:
  • Size: 7.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.9

File hashes

Hashes for shiba_mysql-1.1.1.tar.gz
Algorithm Hash digest
SHA256 c4353ee3fe7dcc42871906e71a711ac3b74f0c966481a9a91ba889f2f2f26f6c
MD5 7f3a9033f130617e7d19aaa3a9004908
BLAKE2b-256 e0eb04dcccfdd9734d5e39327f68dff71785e49c325ba269c9f4aa6109aaf5aa

See more details on using hashes here.

File details

Details for the file shiba_mysql-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: shiba_mysql-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 13.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.9

File hashes

Hashes for shiba_mysql-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 9d38562330d341e96518a1b6e34116d4d4f181b3184012df3f02db5ee3a59dfc
MD5 b6a7b3b633ab8fca206a6cb78fd05579
BLAKE2b-256 4987f92f061dca8edac4c8555379cff9af90f331cd43b66d174109f0c235910b

See more details on using hashes here.

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