Skip to main content

peregrine

A drop-in ASGI and WSGI server for Python, written in Swift.
FastAPI at 1.4–1.6× and Flask at 2.3–2.5× the throughput of uvicorn, on one worker.
HTTP/1.1, HTTP/2, HTTP/3, WebSocket and WebTransport.

PyPI version Python versions MIT license


pip install peregrine-server
peregrine --host 0.0.0.0 --workers 0 main:app    # where you ran: uvicorn main:app

Requests per second on one worker at 256 connections. FastAPI: peregrine 24,117, granian 15,574, uvicorn 15,544, fastpysgi 10,843. Flask: peregrine 14,992, fastpysgi 10,202, uvicorn 6,545, granian 6,152.

  • Faster with the framework you already use. The same FastAPI application answers 24,100 requests a second on one worker against uvicorn's 15,500, and the same Flask application 15,000 against 6,500. How that was measured.
  • Nothing to change in the application. ASGI 3 and PEP 3333 in full, for FastAPI, Starlette, Django and Flask, with lifespan and WebSockets. The protocol is detected, and the options are the ones you know: coming from uvicorn or gunicorn.
  • What usually needs a proxy in front, built in. HTTP/2 and HTTP/3, TLS with Let's Encrypt certificates, static files with sendfile, compression, rate limiting, a response cache, Prometheus metrics, and a SIGHUP that replaces every worker without refusing a connection.
  • Free-threaded Python. On CPython 3.14t, --free-threaded runs the workers as threads of one process: the throughput of processes at a third of the memory.
  • Wheels for Linux x86_64 and aarch64, CPython 3.11 to 3.14 and 3.14t, including the official python:*-slim images. No Swift toolchain needed.

Built around two goals: spend as little time as possible outside the application, and spend as little memory as possible per connection.

It runs in the same process as CPython — there is no socket between Swift and Python, no serialisation step, and no second process. Swift owns the accept loop, the HTTP parser and the response writer; Python owns the application. A wheel installs the server as peregrine._native, an extension module the peregrine command loads into your own interpreter, so applications run in exactly the python3 they were installed for.

pip install peregrine-server                # wheel if one matches; else compiled

peregrine --port 8000 myapp:application     # WSGI, protocol auto-detected
peregrine --port 8000 --workers 0 myapp:app # ASGI, one worker per CPU
peregrine --reload myapp:app                # restart on source changes

peregrine --http3 --tls-cert cert.pem --tls-key key.pem myapp:app

Further reading: INSTALLATION.md — what to install and what to do when it goes wrong. CONFIG.md — configuring FastAPI and Flask for every protocol here. ARCHITECTURE.md — how the server is built, and why. TRANSPORT.md — what each protocol does and what is implemented of it. BENCHMARKS.md — FastAPI and Flask against uvicorn, granian and fastpysgi on one worker, with the load and applications of the-benchmarker/web-frameworks, and how that differs from what the site publishes. DEPLOY.md — how a release reaches PyPI. RELEASE.md — what changed in each version.


Numbers

FastAPI and Flask, one worker each, on Peregrine, uvicorn, granian and fastpysgi, with the applications and load command of the-benchmarker/web-frameworks at a pinned revision (zrk, an open-loop ramp to 100,000 requests a second, 15 s per level). Requests per second at 64 / 256 / 512 connections, median of three runs, all in one session, WSL2 on 4 cores, CPython 3.12:

FastAPI (ASGI) 64 256 512
peregrine 24,672 24,117 24,320
peregrine, executable 21,696 21,841 21,504
uvicorn 17,504 15,544 15,114
granian 15,647 15,574 15,209
fastpysgi, running FastAPI 11,337 10,843 10,264
Flask (WSGI) 64 256 512
peregrine 14,768 14,992 14,458
peregrine, executable 13,084 13,029 12,488
fastpysgi, running Flask 10,419 10,202 9,978
uvicorn (--interface wsgi) 6,554 6,545 5,722
granian 6,427 6,152 6,257

