Skip to main content

A Python Gemini server

Project description

Gemeaux: a Python Gemini Server

travis build badge for "main" branch

The Gemini protocol is an ongoing initiative to build a clutter-free content-focused Internet browsing, à la Gopher, but modernized. It focuses on Privacy (TLS + no user tracking) and eliminates the fluff around the modern web: cookies, ads, overweight Javascript apps, browser incompatibilities, etc.

It has been designed for enabling a developer to build a client or a server within a few hours of work. I have been able to serve Gemini static content after two afternoons, so I guess I'm an average developer. But after that, I've tried to improve it, make it more flexible and extensible.

So, here it is: the Gemeaux server.

IMPORTANT NOTE: since this project is still in its earliest stages, it's worth saying that this software IS DEFINITELY NOT READY FOR PRODUCTION — and would probably never will ;o).

Clients

A quick word about Gemini protocol. Since it's a different protocol from HTTP, or Gopher, or FTP, etc., it means that you'll have to drop your beloved Web Browser to access Gemini content. Hopefully, several clients are available.

Download and install a couple of clients, pick one that fits your needs, or if you feel like it, build one yourself, and you'll be ready to spacewalk the Gemini ecosystem.

For development purposes, I'd recommend bollux, a browser made for bash, because it displays helpful debug messages (and it's as fast as you can dream).

Requirements

Gemeaux is built around the standard Python 3.6+ library and syntax. There are no external dependencies.

Automated tests are launched using Python 3.6, 3.7 and 3.8, so the internals of Gemeaux are safe with these versions of Python.

You'll also need openssl to generate certificates.

Quickstart

Install via PyPI

To install the latest release of gemeaux package, inside a virtualenv, or in a safe environment, run the following:

pip install gemeaux

Developer mode

git clone https://github.com/brunobord/gemeaux.git
# You may also want to use this source: git@github.com:brunobord/gemeaux.git
cd gemeaux/
pip install -e .

Generate certificates

Since TLS is mandatory, you'll have to generate your own SSL certificate files. Use the following command to generate self-signed certificate files, targeting a localhost/developer mode:

make cert

This command will generate two files: cert.pem and key.pem.

Again, this will probably not be safe for production.

Usage

The "hello world" of this proof of concept would be to serve a directory containing an index.gmi file.

For example, the index.gmi can look like this:

# Hello World!

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis
nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu
fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
culpa qui officia deserunt mollit anim id est laborum.

Then you'll create a python file (e.g.: app.py) containing the following:

from gemeaux import App, StaticHandler

if __name__ == "__main__":
    urls = {
        "": StaticHandler(
            static_dir="path/to/your/directory/"
        ),
    }
    app = App(urls)
    app.run()

Note: The static_dir argument can be a relative or an absolute path.

Then you'll run your program using Python 3+:

python app.py

You can then point your client at gemini://localhost/ and you'll see the content of your home page.

By default, the application will listen at port 1965 on your localhost (127.0.0.1) host, and will use the previously generated cert.pem and key.pem files.

In order to open your server to "the world", you can change the --ip option like this:

python app.py --ip 0.0.0.0

BIG WARNING: opening your server to external connections is DEFINITELY NOT A GOOD IDEA, since this software IS NOT PRODUCTION-READY.

You can change the default configuration values using the optional arguments. For more details, run:

python app.py --help

Advanced usage

The urls configuration is at the core of the application workflow. By combining the available Handler and Response classes, you have the ability to create more complex Gemini spaces.

See the example application, in the example_app.py file if you want to see an advanced usage of handlers & responses.

Known bugs & limitations

This project is mostly for education purposes, although it can possibly be used through a local network, serving Gemini content. There are important steps & bugs to fix before becoming a more solid alternative to other Gemini server software.

  • The internals of Gemeaux are being tested on Python3.6+, but not the mainloop mechanics.
  • The vast majority of Gemini Standard responses are not implemented.
  • The Handler & Response documentation is missing, along with docstrings.
  • Only text/gemini responses are handled ; other mimetypes would need to be implemented.
  • Performances are probably very low, there might be room for optimisation.

What's in the name?

"Gémeaux" is the French word for "Gemini". And incidentally, I was born a Gemini.

Disclaimer: I don't believe in astrology.

Other projects

  • Jetforce is a Python-based Gemini server, using the Twisted framework.
  • GeGoBi uses a single Python file ; it's a dual-protocol server, for both Gopher & Gemini.

License

Gemeaux server is distributed as Free Software under the terms of the MIT License. See the contents of the LICENSE file for more details.

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

gemeaux-0.0.1.tar.gz (9.9 kB view hashes)

Uploaded Source

Built Distribution

gemeaux-0.0.1-py3-none-any.whl (10.0 kB view hashes)

Uploaded Python 3

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