orm-database 0.3.1__tar.gz → 0.3.3__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.1
2
2
  Name: orm_database
3
- Version: 0.3.1
3
+ Version: 0.3.3
4
4
  Summary: This module is written to launch your programs with any database you want in the shortest time
5
5
  Home-page: https://github.com/sisrsis/orm-database
6
6
  Author: SISRSIS
@@ -15,12 +15,9 @@ class PostgreSQL:
15
15
 
16
16
  async def teble_create_BaseModel(self,table:str , class_BaseModel):
17
17
  query = f"CREATE TABLE {table} ("
18
- print(class_BaseModel.model_json_schema())
19
18
  result=class_BaseModel.model_json_schema()
20
- print(result['required'])
21
19
  for a in result['required']:
22
20
  data = result['properties'][a]
23
- print(data)
24
21
  try :
25
22
  maxLength = data['maxLength']
26
23
  match data['type']:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: orm-database
3
- Version: 0.3.1
3
+ Version: 0.3.3
4
4
  Summary: This module is written to launch your programs with any database you want in the shortest time
5
5
  Home-page: https://github.com/sisrsis/orm-database
6
6
  Author: SISRSIS
@@ -3,7 +3,7 @@ from setuptools import setup ,find_packages
3
3
 
4
4
  setup(
5
5
  name='orm_database',
6
- version='0.3.1',
6
+ version='0.3.3',
7
7
  description='This module is written to launch your programs with any database you want in the shortest time ',
8
8
  license="MIT",
9
9
  author='SISRSIS',
File without changes
File without changes