peregrine is what a wheel installs: the extension module, running inside python3.12. The executable is the same server embedding libpython3.12.so, and a shared libpython runs the framework 10–16 % slower than the statically linked interpreter every other server here runs in.

These are not the site's figures and cannot be set beside them. The site runs every server with a worker per CPU on 16 CPUs, under Python 3.14, with gunicorn for Flask and fastpysgi on a raw application with no framework. Peregrine was added to that suite in September 2026, and its figures there come from that hardware and those settings, not these. What these tables show is how the servers compare with each other on one worker of this machine.

Method, latencies, where this differs from the published results, and how to reproduce it: BENCHMARKS.md. Run-to-run variance on this box is around ±10 %, so read the ratios rather than the absolute figures.

These are hello-world routes, so they measure what a server adds to a request rather than what an application can do. A real application doing database work will be dominated by that work, and the gaps will narrow accordingly.

The server is about 1.7 MB of text and data as the extension module (1.3 MB as the executable, which needs no position-independent code), and a live connection costs one 16 KiB pooled read buffer plus a slot of about 200 bytes. Nearly all of a worker's resident memory is CPython and the application.


Coming from uvicorn or gunicorn

Point Peregrine at the same application object. The protocol is detected, so there is no worker class to name, and most options keep their names. What differs is mostly units, because Peregrine's timeouts are in milliseconds:

uvicorn gunicorn peregrine
uvicorn main:app gunicorn -k uvicorn.workers.UvicornWorker main:app peregrine main:app
gunicorn myproject.wsgi peregrine myproject.wsgi:application
--host 0.0.0.0 --port 8000 -b 0.0.0.0:8000 --host 0.0.0.0 --port 8000
--uds /run/app.sock -b unix:/run/app.sock --unix /run/app.sock
--workers 4 -w 4 --workers 4, or 0 for one per CPU
--threads 8 --wsgi-threads 8
--reload --reload --reload
--ssl-certfile c.pem --ssl-keyfile k.pem --certfile c.pem --keyfile k.pem --tls-cert c.pem --tls-key k.pem
--forwarded-allow-ips '*' --forwarded-allow-ips '*' --forwarded-allow-ips '*'
--root-path /api --root-path /api
--timeout-keep-alive 5 --keep-alive 5 --keep-alive 5000
--timeout-graceful-shutdown 30 --graceful-timeout 30 --graceful-timeout 30000
--lifespan off --no-lifespan
--ws-max-size 16777216 --ws-max-message 16777216
--ws-ping-interval 20 --ws-ping-interval 20000
--factory --factory
access log on by default --access-logfile - --access-log
--log-level info --log-level info --log-level info

uvloop is used when it is installed (pip install "peregrine-server[uvloop]"), as with uvicorn. SIGTERM drains the workers, and SIGHUP replaces them one at a time without refusing a connection.


What is supported

HTTP/1.1 HTTP/2 HTTP/3 WebSocket WebTransport
ASGI
WSGI 501 501

WebSockets and WebTransport are refused for WSGI rather than half-served: both are streams that outlive their response, and PEP 3333 has no way to express one. Everything else is the same code for both — see one request path.

WSGI (PEP 3333): full environ, wsgi.input as a C-level stream (read, readline, readlines, iteration), start_response including exc_info semantics and the legacy write callable, wsgi.file_wrapper, iterable close(), repeated request headers folded per spec, automatic Content-Length/chunked framing. start_response may be called from inside the first iteration of the returned iterable, as the spec requires a server to allow, and a Content-Length the application declares is enforced rather than trusted.

Output is unbuffered in the sense PEP 3333 means. A block yielded by an iterator goes to the socket before the next one is asked for, and a block handed to write() goes out before the call returns — taking the response head with it, if it is the first. A generator that yields a progress line and then works for a second is therefore seen to do so. A list or tuple return value is still written in one go, because every part of it is already in hand and nothing is waiting.

