文件名称:subconscious:Redis支持的(在内存中)适用于asyncio兼容的python3的数据库
文件大小:15KB
文件格式:ZIP
更新时间:2024-05-18 21:35:39
Python
潜意识 仅限python3.6 +的内存数据库 安装 从 : $ pip3 install subconscious 快速开始 假设您在models.py文件中具有以下内容: from enum import Enum from subconscious . model import RedisModel from subconscious . column import Column class User ( RedisModel ): # This can be defined inside this class (easier imports) or elsewhere class Gender ( Enum ): MALE = 'male' FEMALE = 'female' uuid = Column ( type =
【文件预览】:
subconscious-develop
----setup.py(581B)
----.gitignore(82B)
----requirements.txt(25B)
----subconscious()
--------__init__.py(23B)
--------column.py(2KB)
--------query.py(1KB)
--------model.py(14KB)
----.travis.yml(335B)
----LICENSE(1KB)
----README.md(4KB)
----tests()
--------__init__.py(0B)
--------test_composite_key.py(1KB)
--------base.py(634B)
--------test_all.py(6KB)
--------test_get_object_or_none.py(1KB)
--------test_save_and_load.py(1KB)
--------test_auto_int.py(2KB)
--------test_filter_by.py(4KB)
----tox.ini(54B)