Metadata-Version: 2.1
Name: fescache
Version: 1.1.2
Summary: 同步异步Redis基础封装库
Home-page: https://github.com/tinybees/fescache
Author: TinyBees
Author-email: a598824322@qq.com
License: MIT
Keywords: redis,asyncio,crud,session,easier
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: Chinese (Simplified)
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: aelog <=1.0.9,>=1.0.6
Requires-Dist: orjson >=3.6.1
Provides-Extra: async
Requires-Dist: aredis <=1.1.8,>=1.1.3 ; extra == 'async'
Requires-Dist: hiredis <=2.0.0 ; extra == 'async'
Provides-Extra: sync
Requires-Dist: redis <=4.1.4,>=3.5.3 ; extra == 'sync'

# fescache
Faster, easier, simpler coding

# Installing fescache
- 对于sanic等异步框架安装
    - ```pip install fescache[async]```

- 对于flask等同步框架安装
    - ```pip install fescache[sync]```

# Usage
### 后续陆续添加.