ASGI 3.0 (HTTP): full scope including client, server, raw_path and state, streaming request bodies, streaming responses with genuine write backpressure, http.disconnect, and the lifespan protocol with state shared into request scopes. Applications that do not implement lifespan are detected and skipped. Response headers are accepted in any shape the specification allows — tuples or lists, bytes, bytearray or str.

An ASGI application is started as soon as the request head is parsed, not once the body has finished arriving. That is what lets one reject an upload at byte one — unauthorised, too large, wrong content type — instead of paying to receive all of it first, and it is the only way receive() can mean anything on a request that is still being sent. Body bytes are read no further ahead than the application has asked for.

Answering early leaves the rest of that body on the wire, and it is not a request. If what remains is small and already here it is swallowed and the connection is reused; otherwise that response is the last one on the connection.

A receive() made after the response is complete is answered with http.disconnect rather than parked. The request is over at that point, and a task waiting on a body nobody will read holds the connection with it.

ASGI 3.0 (WebSocket): the full connect / accept / receive / send / close cycle, subprotocol negotiation, extra handshake headers, fragmented messages, text and binary, keepalive ping/pong with a dead-peer timeout, and a message size limit. Details.

WebTransport: sessions, streams in both directions, unreliable datagrams and the close capsule, through a documented ASGI extension — ASGI has no WebTransport specification, so this one is Peregrine's.

Free-threaded CPython (PEP 703): --free-threaded runs the workers as threads of one process rather than as processes, on an interpreter built without the GIL. Same parallelism, one copy of the application:

peregrine --workers 0 --free-threaded myapp:app

On four cores with a CPU-bound application that is 5,907 req/s in 47 MB against 5,832 req/s in 143 MB for four worker processes — the throughput of processes at a third of the memory, because the application is imported once instead of four times. The ASGI lifespan runs once per worker thread, on the event loop that thread serves requests with, so what an application opens in startup is attached to the loop that will await it. Details.


Installing

A wheel is tagged for one CPython and one platform. PyPI has them for CPython 3.11 to 3.14 and free-threaded 3.14t, on Linux x86_64 and aarch64 with glibc 2.35 or newer: Debian 12, Ubuntu 22.04, what came after them, and the official python:*-slim images. When one matches, pip installs it and Swift is not required. When none does, as on macOS, Alpine or an older distribution, pip compiles the sdist against the interpreter you are installing into:

pip install peregrine-server

In a container nothing else is needed:

FROM python:3.13-slim
RUN pip install --no-cache-dir "peregrine-server[uvloop]" fastapi
COPY main.py .
CMD ["peregrine", "--host", "0.0.0.0", "--workers", "0", "main:app"]
# plus a Swift 6.1+ toolchain from https://swift.org/install
git clone https://github.com/grepjava/peregrine
cd peregrine && bash scripts/build-extension.sh    # peregrine._native
PYTHONPATH=python python3 -m peregrine --port 8000 myapp:app

The extension module is the default wherever Peregrine is installed or built from source. swift build -c release builds the standalone executable, which embeds libpython and takes the same options; it is for working on Peregrine itself.

Requirements, per-platform packages, certificates and the failure modes worth recognising: INSTALLATION.md.


Usage

