{"library":"seqlog","title":"SeqLog","description":"SeqLog is a lightweight logging library that sends Python log messages to Seq, a structured log server. Current version 0.4.3, released July 2025. The library is actively maintained but sees infrequent releases.","language":"python","status":"active","last_verified":"Fri May 01","install":{"commands":["pip install seqlog"],"cli":null},"imports":["import seqlog"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import logging\nimport seqlog\n\n# Configure SeqLog: either via environment variables or parameters\nseqlog.log_to_seq(\n    server_url=os.environ.get('SEQ_SERVER_URL', 'http://localhost:5341'),\n    api_key=os.environ.get('SEQ_API_KEY', ''),\n    level=logging.INFO\n)\n\nlogger = logging.getLogger(__name__)\nlogger.info('Hello from SeqLog!')","lang":"python","description":"Basic setup sending logs to a Seq server. Uses environment variables for configuration.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}