Metadata-Version: 2.4
Name: gocorn
Version: 0.0.0
Summary: Fast ASGI Server written in Go
Home-page: https://github.com/joegasewicz/volk
Author: joegasewicz
Author-email: joegasewicz <joegasewicz@gmail.com>
License: MIT
Requires-Python: >=3.13
Description-Content-Type: text/markdown
Requires-Dist: twine<7.0.0,>=6.2.0
Dynamic: author
Dynamic: home-page

<p align="center">
  <img src="examples/Gophercorn.png" width="auto" height="100" alt="Siberia" />
</p>

# Gophercorn
Fast Python ASGI server written in Go. 

Work in progress, call back soon...

### Install
```bash
pip install gophercorn
```

### Setup

```python
from flask import Flask  # Or any other ASGI application framework
from gocorn import Gophercorn

flask_app = Flask(__name__)

if __name__ == "__main__":
    gocorn = Gophercorn(wsgi_application=flask_app)
    gocorn.serve() 
```
