Skip to main content

Xaeian

Python utilities. Zero dependencies for core. Optional extras for time, serial, media, database and more...

Philosophy

Xaeian wraps stdlib boilerplate into intent-level APIs. You read what code does, not how. In real projects this cuts ~35% of code volume.

This follows the Zen of Python:

  • Beautiful over ugly: Time() + "15m" vs datetime.now(tz=...) + timedelta(minutes=15)
  • Simple over complex: db.find_one("users", id=42) vs acquire/try/finally/dict/close
  • Flat over nested: DIR.zip(src, out) vs os.walk + zipfile + os.path.relpath loop
  • Readability counts: code reads like intentions, not implementation
  • One obvious way to do it: crc16_modbus.encode(frame), JSON.load(path), Time(ts).to("iso")
  • Errors should never pass silently: DatabaseError wraps driver exceptions with context
  • Namespaces are one honking great idea: FILE, DIR, PATH, CSV, JSON as static classes

Trade-offs:

  • Explicit over implicit: PATH.resolve auto-joins with CWD, db.insert auto-serializes dicts to JSON and ISO strings to datetime. Convenient in 95% of cases, surprising in the rest. Deliberate, and switchable where it gets in the way (auto_resolve=False).
  • Performance: an extra abstraction layer costs. Path resolution, auto-serialization and placeholder conversion run on every call. Negligible for APIs and tools, not for tight loops over millions of rows.

Type safety comes from Pydantic models and type hints on the application layer. Xaeian is the plumbing underneath. Each layer does one thing and stays out of the way. It fits best when you own the stack end-to-end and value compact code over configurability.

Install

pip install xaeian            # core
pip install xaeian[time]      # + pytz, tzlocal
pip install xaeian[serial]    # + pyserial
pip install xaeian[plot]      # + matplotlib
pip install xaeian[dsp]       # + scipy
pip install xaeian[db]        # + pymysql, psycopg2
pip install xaeian[db-async]  # + aiomysql, asyncpg, aiosqlite
pip install xaeian[media]     # + pypdf, PyMuPDF, Pillow
pip install xaeian[eda]       # + sexpdata, pypdf, PyMuPDF
pip install xaeian[sftp]      # + paramiko
pip install xaeian[all]       # everything

Examples

from xaeian import FILE, JSON, CSV, Time, logger, split_str, generate_password
from xaeian.crc import crc16_modbus
from xaeian.db import Database

# Files: auto extension, context-based paths
JSON.save("config", {"debug": True, "port": 8080})
CSV.save("users", [{"name": "Jan", "age": 30}, {"name": "Anna", "age": 25}])

# Time: parse anything, arithmetic with strings
t = Time("2025-03-01T00:00:00+01:00") + "2w 3d"
t.round("w")  # Monday 00:00
t.to("iso")   # "2025-03-18T00:00:00+01:00", the offset you gave is the offset you get

# CRC: encode/decode with Modbus, ISO, custom
frame = crc16_modbus.encode(b"\x01\x03\x00\x00\x00\x0A")
assert crc16_modbus.decode(frame) is not None

# String tools
split_str('a,"b,c",d', sep=",")  # ['a', '"b,c"', 'd']
generate_password(16)            # 'aB3$xY9!mN2@pQ7&'

# Database: sqlite/mysql/postgres, sync/async
db = Database("sqlite", "app.db")
db.insert("users", {"name": "Jan", "settings": {"theme": "dark"}})
db.find("users", order="name", limit=10)
with db.transaction():
  db.update("users", {"verified": True}, "id = ?", 42) # `?` on every backend

# Serial recorders: threaded read, latest value via .value
from xaeian.serial import Recorder
recs = [Recorder(p, name=n, regex=Recorder.SCI_NORM)
  for n, p in {"U1": "COM7", "I1": "COM8"}.items()]
for r in recs: r.start()  # background reader threads
...                       # app-side reap loop snapshots r.value (CSV, DB, MQTT)
for r in recs: r.stop()

# Plot: fluent, stacked panels, auto datetime
from xaeian.plot import Plot
(Plot(theme="dark")
  .line(t, temp, "Temperature [°C]")
  .panel()
  .line(t, hum, "Humidity [%]")
  .title("Sensors")
  .save("dashboard.png"))

# DSP: immutable signals, filters, FFT, vibration metrics
from xaeian.dsp import Signal
sig = Signal.from_accel(raw_x, fs=6666, bits=16, g_range=2)
clean = sig.highpass(10).lowpass(500)
print(f"RMS:{clean.rms:.4f}  peak_freq:{clean.fft().peak_freq:.0f}Hz")

# Binary structs: C-like encoding with CRC, bitfields, scale/offset
from xaeian.cstruct import Struct, Field, Bitfield, Type, Endian
from xaeian.crc import crc32_iso
pkt = Struct(endian=Endian.little, crc=crc32_iso)
pkt.add(
  Field(Type.uint32, "timestamp", "s"),
  Bitfield("flags", [("enabled", 1), ("error", 1), ("mode", 6)]),
  Field(Type.float, "temperature", "°C"),
)
flags = {"enabled": 1, "error": 0, "mode": 5}
raw = pkt.encode({"timestamp": 1234567890, "flags": flags, "temperature": 23.5})
pkt.decode(raw) # {"timestamp": 1234567890, "flags": {...}, "temperature": 23.5}

