Skip to main content

Python ASGI server

Project description

Xevel

My first attempt at a python ASGI server

Xevel is very much my first attempt at an ASGI server and it is definitely not perfect. I am open to any PRs or issues if you come across any problems.

NOTE: This will only work on UNIX-based systems.

A basic use example of Xevel could look like this:

from xevel import *

web = Xevel(
    ("localhost", 9208)
)  # you can use tuples for port setups ('localhost', PORT') or unix sockets (provide file location as string)
# ('localhost', 9208) # inet
# '/tmp/test.sock' # unix

router = Router(
    "localhost:9208"
)  # force routers to only accept connections from certain domain/subdomains. can provide 1 as a string or multiple as a list


@router.before_request()
async def breq(req):
    print("before request is running!!!")


@router.after_request()
async def areq(req):
    print(f"after request is running!!! endpoint: {req.url}")


@router.route("/test")
async def test_route(req):
    req.resp_headers["XD"] = "lol"
    return "asgi server works no way!!!"


@web.before_serving()
async def before():
    print("before serving is running!!!")


@web.after_serving()
async def after():
    print("after serving is running!!!")


web.add_router(router)
web.start()

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

Xevel-0.4.3.tar.gz (6.6 kB view details)

Uploaded Source

Built Distribution

Xevel-0.4.3-py3-none-any.whl (6.7 kB view details)

Uploaded Python 3

File details

Details for the file Xevel-0.4.3.tar.gz.

File metadata

  • Download URL: Xevel-0.4.3.tar.gz
  • Upload date:
  • Size: 6.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for Xevel-0.4.3.tar.gz
Algorithm Hash digest
SHA256 8971a05ac2890e9d47e47e302c99303eb2f7ad513780e074f965f6f62e0fc7a4
MD5 ff1b4b89705861c3a214f5ae00152202
BLAKE2b-256 e72b964c57d3d5197341705fadb3e2a67d4350c9cae49c9b425a109584848db4

See more details on using hashes here.

File details

Details for the file Xevel-0.4.3-py3-none-any.whl.

File metadata

  • Download URL: Xevel-0.4.3-py3-none-any.whl
  • Upload date:
  • Size: 6.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for Xevel-0.4.3-py3-none-any.whl
Algorithm Hash digest
SHA256 703b098b1bd0f5b748378b2ec704564d4c2cefa6747c2f4f3c1ba06ffb9218a1
MD5 d2c3dc9578a36437d7442dc6290fc9ec
BLAKE2b-256 7da335c0e60d6f11c5bd400eccccde5104cd70232a514cf7865fd1c6d3f3e63c

See more details on using hashes here.

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