Skip to main content

tiny web/app server with C/Python

Project description

fly

Python lightweight Web application framework.

  • Event driven architecture.

  • Usable as Web server and Application server.

  • Lightweight and fast.

Install

$ pip install fly

Hello World

It is so easy to use fly.

  1. import fly and make fly instance.

  2. mount directory and registery route.(option)

  3. run fly.

from fly import Fly

app = Fly()

# register index route
@app.get("/")
def index(request):
	return HTMLResponse(
		200,
		[],
		"Hello World, fly"
	)

# start server
app.run()
mount vs route
  • mount: use for static content(css, html, js)

  • route: use for dynamic content(like CGI)

How fast ?

look at benchmark.

HTTP version

HTTP1.1, HTTP1.1 over TLS/SSL, HTTP2 over TLS/SSL.

Contributing

Let's coding.

  1. Fork fly.
  2. Create a feature branch. (git checkout -b new-feature)
  3. Commit your changes. (git commit -m explain of commit)
  4. Push to the bench. (git push origin my-new-feature)
  5. Create new pull request.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fly_server-1.0.0.tar.gz (4.3 MB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page