# Media: compress, strip metadata
from xaeian.media.min import compress
compress("report.pdf")            # → report-min.pdf
compress("photos/", max_px=1280)  # → photos-min/ (recursive)

# Logging: colored, rotating
log = logger("app", file="app.log")
log.inf("started") # 2025-03-01 14:32:01 INF started

CLI

xn tree .                       # directory tree
xn dupes photos/                # find duplicates
xn wifi                         # saved Wi-Fi passwords
xn fonts web/fonts/             # rename to {family}-{weight}
xn host 10.0.0.1 --drop         # drop a pinned SSH host key
xn min report.pdf               # compress PDF
xn min photo.jpg -f avif        # convert to AVIF
xn min photos/ --max-px 1280    # batch resize
xn meta photo.jpg -i            # strip EXIF in-place
xn ico logo.png -o favicon.ico  # multi-size .ico

Modules

Module Description Docs
files FILE, DIR, PATH, JSON, CSV, INI, YAML, async xaeian/files/readme.md
table Lightweight tabular ops on list[dict] xaeian/readme.md
xstring Split, replace, strip comments, passwords xaeian/readme.md
xtime Datetime parsing, arithmetic, rounding xaeian/readme.md
colors ANSI 256-color terminal codes xaeian/readme.md
log Colored logging with file rotation xaeian/readme.md
crc CRC-8/16/32 with predefined variants xaeian/readme.md
cstruct Binary struct serialization (C-like) xaeian/readme.md
cmd Shell command helpers xaeian/readme.md
serial Port, recorders with CSV logging, embedded shell client xaeian/serial/readme.md
plot Fluent matplotlib wrapper with stacked panels xaeian/readme.md
dsp Signal processing, SOS filters, FFT, vibration xaeian/readme.md
db Database abstraction (SQLite, MySQL, PostgreSQL) xaeian/db/readme.md
media Compress, convert, strip metadata (PDF & images) xaeian/media/readme.md
eda E-series, KiCad export, NgSpice runner xaeian/eda/readme.md
net Network clients (SFTP, FTP) xaeian/net/readme.md
cli Command-line utilities behind xn xaeian/cli/readme.md
cli tree, dupes, wifi, fonts, host, min, meta, ico xaeian/cli/readme.md

Download files

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

Source Distribution

xaeian-0.9.1.tar.gz (218.8 kB view details)

Uploaded Source

Built Distribution

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

xaeian-0.9.1-py3-none-any.whl (195.3 kB view details)

Uploaded Python 3

File details

Details for the file xaeian-0.9.1.tar.gz.

File metadata

  • Download URL: xaeian-0.9.1.tar.gz
  • Upload date:
  • Size: 218.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xaeian-0.9.1.tar.gz
Algorithm Hash digest
SHA256 4dcd6413973c040ab0837a9b9263b22bae67734ae245db9e6eeafe5dda27e834
MD5 c57192d4f056522681ac7c3a548bd6ea
BLAKE2b-256 19e33875fe54ec3ec8b64c0dab1d441a25a88ac7f8073195ab09bdbbaa3cd49e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xaeian-0.9.1.tar.gz:

Publisher: publish.yml on Xaeian/Python

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

File details

Details for the file xaeian-0.9.1-py3-none-any.whl.

File metadata

  • Download URL: xaeian-0.9.1-py3-none-any.whl
  • Upload date:
  • Size: 195.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for xaeian-0.9.1-py3-none-any.whl
Algorithm Hash digest
SHA256 88df57c55fe795df5d8c0fcbb7906b7af786bc048d8a8d755f09d32f91ca6344
MD5 4af148356660ba48468c9a2b1569662b
BLAKE2b-256 698588a0e820106fb84a360468804d05b209cd0c677431fe6274569a1c831552

See more details on using hashes here.

Provenance

The following attestation bundles were made for xaeian-0.9.1-py3-none-any.whl:

Publisher: publish.yml on Xaeian/Python

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

Release history Release notifications | RSS feed

0.9.3

2 files

0.9.2

2 files

This release

0.9.1 This release

2 files

0.9.0

2 files

0.8.2

2 files

0.8.1

2 files

0.8.0

2 files

0.7.5

2 files

0.7.4

2 files

0.7.3

2 files

0.7.2

2 files

0.7.1

2 files

0.7.0

2 files

0.6.2

2 files

0.6.1

2 files

0.6.0

2 files

0.5.3

2 files

0.5.2

2 files

0.5.1

2 files

0.5.0

2 files

0.4.1

2 files

0.4.0

2 files

0.3.0

2 files

0.2.0

2 files

0.1.0

2 files

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