From 9338b9163e9e17a0d1fe2af0ea4d3dc604ce4aac Mon Sep 17 00:00:00 2001 From: Kumi Date: Sun, 21 Jan 2024 21:48:13 +0100 Subject: [PATCH] Enable file uploads via POST in Fiche-compatible server Enhanced the Fiche-compatible HTTP server in PyFiche to accept file uploads using POST requests, providing a more standard method for sending files to the server. This update complements the existing TCP server, Recup, which facilitates downloading pastes via netcat. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 88f53b1..5a1420d 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,8 @@ a shameless translation. It has no dependencies outside the Python standard library. It also comes with a re-implementation of Lines, the HTTP server that comes -with Fiche. Additionally, PyFiche also comes with a simple TCP server, Recup, +with Fiche, which this time around also allows you to upload files using POST +requests. Additionally, PyFiche also comes with a simple TCP server, Recup, to download pastes through netcat without using HTTP(S), in the same way you upload them.