peregrine [options] MODULE:ATTRIBUTE

  --host HOST              interface to bind (default 127.0.0.1)
  --port PORT              port to bind (default 8000)
  --unix PATH              listen on a unix socket instead
  --workers N              worker processes, 0 = one per CPU (default 1)
  --free-threaded          run the workers as threads of one process
                           instead of as processes; needs a free-threaded
                           CPython (python3.13t or newer)
  --protocol wsgi|asgi     force the application protocol (default: detect)
  --root-path PATH         SCRIPT_NAME / ASGI root_path prefix
  --scheme http|https      scheme reported to the application
  --backlog N              listen backlog (default 2048)
  --max-connections N      concurrent connections per worker (default 4096)
  --max-body BYTES         largest accepted request body (default 16 MiB)
  --max-header-size BYTES  largest accepted request head (default 32 KiB)
  --keep-alive MS          idle keep-alive timeout (default 5000)
  --request-timeout MS     how long a request may stall mid-message (30000)
  --graceful-timeout MS    time in-flight requests get on shutdown (10000)
  --drain-delay MS         on SIGTERM, fail the health check and keep serving
                           for MS before draining, for load balancers
  --wsgi-threads N         WSGI application threads per worker (default 1)
  --forwarded-allow-ips L  proxies whose X-Forwarded-* headers are trusted
  --factory                the target is a factory returning the application
  --venv DIR               virtualenv whose packages the app should import
  --no-auto-venv           ignore VIRTUAL_ENV from the environment
  --python-path DIR        directory to prepend to sys.path (repeatable)
  --python-home DIR        PYTHONHOME, for the standalone executable only
  --reload                 restart workers when source files change
  --no-uvloop              do not use uvloop even when installed
  --no-lifespan            skip the ASGI lifespan protocol
  --lifespan-scope WHICH   with --free-threaded, run the lifespan per worker
                           thread (worker, default) or once for the whole
                           process (process)
  --tls-cert PATH          PEM certificate chain; enables TLS with ALPN.
                           Repeatable, with a --tls-key each: the first pair
                           is the default and the rest are chosen by SNI
  --tls-key PATH           PEM private key for the preceding --tls-cert
  --tls-ciphers LIST       OpenSSL cipher list for TLS 1.2
  --ktls                   let the kernel encrypt TLS, so --static-dir files
                           go out with sendfile over HTTPS too
  --no-http2               refuse HTTP/2 and answer HTTP/1.1 only
  --http2-only             serve only HTTP/2 (h2c), with no HTTP/1 fallback
  --http3                  also serve HTTP/3 over QUIC (needs TLS)
  --quic-port PORT         UDP port for HTTP/3 (default: the TCP port)
  --no-websockets          reject WebSocket upgrades with 501
  --ws-max-message BYTES   largest accepted WebSocket message (16 MiB)
  --ws-ping-interval MS    keepalive ping period, 0 to disable (20000)
  --ws-ping-timeout MS     how long an unanswered ping may go (20000)
  --ws-max-queue N         messages buffered for a slow app (default 32)
  --ws-max-queue-bytes N   bytes buffered for a slow app (default 4 MiB)
  --ws-compress            permessage-deflate for clients that offer it
  --static-dir P=DIR       serve URL prefix P from DIR with sendfile,
                           without calling the application (repeatable)
  --acme-domain NAME       get and renew a certificate from Let's Encrypt,
                           answering tls-alpn-01 on this port (repeatable)
  --acme-email ADDR        contact address for the ACME account
  --acme-cache DIR         account key and certificate (default ./acme)
  --acme-staging           use Let's Encrypt's staging CA
  --acme-directory URL     use another ACME CA
  --acme-ca-bundle PATH    roots to trust for the CA's own HTTPS
  --redirect-http PORT     answer plain HTTP on PORT with a redirect to https
  --hsts SECONDS           Strict-Transport-Security on every TLS response
  --rate-limit RATE        429 past RATE requests per client (100/s, 600/m),
                           counted across all workers
  --rate-limit-burst N     requests allowed at once before RATE applies
  --cache-size MIB         answer repeated GETs from a cache shared by every
                           worker, for responses the application marks fresh
                           (read CONFIG.md first)
  --cache-max-object KIB   largest body the cache keeps (default 1024)
  --cache-ttl-max SECONDS  longest a response is kept (default 300)
  --compress               compress text-like application responses with
                           br, zstd or gzip (see CONFIG.md about BREACH)
  --compress-min-size N    leave bodies declared smaller than N alone (1024)
  --compress-static        serve FILE.br / FILE.zst / FILE.gz beside a
                           --static-dir file to clients that accept it
  --request-start-header   hand the app X-Request-Start for queue-time APMs
  --request-id             an X-Request-ID per request, for the app, the
                           response and the access log
  --trace-context          log a request's W3C trace and parent span IDs
  --health-check-path P    answer P with 200 in the server, without calling
                           the application (e.g. /healthz)
  --access-log             log one line per request
  --access-log-format F    text (default) or json; implies --access-log
  --metrics-port PORT      serve Prometheus metrics on this port
  --metrics-host HOST      what the metrics port binds (default --host)
  --log-level LEVEL        debug, info, warning, error, silent
  --version                print the version and exit

