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:

  • varchar — 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 varchar

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

from charded import varchar

s = varchar(b"hello")
assert str(s) == "hello"
assert bytes(s) == b"hello"
assert s.text == "hello"
assert s.bytes == b"hello"

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

[ref: #charset-detection]

Charset detection

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

from charded import varchar

assert varchar(b"hello").charset == "ascii"
assert varchar(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

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

from charded import varchar

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

[ref: #string-api]

Using varchar as a string

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

from charded import varchar

s = varchar(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 varchar.tokenize

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

from charded import varchar

s = varchar("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 varchar 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

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

from charded import varchar


def process(data: varchar[bytes]) -> str:
    return data.text.upper()


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

Convenience aliases are available in charded.varchar:

from charded.varchar import StrBytes, StrText

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

assert text.text == "hello"

[ref: #full-example]

Full example

from charded import varchar, to_bytes, to_text

raw = b"h\xc3\xa9llo"

s = varchar(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.1.1.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.1.1-py3-none-any.whl (11.0 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: charded-1.1.1.tar.gz
  • Upload date:
  • Size: 22.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","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.1.1.tar.gz
Algorithm Hash digest
SHA256 c1d7998d323287212747dad1dffe6e12881c3b6407bb832fe999378c651a63c1
MD5 a247983f982402ce214147ca3047c485
BLAKE2b-256 7c3ce2bebdc316955d4dae5c90161ec3a996e813d520b754fd007b4d0d4687c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: charded-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 11.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","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.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b7e28519b85feeaf00281fe6797d42b39c7dc1795667535b69e95c3057e6c619
MD5 8fece192349552e1cf17dffdda0652fe
BLAKE2b-256 410b61112d310ec0e449339e41bfe1da864dc762ce7b6b892b61b3f5daf99b31

See more details on using hashes here.

Release history Release notifications | RSS feed

1.2.0

2 files

This release

1.1.1 This release

2 files

1.1.0

2 files

1.0.4

2 files

1.0.3

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