Skip to content

Commit b72d154

Browse files
committed
update
1 parent 9b94fd7 commit b72d154

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ LICENCE
22
README.txt
33
setup.py
44
dist
5-
src/quicksql.egg-info
5+
src/quicksqlconnector.egg-info
66
build

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
## Introduction - QuickSQL
2-
#### QuickSQL directly establishes connection between python and mysqlserver. And gives you simple interface to execute mysql commands easily.
1+
## Introduction - QuickSQLConnector
2+
#### QuickSQLConnector directly establishes connection between python and mysqlserver. And gives you simple interface to execute mysql commands easily.
33
## How to use?
44

5-
### Use 'quicksql' keyword to import
5+
### Use 'quicksqlconnector' keyword to import
66

7-
``` from quicksql import quicksql```
7+
``` from quicksqlconnector import quicksqlconnector```
88

99

1010
### Creating instance of module
11-
```DB = quicksql('host', port, 'username', 'password', 'database-name')```
11+
```DB = quicksqlconnector('host', port, 'username', 'password', 'database-name')```
1212

1313

1414

15-
### quicksql only have one method which is 'query'
15+
### quicksqlconnector only have one method which is 'query'
1616

1717
> pass your 'mysql commnad' as a string in query method to execute query.
1818

src/quicksql/__init__.py renamed to src/quicksqlconnector/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
def contains_word(search_string, target_word):
66
return f'{target_word}' in f'{search_string}'
77

8-
class quicksql:
8+
class quicksqlconnector:
99

1010
def __init__(self, host:str, port:int, user:str, password:str, database:str):
1111

0 commit comments

Comments
 (0)