Documentation
DocumentationDiscussions
These docs are for v4. Click to read the latest docs for v2024.2.

Using Python

Python applications can log to Seq through the Python logging API or via HTTP and JSON.

seqlog

The seqlog package implements a Python logging adapter for Seq:

# Indexer-style
logging.info("Hello, %s!", "World")

# Message template style
logging.info("Hello, {name}!", name="World")

The detailed project documentation includes full configuration and usage examples.

The project is independently developed on GitHub.

HTTP/JSON

Python applications can alternatively use the HTTP API to post events as raw JSON documents.