A tiny experimental server-side express-like library
Project description
Threadsnake
Threadsnake is an experimental server side library. It was created as an educational (self-educational) project in order to explain how does HTTP/1.1 works (I'm lying, it was to understand it).
from threadsnake.core import *
app = Application(get_port(80))
@app.get('/')
def main(app:Application, req:HttpRequest, res:HttpResponse):
res.end('Served by threadsnake!')
app.wait_exit('Press [Enter] to exit...')
The previous example sets a server wich listens at port 80 (or the next available) and responds to every get resquest to the path /
Threadsnake is designed to be lightweight and simple, yet able to serve hypertext and other resources sucessfully. Futhermore, as it was build over the The Python Standard Library, it has no third party dependencies.
Features
As I said, threadsnake is an academic project, not intended to be used as an fully production tool. However, it actually has some interesting capacities out of the box:
...And much more. In fact, I'm compiling a lot of examples in order to show how can you use all those options to make a feature-rich and fully functional web server.
Installing threadsnake
Installing through pip
The main way to get threadsnake is using pip:
pip install threadsnake
If you did it well, the python package manager will download and install threadsnake on your system. If not, well... That means something went wrong. Check this link in order to solve the pip installation method. Those other links may be helpful:
Downloading from Pypi
Yes, i know it's redundant, but you always can go to pypi and download the package directly (The 'directly' part is the actual link to pypi. However, as all we know, we feel more comfortable by clicking the literal link, so, here you have it: https://pypi.org/project/threadsnake/#files).
Downloading from the repository ...if still here
If Murphy is obsessed with you (Seriously, if you're still reading, it have to be true) and all the above fails, then you have no option than going to the repository at github.
Documentation and Issues
Wow... You're still reading. You have to be some sort of... Anime Archetype.
Well, as you can see right now we lack of a proper documentation. You have to understand, it's a new and small project. That said, once I finish uploading the examples, I'm planning to publish the documentation in this link and the bugs tracking to this other link. Till then... you know. Don't let your dreams be dreams. JU5T D0 1T (I don't know anything about trademarks, so i wrote the phrase that way cause i don't want that ancient-greek sneakers-maker goddess to get mad at me).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file threadsnake-0.0.21.tar.gz.
File metadata
- Download URL: threadsnake-0.0.21.tar.gz
- Upload date:
- Size: 51.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da714b795bb9d53043cb0679d2d4bf9b77d2f0c75bdcf8d97fe28ef86e1e378c
|
|
| MD5 |
15dfbee097c6301130c06e06d089f56d
|
|
| BLAKE2b-256 |
70393c1541034bcfdfa5ceef358bc767c1bb794e77736fa9486f98da6b75bd5a
|
File details
Details for the file threadsnake-0.0.21-py3-none-any.whl.
File metadata
- Download URL: threadsnake-0.0.21-py3-none-any.whl
- Upload date:
- Size: 55.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ecac39f66dab607e2d7594fdf5026ac4636aac2ab0fa99d4bda9430d876993ed
|
|
| MD5 |
03ef6ebfff5f642ee1b8eb27d2ef1f2e
|
|
| BLAKE2b-256 |
5558c7af79da67f67774512126aa0ff703b1726601e4555e92cdea380047226d
|