Skip to content

Commit 3d9690c

Browse files
authored
Update README.md
1 parent b72d154 commit 3d9690c

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

README.md

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
## Introduction - QuickSQLConnector
22
#### QuickSQLConnector directly establishes connection between python and mysqlserver. And gives you simple interface to execute mysql commands easily.
3+
## Installation
4+
> USING PIP
5+
6+
``` pip install quicksqlconnector ```
7+
38
## How to use?
49

510
### Use 'quicksqlconnector' keyword to import
@@ -8,13 +13,17 @@
813

914

1015
### Creating instance of module
16+
1117
```DB = quicksqlconnector('host', port, 'username', 'password', 'database-name')```
1218

13-
1419

1520
### quicksqlconnector only have one method which is 'query'
1621

17-
> pass your 'mysql commnad' as a string in query method to execute query.
22+
23+
24+
> pass your 'mysql commnad' as a 'string' in 'query' method to execute query.
25+
26+
1827

1928

2029
DB.query('update people set id=90 where id=1')
@@ -23,6 +32,7 @@
2332
DB.query('insert into people value(26,4,6)')
2433
DB.query('select * from people')
2534

26-
## Bugs & Feedback
27-
#### Github - [Visit Here](https://github.com/Anas-Dew/QuickSQL)
35+
## Useful Links
36+
37+
#### PyPi - [Visit Here](https://pypi.org/project/quicksqlconnector/)
2838

0 commit comments

Comments
 (0)