Skip to main content

Simple FastCGI

simple FastCGI protocol parser and sync/async handler in pure python

Example 1: echo (sync)

import json
from simple_fastcgi import *

class example_handler(HttpResponseMixin, FcgiHandler):
	def handle(self):
		self.send_response(200, json = self.environ)

if __name__ == "__main__":
	with FcgiServer(example_handler) as server:
		server.serve_forever()

Example 2: dir listing (async)

import os
import json
import asyncio
from functools import partial
from urllib.parse import parse_qs
from simple_fastcgi import *


async def dir_listing(path):
	with os.scandir(path) as it:
		for entry in it:
			record = {
				"name": entry.name
			}
			try:
				if entry.is_dir():
					record["type"] = "dir"
				elif entry.is_file():
					record["type"] = "file"
				else:
					continue

				stat = entry.stat()
				record["size"] = stat.st_size
				record["mtime"] = int(stat.st_mtime * 1000)
			except Exception:
				pass

			line = json.dumps(record, ensure_ascii = False) + '\n'
			yield line


class dir_listing_handler(AsyncHttpResponseMixin, AsyncFcgiHandler):
	async def handle(self):
		try:
			doc_root = self.environ["DOCUMENT_ROOT"]
			query = parse_qs(self.environ["QUERY_STRING"])
			path = query["path"][0].lstrip("/.")

			func = partial(dir_listing, os.path.join(doc_root, path))
			return await self.send_response(200, "application/x-ndjson", data = func)
		except Exception as e:
			return await self.send_response(404)


async def main():
	async with AsyncFcgiServer(dir_listing_handler) as server:
		await server.serve_forever()

if __name__ == "__main__":
	asyncio.run(main())

API reference

The import module name is simple_fastcgi

Exceptions

ProtocolError

Raised when encountered FastCGI protocol violations.

Handlers

class FcgiHandler

FastCGI Handler, subclass of BaseRequestHandler. To implement your own handler, subclass FcgiHandler and override the handle() method.

environ

Member environ is a dictionary containing key-value pairs from the webserver. The keys are converted to upper-case.

server

Member server refers to the server object that creates this handler.

handle()

Override this method and do all the work here to serve a request.

aborted()

Check if the FastCGI request has been aborted by the webserver.

read(sz = -1)

Read and return up to sz bytes from input stream. If sz < 0, read until EOF. Returns empty bytes object on EOF.

readinto(buffer)

Read from input stream into buffer, return the actual read byte count. Returns 0 on EOF.

readall()

Read input stream until EOF and return all the data.

write(data)

Write data to the output stream.

write_err(data)

Write data to the error stream.

flush()

Flush the buffered data to underlying socket.

class AsyncFcgiHandler

Async variant of FcgiHandler. methods are the same, except being async.

environ

server

async handle()

aborted()

async read(sz = -1)

async readinto(buffer)

async readall()

async write(data)

async write_err(data)

async flush()

Servers

class FcgiServer

Subclass of BaseServer, but listening on passed in socket or FCGI_LISTENSOCK_FILENO ( fd 0 ). Can be used with context manager.

__init__(handler, sock = None)

Initialize a server object. Subclass may override and do extra initialization.

handler is the handler-class which is instantiated on each request.

sock is a listening socket on which the server is running. FcgiServer does not take ownership of this socket and caller is responsible to close it.

If sock is None, it uses stdin in conforming to FastCGI Specification.

fileno()

Get the underlying fd of the server object. Returns sockfd.

shutdown()

Stop the server.

serve_forever()

Start the server and block until shutdown.

service_actions()

Called in serve_forever loop. Subclass may override and do their own actions.

class AsyncFcgiServer

Async variant of FcgiServer. methods are the same, except being async. Can be used with async context manager.

Note there is no service_actions() in AsyncFcgiServer, since it runs on event loop instead of its own loop, and one can easily schedule tasks to event loop.

__init__(handler, sock = None)

fileno()

get_loop()

Get the event loop on which the server is running.

async shutdown()

async serve_forever()

Mixins

class HttpResponseMixin

Helper mixin class for FcgiServer, to construct CGI/HTTP responses.

send_response(code, /, mime_type = None, data = None, *, json = None, extra_headers = [])

Construct a CGI document response and write to output stream.

code is the HTTP status code of the response.

mime_type is the content-type of the response. Default to "text/plain", or "application/json" if json is not None.

extra_headers is the extra HTTP header fields that should be included in the response header.

data is the payload of the response.

  • if data is a function, it is assumed to be a generator and called to get chunks of data.
  • if data is a string, it is encoded in UTF-8.
  • if "json" appears in mime_type and data is not bytes-like, try to encode data as json.
  • else, append data to payload as-is.

If json is not None, it is serialized using json.dumps and as payload of the response.

If data is a function, each data chunk is followed by a flush.

If data, json and mime_type are all None, the payload would be the HTTP status code and description.

data and json should not be specified at the same time.

Note that you can mix this method with write() calls. For example, you can call this method, passing first data chunk as data parameter, followed by multiple write() calls to append more data.

Also note that this method does not calculate or append a content-length header for you. You need to handle content-length header yourself, either omit this header, or calculate in advance.

If data is a function and raises before yielding any data, no response (including the header) is sent out. You can then call send_response again, possibly with different parameters.

send_redirect(target)

Construct a CGI redirect response and write to output stream.

target is the redirect target, it can be either local-Location or client-Location as defined in CGI Specification.

AsyncHttpResponseMixin

Async variant of HttpResponseMixin. methods are the same, except being async

async send_response(code, /, mime_type = None, data = None, *, json = None, extra_headers = [])

Note that if data is a function, it is assumed to be an async generator instead.

async send_redirect(target)

Reference

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

simple_fastcgi-0.0.6.tar.gz (12.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

simple_fastcgi-0.0.6-py3-none-any.whl (11.3 kB view details)

Uploaded Python 3

File details

Details for the file simple_fastcgi-0.0.6.tar.gz.

File metadata

  • Download URL: simple_fastcgi-0.0.6.tar.gz
  • Upload date:
  • Size: 12.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simple_fastcgi-0.0.6.tar.gz
Algorithm Hash digest
SHA256 26286960f590c7c7667322b32405b1d123bcd02962dc18caa8c26ef131a93134
MD5 11a8b3fd5717bd000c84cd090a989e5c
BLAKE2b-256 367bbeead8a0fa251c77f433a3f71b469111d0514a74d9c58d3ba0aeb0c7d7b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_fastcgi-0.0.6.tar.gz:

Publisher: python-publish.yml on USN484259/simple-fastcgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simple_fastcgi-0.0.6-py3-none-any.whl.

File metadata

  • Download URL: simple_fastcgi-0.0.6-py3-none-any.whl
  • Upload date:
  • Size: 11.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simple_fastcgi-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 c2886b661c62139baa980ed66b4e9e0fc770676384ecfa2ac9773918408a93a7
MD5 5586d729b2af7860f4c17e6b378f99e0
BLAKE2b-256 9bf6482029c741efb38e94da9da85315fccbcf486f0d55bd452bc91a5e361c13

See more details on using hashes here.

Provenance

The following attestation bundles were made for simple_fastcgi-0.0.6-py3-none-any.whl:

Publisher: python-publish.yml on USN484259/simple-fastcgi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.0.6 This release

2 files

0.0.5

2 files

0.0.4

2 files

0.0.3

2 files

0.0.2

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page