Skip to content

Commit 85a4ad6

Browse files
committed
Update SQLiteHelper version to 0.4.0 and fix
import statement
1 parent 7d1e0a6 commit 85a4ad6

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33

44
Python SQLiteHelper is a python package that help you to create sqlite databases,tables and interacting with sqlite database without have to worry about writing any SQL query.
55

6-
76
```python
87
# import the module from helper folder
9-
from helper.sqlitehelper import SQLiteHelper
8+
from pysqlitehelper.helpers import SQLiteHelper
109

1110
# creating the database called todo_app using our SQLiteHeper module
1211
db=SQLiteHelper('todo_app')

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pysqlitehelper"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
description = "Python SQLiteHelper is a python package that help you to create sqlite databases,tables and interacting with sqlite database without have to worry about writing any SQL query."
55
authors = ["Fidele K <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)