Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 85a4ad6

Browse files
committedNov 17, 2023
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

Lines changed: 1 addition & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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 <itfidele@gmail.com>"]
66
license = "MIT"

0 commit comments

Comments
 (0)
Please sign in to comment.