Metadata-Version: 2.4
Name: gophercorn
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/logo.png" width="200" height="200" alt="Siberia" />
</p>

# Gofercorn
Fast Python ASGI server written in Go.

### Install
```bash
pip install gofercorn
```

### Setup

```python
from flask import Flask  # Or any other WSGI application framework
from volk import Volk

flask_app = Flask(__name__)

if __name__ == "__main__":
    volk = Volk(wsgi_application=flask_app)
    volk.serve() 
```
