sqlthon 0.0.1__tar.gz → 0.0.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sqlthon
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: A simple package for SQLite3 operations
5
5
  Author-email: SAUMS <mohamnown@gmail.com>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "sqlthon"
7
- version = "0.0.1"
7
+ version = "0.0.2"
8
8
  description = "A simple package for SQLite3 operations"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -5,7 +5,7 @@ Sqlthon - A Simple Package For SQLite3 Operations.
5
5
  from .core import Connect
6
6
 
7
7
  __all__ = ['Connect']
8
- __version__ = "0.0.1"
8
+ __version__ = "0.0.2"
9
9
  __author__ = "SAUMS"
10
10
  __email__ = "saums1391@gmail.com"
11
11
  __description__ = "Operate With SQLite3 Buy Simple"
@@ -1,7 +1,7 @@
1
1
  import sqlite3 as sq
2
2
 
3
3
 
4
- class DB:
4
+ class Connect:
5
5
  __slots__ = ("_con", "_cur", "_changes")
6
6
  def __init__(self, path: str) -> None:
7
7
  self._con = sq.connect(path)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sqlthon
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: A simple package for SQLite3 operations
5
5
  Author-email: SAUMS <mohamnown@gmail.com>
6
6
  License: MIT
File without changes
File without changes