The protocol is detected by inspecting the callable: a coroutine function, or one taking three positional parameters, is ASGI; two parameters is WSGI. Force it with --protocol if your application is wrapped in something opaque.

SIGTERM or SIGINT drains gracefully, with a deadline. SIGHUP replaces every worker one at a time, each replacement accepting on the socket its predecessor had before that one is asked to stop, so nothing is refused and nothing is reset -- which also makes it the certbot deploy hook, because the replacements read the certificate off disk again. See reloading without a restart, and the shutdown sequence, which is more careful than it looks and deliberately so.

Behind a reverse proxy

--forwarded-allow-ips takes a comma-separated list of addresses or CIDR blocks, unix, or * for every peer. Only headers arriving from a peer on that list are honoured; from anyone else X-Forwarded-For, X-Forwarded-Proto and Forwarded are ignored rather than trusted, because a client can send them too.


Frameworks

Checked against real applications rather than only the specifications (bash scripts/framework-test.sh):

  • FastAPI (ASGI) — routing, middleware, lifespan context managers including teardown on SIGTERM, StreamingResponse, WebSocket endpoints driven by the websockets client, the generated OpenAPI document, and the anyio worker threads FastAPI uses for synchronous endpoints.
  • Flask (WSGI) — routing, request bodies, streamed responses, request.is_secure and request.remote_addr derived from forwarded headers, and blocking views overlapping properly on --wsgi-threads.

Both run over HTTP/3 with no integration at all: a request is the same request whatever carried it. WebTransport is the exception for FastAPI, because a session is not a request — Starlette's router asserts on the scope type before it routes — so peregrine.contrib puts a router in front that answers sessions and passes everything else through:

from fastapi import FastAPI
from peregrine.contrib.fastapi import WebTransportRouter

api = FastAPI()
app = WebTransportRouter(api)            # serve this one

@app.route("/chat/{room}")
async def chat(session):
    await session.accept()
    async for stream in session.incoming_streams():
        await stream.send(b"hello " + await stream.read(), end=True)

Flask needs nothing at all: as a WSGI application it is served over HTTP/1.1, HTTP/2 and HTTP/3, and WebSocket and WebTransport, which PEP 3333 cannot express, are refused with a 501. How to configure both, protocol by protocol. What the router does.


Why Swift

The interesting question is not "why not C" but "why not Python, or Rust, or Go", since all four can host an application server and three of them are more usual choices for one.

It compiles to a native binary with no runtime to schedule around. A server is a loop over a poller; anything that inserts its own scheduler between the loop and the syscall — a garbage collector that stops the world, a green-thread runtime that decides when a read happens — buys concurrency this design does not need and costs latency it cannot recover. Swift has neither. Reference counting is deterministic, and where it would cost anything it can be removed, which is a large part of what the server does.

It talks to C without a binding layer. Embedding CPython means calling a C API constantly: PyDict_SetItem, PyObject_Vectorcall, Py_DECREF, a few hundred times per request. In Swift those are direct calls through a thin shim for the parts that are macros. There is no FFI marshalling, no unsafe boundary to justify per call site, and no second object model to keep in step with CPython's — a PyObject * is an OpaquePointer, and a ~Copyable struct makes the compiler prove the decref happens exactly once. The same is true of OpenSSL, epoll and recvmmsg.

