All public logs

From wikiluntti

Combined display of all available logs of wikiluntti. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 17:14, 29 May 2026 Mol talk contribs created page AIS Save to database using Python (Created page with "== Introduction == Use ais_rtl and python to save data to db == Python == <syntaxhighlight lang="python"> import sys import sqlite3 from pyais.stream import IterMessages from datetime import datetime, timezone DB = "ais.db" conn = sqlite3.connect(DB) cur = conn.cursor() print("AIS logger started", flush=True) def clean_stream(): for line in sys.stdin.buffer: if not line: continue line = line.strip() if not line: c...")