A python package for connecting with database.
Project description
requirements_dev.txt for the testing
It makes it easier to install and manage dependencies for development and testing, separate from the dependencies required for production.
difference between requirements_dev.txt and requirements.txt
requirements.txt is used to specify the dependencies required to run the production code of a Python project, while requirements_dev.txt is used to specify the dependencies required for development and testing purposes.
tox.ini
We use if for the testing in the python package testing against different version of the python
how tox works tox enviornment creation
- Install dependencies and packages
- Run commands
- Its a combination of the (virtualenvwrapper and makefile)
- It creates a .tox
pyproject.toml
it is being used for configuration the python project it is a alternative of the setup.cfg file. its contains configuration related to the build system such as the build tool used package name version author license and dependencies
setup.cfg
In summary, setup.cfg is used by setup tools to configure the packaging and installation of a Python project
Testing python application
types of testing
- Automated testing
- Manual testing
Mode of testing
- Unit testing
- Integration tests
Testing frameworks
- pytest
- unittest
- robotframework
- selenium
- behave
- doctest
check with the code style formatting and syntax(coding standard)
- pylint
- flake8(it is best because it containt 3 library pylint pycodestyle mccabe)
- pycodestyle
How to use the package :-
Installation :-
pip install mysql-crud-automation
Usage :-
from mysql_connect import mysql_crud
mysql_connector = mysql_crud.mysql_operation(
host="hostname",
user="username",
password="password"
)
CRUD Operation on MySQL :-
1. create connection
mysql_connector.create_connection()
2. create database
mysql_connector.create_database(database_name ="<database_name>")
3. create table
create_table_sql = """
CREATE TABLE <table_name> (
name VARCHAR(100) NOT NULL,
age VARCHAR(100) NOT NULL
);"""
mysql_connector.create_table(create_table_sql,database_name)
4. insert record
mysql_connector.insert_single_record(
record=record:dict,
table_name="<table_name>",
database_name='<database_name>'
)
5. insert multiple record
mysql_connector.insert_multiple_records(
records= [record:dict],
table_name= "<table_name>",
database_name= '<database_name>'
)
6. bulk insert record
- in this datafile is in .csv or .xlsx file
mysql_connector.bulk_insert(
datafile="<file_path>",
table_name="<table_name>",
database_name='<database_name>',
unique_field=<'column_name'>
)
7. find query
mysql_connector.find(
query:dict = {},
table_name="<table_name>",
database_name='<database_name>'
)
8. find all query in the table
mysql_connector.find(
table_name="<table_name>",
database_name='<database_name>'
)
8. update query
mysql_connector.update(
query: dict={},
new_values: dict={},
table_name="<table_name>",
database_name='<database_name>'
)
9. delete query
mysql_connector.delete(
query: dict={},
table_name="<table_name>",
database_name='<database_name>'
)
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
Built Distribution
File details
Details for the file mysql_crud_automation-0.0.11.tar.gz
.
File metadata
- Download URL: mysql_crud_automation-0.0.11.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ddef222d95800f908f326e101a1fd4fce5b4b0e9e0c4b9e2f44b1a92a128e6a |
|
MD5 | 529ec749ea803350a5d48ec9553f1214 |
|
BLAKE2b-256 | 785c6698400c6a436fd308636e4c65aed072c4259c7a9d80a170269f43d5063c |
File details
Details for the file mysql_crud_automation-0.0.11-py3-none-any.whl
.
File metadata
- Download URL: mysql_crud_automation-0.0.11-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a604aff5f67fdbec3fc53d8428c5294b3ea2c32eae7e284d2ca601af1aa0c56 |
|
MD5 | f9da4a1a66546b89286a3cc4e643aa3c |
|
BLAKE2b-256 | 93dc2adbe94455efcf31bc714106a75f75c50da8ca0c8ab1db3c0f8d94a4d13a |