It is memory-safe by default and unsafe on request. Almost all of this server is ordinary safe Swift: bounds-checked, ownership-checked, no null. The hot path opts out deliberately and locally — raw pointers into a read buffer, a slab of connection structs — and those opt-outs are visible in the source because they have to be spelled Unsafe. That is a better default for a network-facing parser than a language where everything is unsafe and discipline is the only guard, and a better ceiling than one where the escape hatch is awkward enough that you write the slow thing instead.

Generics and value types make the fast version the readable one. ByteBuffer is a struct passed in registers; the HTTP parser returns offsets into it; the QUIC packet builder writes through a ~Copyable writer that cannot be aliased. None of that needs a comment explaining what the pointer arithmetic is for, because there is no pointer arithmetic in it.

The honest costs: the ecosystem for this kind of work is small, so the QUIC stack, the TLS 1.3 handshake, HPACK and QPACK are all written here rather than pulled in; Linux tooling is thinner than C's; and Foundation is avoided entirely because it would bring back the allocation behaviour the design exists to remove.


Correctness and hardening

The HTTP/1.1 parser is strict wherever strictness prevents request smuggling — whitespace before a colon, Content-Length with Transfer-Encoding, disagreeing lengths, any Transfer-Encoding that is not a bare chunked, obs-fold, a missing or repeated Host. Response headers containing CR or LF are refused outright. Request header names containing underscores are dropped, and a Proxy: header is dropped entirely. The full list.

Every transport is checked against an implementation that shares none of its code, because a test written against the same understanding as the code proves only that the understanding is consistent.

swift test                                      # 150 unit tests: parser,
                                                #   chunking, buffers, writer,
                                                #   websocket framing, HPACK,
                                                #   QUIC packet protection,
                                                #   and the fuzz corpus
bash scripts/integration-test.sh                #  56 end-to-end checks
python3 scripts/feature-test.py                 # 196 checks for the failure
                                                #   modes a plain request never
                                                #   reaches: slow consumers,
                                                #   stuck-request shutdown,
                                                #   lifespan cleanup, worker
                                                #   restarts, reload
bash scripts/framework-test.sh                  # checks against real FastAPI
                                                #   and Flask applications,
                                                #   over HTTP/1.1 and HTTP/2
<venv>/bin/python scripts/http2-test.py         # 162 checks against `h2`
<venv>/bin/python scripts/http3-test.py         # 114 checks against `aioquic`
python3 scripts/contrib_test.py                 #  58 Python-only: routing,
                                                #   converters, session helper
<venv>/bin/python scripts/webtransport-test.py  # sessions, streams, datagrams,
                                                #   plus FastAPI over HTTP/3
                                                #   and WebTransport
swift run -c release pgfuzz                     # mutation fuzzing of every
                                                #   parser that reads bytes
                                                #   from the network

CI runs all of it on every push, against CPython 3.11 through 3.14 and a free-threaded 3.14, on Linux and macOS, plus the fuzzer under AddressSanitizer. The suites are the ones above — there is no CI-only test path, so a green run there means what a green run here means. More on the fuzzing.

HTTP/2 conformance is checked with h2spec, which is not vendored here:

peregrine --port 8443 --tls-cert cert.pem --tls-key key.pem examples.asgi_app:app &
h2spec -h 127.0.0.1 -p 8443 -t -k    # 146 tests, 146 passed

QUIC packet protection is checked against RFC 9001 appendix A directly: the key schedule, the header protection and the sample packets are the RFC's own bytes.


