20 Star 67 Fork 21

wossl33 / wossl

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.py 569 Bytes
一键复制 编辑 原始数据 按行查看 历史
wossl33 提交于 2017-12-26 18:03 . Add files via upload
# -*- coding:utf-8 -*-
from flask import Flask
from cer import cer
from csr import csr
from rsa import rsa
from des import des
from hashs import hashs
from feis import feis
app=Flask(__name__)
# 加载配置文件
app.config.from_pyfile('config.py')
# 注册蓝图
app.register_blueprint(cer,url_prefix='/cer')
app.register_blueprint(csr,url_prefix='/csr')
app.register_blueprint(rsa,url_prefix='/rsa')
app.register_blueprint(des,url_prefix='/des')
app.register_blueprint(hashs,url_prefix='/hashs')
app.register_blueprint(feis,url_prefix='/feis')
Python
1
https://gitee.com/wossl33/wossl.git
git@gitee.com:wossl33/wossl.git
wossl33
wossl
wossl
master

搜索帮助