orm-database 0.3.9__tar.gz → 0.3.10__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {orm_database-0.3.9 → orm_database-0.3.10}/PKG-INFO +1 -3
- {orm_database-0.3.9 → orm_database-0.3.10}/README.md +0 -2
- {orm_database-0.3.9 → orm_database-0.3.10}/orm_database.egg-info/PKG-INFO +1 -3
- {orm_database-0.3.9 → orm_database-0.3.10}/setup.py +1 -1
- {orm_database-0.3.9 → orm_database-0.3.10}/LICENSE +0 -0
- {orm_database-0.3.9 → orm_database-0.3.10}/orm_database/__init__.py +0 -0
- {orm_database-0.3.9 → orm_database-0.3.10}/orm_database/orm_database.py +0 -0
- {orm_database-0.3.9 → orm_database-0.3.10}/orm_database/orm_query.py +0 -0
- {orm_database-0.3.9 → orm_database-0.3.10}/orm_database.egg-info/SOURCES.txt +0 -0
- {orm_database-0.3.9 → orm_database-0.3.10}/orm_database.egg-info/dependency_links.txt +0 -0
- {orm_database-0.3.9 → orm_database-0.3.10}/orm_database.egg-info/requires.txt +0 -0
- {orm_database-0.3.9 → orm_database-0.3.10}/orm_database.egg-info/top_level.txt +0 -0
- {orm_database-0.3.9 → orm_database-0.3.10}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: orm_database
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.10
|
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
|
@@ -38,10 +38,8 @@ async def main():
|
|
38
38
|
db = PostgreSQL(host="127.0.0.1", user="postgres", password="", database="your_database_name")
|
39
39
|
await db.start()
|
40
40
|
|
41
|
-
# ایجاد جدول
|
42
41
|
await db.table_create("users", {"username": "varchar", "password": "varchar", "email": "varchar"})
|
43
42
|
|
44
|
-
# ایجاد مدل پایه
|
45
43
|
await db.table_create_BaseModel(table="users", class_BaseModel=User)
|
46
44
|
|
47
45
|
|
@@ -16,10 +16,8 @@ async def main():
|
|
16
16
|
db = PostgreSQL(host="127.0.0.1", user="postgres", password="", database="your_database_name")
|
17
17
|
await db.start()
|
18
18
|
|
19
|
-
# ایجاد جدول
|
20
19
|
await db.table_create("users", {"username": "varchar", "password": "varchar", "email": "varchar"})
|
21
20
|
|
22
|
-
# ایجاد مدل پایه
|
23
21
|
await db.table_create_BaseModel(table="users", class_BaseModel=User)
|
24
22
|
|
25
23
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: orm_database
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.10
|
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
|
@@ -38,10 +38,8 @@ async def main():
|
|
38
38
|
db = PostgreSQL(host="127.0.0.1", user="postgres", password="", database="your_database_name")
|
39
39
|
await db.start()
|
40
40
|
|
41
|
-
# ایجاد جدول
|
42
41
|
await db.table_create("users", {"username": "varchar", "password": "varchar", "email": "varchar"})
|
43
42
|
|
44
|
-
# ایجاد مدل پایه
|
45
43
|
await db.table_create_BaseModel(table="users", class_BaseModel=User)
|
46
44
|
|
47
45
|
|
@@ -6,7 +6,7 @@ long_description = (this_directory / "README.md").read_text()
|
|
6
6
|
|
7
7
|
setup(
|
8
8
|
name='orm_database',
|
9
|
-
version='0.3.
|
9
|
+
version='0.3.10',
|
10
10
|
description='This module is written to launch your programs with any database you want in the shortest time ',
|
11
11
|
license="MIT",
|
12
12
|
author='SISRSIS',
|
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
|