ucampostgresvro 0.1.0__tar.gz → 0.1.1__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {ucampostgresvro-0.1.0 → ucampostgresvro-0.1.1}/PKG-INFO +3 -3
- {ucampostgresvro-0.1.0 → ucampostgresvro-0.1.1}/README.md +2 -2
- {ucampostgresvro-0.1.0 → ucampostgresvro-0.1.1}/pyproject.toml +1 -1
- ucampostgresvro-0.1.1/ucampostgresvro/__init__.py +1 -0
- ucampostgresvro-0.1.0/ucampostgresvro/__init__.py +0 -1
- {ucampostgresvro-0.1.0 → ucampostgresvro-0.1.1}/LICENSE +0 -0
- {ucampostgresvro-0.1.0 → ucampostgresvro-0.1.1}/ucampostgresvro/DBA.py +0 -0
- {ucampostgresvro-0.1.0 → ucampostgresvro-0.1.1}/ucampostgresvro/__main__.py +0 -0
- {ucampostgresvro-0.1.0 → ucampostgresvro-0.1.1}/ucampostgresvro/ca.crt +0 -0
- {ucampostgresvro-0.1.0 → ucampostgresvro-0.1.1}/ucampostgresvro/exceptions.py +0 -0
- {ucampostgresvro-0.1.0 → ucampostgresvro-0.1.1}/ucampostgresvro/tests/__init__.py +0 -0
- {ucampostgresvro-0.1.0 → ucampostgresvro-0.1.1}/ucampostgresvro/tests/conftest.py +0 -0
- {ucampostgresvro-0.1.0 → ucampostgresvro-0.1.1}/ucampostgresvro/tests/dbconnect.py +0 -0
- {ucampostgresvro-0.1.0 → ucampostgresvro-0.1.1}/ucampostgresvro/tests/test_DB.py +0 -0
- {ucampostgresvro-0.1.0 → ucampostgresvro-0.1.1}/ucampostgresvro/tests/utils.py +0 -0
- {ucampostgresvro-0.1.0 → ucampostgresvro-0.1.1}/ucampostgresvro/tools.py +0 -0
- {ucampostgresvro-0.1.0 → ucampostgresvro-0.1.1}/ucampostgresvro/utils.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: ucampostgresvro
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.1
|
4
4
|
Summary:
|
5
5
|
Author: Ishan Mahajan
|
6
6
|
Author-email: mahanishanmahajan@gmail.com
|
@@ -39,7 +39,7 @@ Description-Content-Type: text/markdown
|
|
39
39
|
- To setup database
|
40
40
|
```
|
41
41
|
from ucampostgresvro import pre_setupconfig
|
42
|
-
from ucampostgresvro.
|
42
|
+
from ucampostgresvro.DBA import DB
|
43
43
|
db_params = {
|
44
44
|
"dbname": "vrapricing",
|
45
45
|
"user": "postgres",
|
@@ -54,7 +54,7 @@ pre_setupconfig(db_params)
|
|
54
54
|
```
|
55
55
|
- To perform CRUD operation
|
56
56
|
```
|
57
|
-
from ucampostgresvro.
|
57
|
+
from ucampostgresvro.DBA import DB
|
58
58
|
db_params = {
|
59
59
|
"dbname": "vrapricing",
|
60
60
|
"user": "postgres",
|
@@ -24,7 +24,7 @@
|
|
24
24
|
- To setup database
|
25
25
|
```
|
26
26
|
from ucampostgresvro import pre_setupconfig
|
27
|
-
from ucampostgresvro.
|
27
|
+
from ucampostgresvro.DBA import DB
|
28
28
|
db_params = {
|
29
29
|
"dbname": "vrapricing",
|
30
30
|
"user": "postgres",
|
@@ -39,7 +39,7 @@ pre_setupconfig(db_params)
|
|
39
39
|
```
|
40
40
|
- To perform CRUD operation
|
41
41
|
```
|
42
|
-
from ucampostgresvro.
|
42
|
+
from ucampostgresvro.DBA import DB
|
43
43
|
db_params = {
|
44
44
|
"dbname": "vrapricing",
|
45
45
|
"user": "postgres",
|
@@ -0,0 +1 @@
|
|
1
|
+
VERSION = "0.1.1"
|
@@ -1 +0,0 @@
|
|
1
|
-
VERSION = "0.1.0"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|