# python **Repository Path**: biiigfish/python ## Basic Information - **Project Name**: python - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 13 - **Created**: 2015-06-23 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ###PYTHON 本地新建一个wsgi.py文件 代码 ```python def application(environ, start_response): status = '200 OK' response_headers = [('Content-type','text/html')] start_response(status, response_headers) return ['

Python Demo

'] ``` 在网页上创建一个新项目,选择开启项目演示平台,框架选择wsgi 填好演示平台的域名,之后可以在控制台更改 将项目推送到Git@OSC 进入项目演示平台控制台,点击部署项目,目前只会部署主分支上的代码 重启应用使之生效 访问设定的域名即可