Skip to main content

title: charded description: Type-safe, generic string/bytes container with charset detection

[ref: #charded]

charded

charded is a small Python library for working with str and bytes as a single, type-safe container. It detects charsets automatically, converts lazily between text and bytes, and proxies the familiar str API so the wrapper feels invisible.

It gives you four public entry points:

  • Str — a generic str | bytes container.
  • to_text — convert str or bytes to text.
  • to_bytes — convert str or bytes to bytes.
  • to_ascii — decode bytes to text with a default ASCII charset.

[ref: #installation]

Installation

Install with uv:

uv add charded

Or with any PEP 517-compatible tool:

pip install charded

[ref: #str]

Wrapping text and bytes with Str

Str[T] is parameterized by T, which is either str or bytes. Pass any str or bytes object and read it back through str(), bytes(), .string, or .bytes.

from charded import Str

s = Str(b"hello")
assert str(s) == "hello"
assert bytes(s) == b"hello"
assert s.string == "hello"
assert s.bytes == b"hello"

t = Str("héllo")
assert str(t) == "héllo"
assert bytes(t) == b"h\xc3\xa9llo"

[ref: #charset-detection]

Charset detection

Str detects the content charset using charset-normalizer, internal heuristics, and an adaptive binary-offset scan. Access .charset to see the result.

from charded import Str

assert Str(b"hello").charset == "ascii"
assert Str(b"hello\x00world").charset == "bin"

The detection order is:

  1. Explicit charset= argument if provided.
  2. Result from charset-normalizer.
  3. Internal heuristic scan.
  4. Fallback to ASCII for bytes or a compatible charset for text.

[ref: #mime-detection]

MIME type detection

Str.mime uses python-magic to sniff the content type and description. It returns None when detection fails.

from charded import Str

mime = Str(b'{"a": 1}').mime
assert mime is not None
assert mime["type"] == "application/json"

[ref: #string-api]

Using Str as a string

Str proxies common str operations, so you can slice, iterate, compare, and call most str methods directly.

from charded import Str

s = Str(b"hello world")

assert len(s) == 11
assert s[0:5] == "hello"
assert s.startswith("hello")
assert s.split() == ["hello", "world"]
assert s.upper() == "HELLO WORLD"
assert "world" in s

[ref: #tokenize]

Tokenizing with Str.tokenize

Str.tokenize splits the string using a regular expression. Capturing groups are not allowed; use non-capturing groups (?:...) instead.

from charded import Str

s = Str("foo-bar_baz, qux")
assert s.tokenize(r"[a-z]+") == ("foo", "bar", "baz", "qux")

[ref: #utility-functions]

Utility functions

to_text, to_bytes, and to_ascii perform quick conversions without creating a persistent Str instance.

from charded import to_ascii, to_bytes, to_text

assert to_text(b"hello") == "hello"
assert to_bytes("hello") == b"hello"
assert to_ascii(b"hello") == "hello"

[ref: #type-safety]

Type safety and aliases

Str is a true generic. Use Str[bytes] or Str[str] to constrain input and let type checkers catch mismatches at compile time.

from charded import Str


def process(data: Str[bytes]) -> str:
    return data.string.upper()


assert process(Str(b"hello")) == "HELLO"

Convenience aliases are available in charded.string:

from charded.string import StrBytes, StrText

raw: StrBytes = Str(b"hello")
text: StrText = Str(raw.string)

assert text.string == "hello"

[ref: #full-example]

Full example

from charded import Str, to_bytes, to_text

raw = b"h\xc3\xa9llo"

s = Str(raw)
assert str(s) == "héllo"
assert bytes(s) == raw
assert s.charset is not None
assert s.startswith("hél")

# Quick conversions without wrapping
assert to_text(raw) == "héllo"
assert to_bytes("héllo") == raw

Download files

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

Source Distribution

charded-1.0.3.tar.gz (22.9 kB view details)

Uploaded Source

Built Distribution

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

charded-1.0.3-py3-none-any.whl (10.8 kB view details)

Uploaded Python 3

File details

Details for the file charded-1.0.3.tar.gz.

File metadata

  • Download URL: charded-1.0.3.tar.gz
  • Upload date:
  • Size: 22.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for charded-1.0.3.tar.gz
Algorithm Hash digest
SHA256 bb929b7f09e400d5655982cc900f216c53aa1d2aa76ce07856fcd7e93d56e9fd
MD5 66b1dafc12e3146638a91226a228d12f
BLAKE2b-256 fb8f8543618d9db8536150f7ae882f7e598c9717347b2d271b47242585da106e

See more details on using hashes here.

File details

Details for the file charded-1.0.3-py3-none-any.whl.

File metadata

  • Download URL: charded-1.0.3-py3-none-any.whl
  • Upload date:
  • Size: 10.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for charded-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 e81618b7eb0c2d465ae78fa39389ea6edb1ce6a52c9bcf9aef1895399b77a84b
MD5 b6c7e9f997e528d308ee234a62773335
BLAKE2b-256 254311a6060f10027f190b3cf5befe044cc161dcdb410cff2fe7a57bf00287e4

See more details on using hashes here.

Release history Release notifications | RSS feed

1.2.0

2 files

1.1.1

2 files

1.1.0

2 files

1.0.4

2 files

This release

1.0.3 This release

2 files

1.0.2

2 files

1.0.1

2 files

1.0.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