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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: ucampostgresvro
3
- Version: 0.1.0
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.DB import DB
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.DB import DB
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.DB import DB
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.DB import DB
42
+ from ucampostgresvro.DBA import DB
43
43
  db_params = {
44
44
  "dbname": "vrapricing",
45
45
  "user": "postgres",
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "ucampostgresvro"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  description = ""
5
5
  authors = [
6
6
  {name = "Ishan Mahajan",email = "mahanishanmahajan@gmail.com"}
@@ -0,0 +1 @@
1
+ VERSION = "0.1.1"
@@ -1 +0,0 @@
1
- VERSION = "0.1.0"
File without changes