Skip to content

DbUnify (Database Management) is a versatile Python library that simplifies database connectivity and management using SQLite.

License

Notifications You must be signed in to change notification settings

Sepehr0Day/DbUnify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DbUnify | Database Management

DbUnify (Database Management) is a versatile Python library that simplifies database connectivity and management using SQLite.

Downloads Downloads

Installation

Install the DbUnify library from PyPI or GitHub.

pip install DbUnify

or

git clone https://github.com/Sepehr0Day/DbUnify.git

Connect To Database

import DbUnify.sync as sync

# Initialize a database manager with the name 'database.db'
db_manager = sync.Manager('database.db')

Create Table

import DbUnify.sync as sync

# Create a table named 'employees' with specified columns
db_manager.create_table('employees', [
    ('id', 'INTEGER PRIMARY KEY'), 
    ('name', 'TEXT'),
    ('age', 'INTEGER'),
    ('department', 'TEXT')
    ])

Documentation DbUnify:

For more information and advanced usage, refer to the DbUnify documentation.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Developer


Your Database Management DbUnify, made easy with DbUnify.
Star this repository if you found it useful ⭐

About

DbUnify (Database Management) is a versatile Python library that simplifies database connectivity and management using SQLite.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages