Skip to main content

a Web Framework made by Xp-op

Project description

Pjono

Web Framework for Python


About the project:

There are many Python web frameworks and some of them are better than Pjono. The reasons I made Pjono is because:

  • To understanding how Http work
  • Learn about Python much deeper

Built with:

  • Socket

Usage:

from Pjono import PjonoApp, Http_Response, Http_File, HTML

app = PjonoApp()

app.add_file("/style.css", Http_File("style.css", "text/css"))

@app.register("/")
def index(request):
    return Http_Response(response_headers={
        "CONTENT": HTML("index.html").content
    })

app.launch()

You can also use it to parse http request

from Pjono.PARSE import parse_request

request = """\
GET /index.html HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE5.01; Windows NT)
Host: www.example.com
Accept-Language: en-us
Accept-Encoding: gzip, deflate
Connection: Keep-Alive"""

print(parse_request(request))

Contributing

  1. Fork the project
  2. Create your Feature Branch: git checkout -b feature/{feature}
  3. Commit your Changes: git commit -m 'Add some AmazingFeature'
  4. Push to the Branch: git push origin feature/AmazingFeature
  5. Open a Pull Request

License

Distributed under the MIT License. See LICENSE for more information

Quick Link

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

Pjono-0.0.2.tar.gz (7.9 kB view hashes)

Uploaded Source

Built Distribution

Pjono-0.0.2-py3-none-any.whl (11.5 kB view hashes)

Uploaded Python 3

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