Skip to content

Roysav/shittycorn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

shittycorn

a very simple implementation of web server supporting WSGI compatible applications

Usage

install the package

python3 -m pip install shittycorn

in main.py:

import flask

app = flask.Flask(__name__)

@app.get('/')
def index():
    return 'Hello, World!'

run the wsgi application:

python3 -m shittycorn main.app

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages