/jupiter

jupiter, a AIO web framework, can rapidly develop high-performance web projects

Primary LanguageJavaScriptMIT LicenseMIT

jupiter

Build Status Codacy Badge License

jupiter一个AIO web框架,能够快速开发高性能web项目。

https://github.com/dianbaer/jupiter

1、jupiter_http

安装:

pip install jupiter_http

jupiter_http是一个AIO Web框架,扩展了aiohttp,增加扫描、注解、过滤、模板等功能。

例子:jupiter_http_test

jupiter_http如何使用

2、jupiter_orm

安装:

pip install jupiter_orm

jupiter_orm是一个AIO ORM框架,扩展了aiomysql,能够通过对象操作数据库。

例子:jupiter_orm_test

jupiter_orm如何使用

3、jupiter_config

安装:

pip install jupiter_config

jupiter_config如何使用

上传至pypi

windows 创建文件

type NUL > .pypirc

.pypric文件放入home目录下

	[distutils]
	index-servers =
	  pypi

	[pypi]
	repository=https://pypi.python.org/pypi
	username=your_username
	password=your_password

检查	
python setup.py check

打包
python setup.py sdist

上传
python setup.py sdist upload -r pypi