2019-08-05 05:07:38 +02:00
< h1 align = "center" > Jetforce< / h1 >
2019-08-05 05:10:18 +02:00
< p align = "center" > An experimental python server framework for the new, under development Gemini Protocol.< / p >
< p align = "center" > Learn more about Project Gemini from its designer, ~solderpunk, < a href = "https://gopher.commons.host/gopher://zaibatsu.circumlunar.space/1/~solderpunk/gemini" > here< / a > .< / p >
2019-08-05 05:08:22 +02:00
< p align = "center" > < img alt = "rocket launch" src = "resources/rocket.jpg" / > < / p >
2019-08-05 04:57:34 +02:00
## Features
2019-08-05 05:18:41 +02:00
- A modern python 3 codebase with type hinting and black formatting.
2019-08-05 04:57:34 +02:00
- Lightweight, single-file web framework with zero dependencies.
- A built-in static file server with support for *.gemini* directory map files.
- Supports concurrent connections using an asynchronous event loop.
- Extendable - loosely implements the [WSGI ](https://en.wikipedia.org/wiki/Web_Server_Gateway_Interface ) server/application pattern.
## Installation
2019-08-06 00:47:59 +02:00
Requires Python 3.7+ and OpenSSL
2019-08-05 04:57:34 +02:00
### pip
```bash
$ pip install jetforce
```
### git
```bash
$ git clone https://github.com/michael-lazar/jetforce
$ cd jetforce
$ python jetforce.py
```