What is not

  • sendfile for wsgi.file_wrapper. The wrapper works and streams in chunks, but does not yet drop into sendfile(2) the way --static-dir does.
  • Byte ranges and directory indexes for --static-dir. It serves assets with an ETag and answers If-None-Match; it is not a file server.
  • Compressing --static-dir files on the fly. --compress-static serves copies compressed at build time; a file with no copy is sent as it is, which keeps sendfile(2) and keeps the CPU for requests.
  • SNI for HTTP/3. Several certificates are chosen by name over TCP; HTTP/3 serves the first pair whatever the client asks for, because the QUIC handshake here is built from the primitives rather than driven by OpenSSL.
  • QUIC connection migration across workers, and 0-RTT. A connection survives a change of address, but not a change of worker, and every handshake is a full one.
  • HTTP/3 server push, and WebSocket over HTTP/2 or HTTP/3. HTTP/3 advertises extended CONNECT because that is how WebTransport arrives; webtransport is the only :protocol served. HTTP/2 does not advertise it.
  • Windows. The I/O layer is epoll/kqueue.
  • Spans. --trace-context puts an incoming W3C trace on the access-log line and hands the header to the application untouched, and there are Prometheus metrics on --metrics-port, but the server records no OpenTelemetry spans of its own. The application's instrumentation is the right place for those, and there are good ones.

By default a synchronous WSGI application occupies its worker for the duration of the call. Scale with --workers, and with --wsgi-threads when the application spends its time waiting on I/O rather than on the CPU.

Download files

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

Source Distribution

peregrine_server-1.1.4.tar.gz (1.8 MB view details)

Uploaded Source

Built Distributions

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

peregrine_server-1.1.4-cp314-cp314t-manylinux_2_35_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.35+ x86-64

peregrine_server-1.1.4-cp314-cp314t-manylinux_2_35_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.35+ ARM64

peregrine_server-1.1.4-cp314-cp314-manylinux_2_35_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.35+ x86-64

peregrine_server-1.1.4-cp314-cp314-manylinux_2_35_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.35+ ARM64

peregrine_server-1.1.4-cp313-cp313-manylinux_2_35_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.35+ x86-64

peregrine_server-1.1.4-cp313-cp313-manylinux_2_35_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.35+ ARM64

peregrine_server-1.1.4-cp312-cp312-manylinux_2_35_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ x86-64

peregrine_server-1.1.4-cp312-cp312-manylinux_2_35_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ ARM64

peregrine_server-1.1.4-cp311-cp311-manylinux_2_35_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.35+ x86-64

peregrine_server-1.1.4-cp311-cp311-manylinux_2_35_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.35+ ARM64

File details

Details for the file peregrine_server-1.1.4.tar.gz.

File metadata

  • Download URL: peregrine_server-1.1.4.tar.gz
  • Upload date:
  • Size: 1.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.3

File hashes

Hashes for peregrine_server-1.1.4.tar.gz
Algorithm Hash digest
SHA256 404cd99f17a0487cb696b69121fbfbcae61f354d21a71c81863f447e15b5dc78
MD5 c114fc55d3b2590fb29a4c11a9808f77
BLAKE2b-256 0b8d1fca3320db22b757c82df9d47bd06f649327a8530e1bb0d38719dc31836a

See more details on using hashes here.

File details

Details for the file peregrine_server-1.1.4-cp314-cp314t-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for peregrine_server-1.1.4-cp314-cp314t-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 a1647cd81631d17e461c4b32b43ae9749abd1d6868cc93a457cd7cbf1303d045
MD5 a48d9cf62824e63e420585b84518a334
BLAKE2b-256 d8230bf31a649b6c012fab4ed45d9ec588118c8f8d3c0aa6ed5eff9504d152d2

See more details on using hashes here.

File details

Details for the file peregrine_server-1.1.4-cp314-cp314t-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for peregrine_server-1.1.4-cp314-cp314t-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 97994d9c48cb74c681902eb87e2f5b45891ce733112385de771c39ac5bde71c6
MD5 be09f4f10bd6f27f10595a679033e240
BLAKE2b-256 f92a4bcd80374a17744ab96e03b0b06d364037073179c51c3cb2880d382da7a2

