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():
    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.0.2.tar.gz (1.8 kB view details)

Uploaded Source

Built Distribution

Xevel-0.0.2-py3-none-any.whl (1.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: Xevel-0.0.2.tar.gz
  • Upload date:
  • Size: 1.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10

File hashes

Hashes for Xevel-0.0.2.tar.gz
Algorithm Hash digest
SHA256 b50d0ffc6346c56ab53c1bc1416980a935a1d49c11f07cda028c1afe99f37c29
MD5 e6b76467e6137a2f8b312b4e48f84845
BLAKE2b-256 31912374c3ff6c9854b30a7e12e8d3dda509ed624f73a10db625a28d360749b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: Xevel-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 1.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.10

File hashes

Hashes for Xevel-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 2fe8877d004c23078a1dba60a8db947e2955bc0808b2ec4a3518882bc7630a90
MD5 cf38f8027a882437233eab6e83b64749
BLAKE2b-256 cb78326cc90eab86efafea1fffcb530a75d1e48072f4c298443789ee12b6727e

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