See more details on using hashes here.

File details

Details for the file peregrine_server-1.1.4-cp314-cp314-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for peregrine_server-1.1.4-cp314-cp314-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 95bf79f40af830a096917ac1bf35715435b6ec26977daaad9b046dd27fd21e57
MD5 90016445af1b1b4f1df812ccefe89220
BLAKE2b-256 98b000f5bfb2a44cdda85e948e7b893c20f6693be578c20241691eab5ba5aae1

See more details on using hashes here.

File details

Details for the file peregrine_server-1.1.4-cp314-cp314-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for peregrine_server-1.1.4-cp314-cp314-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 ba3d505764fe51c266f4b50a99b2b7e4398a06021051e3beca3dc245af0de524
MD5 837c10b1ea13e9fc97e33bbd5f6666b1
BLAKE2b-256 2aa97c411f0d5e1988f2648454454d1cd3364c0f0555df2323b638cb987b3ff7

See more details on using hashes here.

File details

Details for the file peregrine_server-1.1.4-cp313-cp313-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for peregrine_server-1.1.4-cp313-cp313-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 fbe6b58de5fc1ed42f1b7137bd2d40a732e4be508f47e7fa4331e5f03c58c289
MD5 afb1fbac1ba34c993b79e847bbaabb08
BLAKE2b-256 cc793852aa9edd882d536dfc8cd9978497056361e23b9232a076de57ddfa0eee

See more details on using hashes here.

File details

Details for the file peregrine_server-1.1.4-cp313-cp313-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for peregrine_server-1.1.4-cp313-cp313-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 cff27c02079bfb11ca1fda67d47a8fe27420d7be602ac2510997d8b36a96fa21
MD5 ed3cf4412817ee4e6423add06c6b251f
BLAKE2b-256 79891377564901d0f2425605f8f2f69501de0e3c557f737c3a53dd7ec9d04035

See more details on using hashes here.

File details

Details for the file peregrine_server-1.1.4-cp312-cp312-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for peregrine_server-1.1.4-cp312-cp312-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 d2617a568e559835e3ac64e0d1190a35e500ee86406fcb335e21643a16513e22
MD5 8a267947e79cb5b3e2d0a0b6198f1d63
BLAKE2b-256 153bc7c1a096c11fc6ca18dfcd4f257a2987d33709219535402ac852d8af8a6d

See more details on using hashes here.

File details

Details for the file peregrine_server-1.1.4-cp312-cp312-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for peregrine_server-1.1.4-cp312-cp312-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 16d661ad7ca7d7cd0bdde7eaa910cdd27dfd1231a0d750728054593d4620769a
MD5 633f843904fd99b2c7625d60019ff441
BLAKE2b-256 e597505d5bacfbcfce43e526ba52152c48a377fc19d03404084276252419ad94

See more details on using hashes here.

File details

Details for the file peregrine_server-1.1.4-cp311-cp311-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for peregrine_server-1.1.4-cp311-cp311-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 3742c3bca6513ae1fe1d27f551568c768a512bd5e3bc3f9bf6bdce7ca99b158b
MD5 f9666b0f87465d3559f7d7336582dde8
BLAKE2b-256 14f84a1015ec6a20045bc584a97517d2ba0f8ef21c0108446351164fcf791ce3

See more details on using hashes here.

File details

Details for the file peregrine_server-1.1.4-cp311-cp311-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for peregrine_server-1.1.4-cp311-cp311-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 e65fabb05f97e04dd0e10bde1fa45b9ae13b19283d4bf5ca3fcf0eab8247b796
MD5 af2b44e9cbb4589abecc37fe6e8d2e08
BLAKE2b-256 e8907eae71f8d5ee060edb2c7a8673c4d1c9afbe0f027119672a7df1626b1146

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.1.4 This release

11 files

1.1.3

6 files

1.1.1

6 files

1.1.0

6 files

1.0.0

6 files

0.8.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page