Skip to main content

Monsters for your language games.

Project description

     .─') _                                       .─') _                  
    (  OO) )                                     ( OO ) )            
  ░██████  ░██ ░██   ░██               ░██       ░██ ░██                                 
 ░██   ░██ ░██       ░██               ░██       ░██                                     
░██        ░██ ░██░████████  ░███████ ░████████  ░██ ░██░████████   ░████████ ░███████  
░██  █████ ░██ ░██   ░██    ░██('─.░██ ░██    ░██ ░██ ░██░██    ░██ ░██.─')░██ ░██        
░██     ██ ░██ ░██   ░██    ░██( OO ) ╱░██    ░██ ░██ ░██░██    ░██ ░██(OO)░██ ░███████  
  ░██  ░███ ░██ ░██   ░██   ░██    ░██ ░██    ░██ ░██ ░██░██    ░██ ░██  o░███      ░██ 
  ░█████░█ ░██ ░██   ░████   ░███████  ░██    ░██ ░██ ░██░██    ░██  ░█████░██ ░███████  
                                                                    ░██            
                                                                ░███████             

                        Every language game breeds monsters.

Glitchlings are utilities for corrupting the text inputs to your language models in deterministic, linguistically principled ways.
Each embodies a different way that documents can be compromised in the wild.

If reinforcement learning environments are games, then Glitchlings are enemies to breathe new life into old challenges.

They do this by breaking surface patterns in the input while keeping the target output intact.

Some Glitchlings are petty nuisances. Some Glitchlings are eldritch horrors.
Together, they create truly nightmarish scenarios for your language models.

After all, what good is general intelligence if it can't handle a little chaos?

-The Curator

Quickstart

pip install -U glitchlings

Glitchlings requires Python 3.10 or newer.

from glitchlings import Gaggle, SAMPLE_TEXT, Typogre, Mim1c, Reduple, Rushmore

gaggle = Gaggle([
    Typogre(rate=0.03),
    Mim1c(rate=0.02),
    Reduple(seed=404),
    Rushmore(rate=0.02),
])

print(gaggle(SAMPLE_TEXT))

Onҽ m‎ھ‎rning, wһen Gregor Samƽa woke from trouble𝐝 𝑑reams, he found himself transformed in his bed into a horrible vermin‎٠‎ He l lay on his armour-like back, and if he lifted his head a little he could see his brown belly, slightlh domed and divided by arches ino stiff sections. The bedding was adly able to cover it and and seemed ready to slide off any moment. His many legxs, pitifully thin compared with the size of the the rest of him, waved about helplessly ashe looked looked.

Consult the Glitchlings Usage Guide for end-to-end instructions spanning the Python API, CLI, HuggingFace, PyTorch, and Prime Intellect integrations, and the autodetected Rust pipeline (enabled whenever the extension is present).

Motivation

If your model performs well on a particular task, but not when Glitchlings are present, it's a sign that it hasn't actually generalized to the problem.

Conversely, training a model to perform well in the presence of the types of perturbations introduced by Glitchlings should help it generalize better.

Your First Battle

Summon your chosen Glitchling (or a few, if ya nasty) and call it on your text or slot it into Dataset.map(...), supplying a seed if desired. Glitchlings are standard Python classes, so you can instantiate them with whatever parameters fit your scenario:

from glitchlings import Gaggle, Typogre, Mim1c

custom_typogre = Typogre(rate=0.1)
selective_mimic = Mim1c(rate=0.05, classes=["LATIN", "GREEK"])

gaggle = Gaggle([custom_typogre, selective_mimic], seed=99)
print(gaggle("Summoned heroes do not fear the glitch."))

Calling a Glitchling on a str transparently calls .corrupt(str, ...) -> str. This means that as long as your glitchlings get along logically, they play nicely with one another.

When summoned as or gathered into a Gaggle, the Glitchlings will automatically order themselves into attack waves, based on the scope of the change they make:

  1. Document
  2. Paragraph
  3. Sentence
  4. Word
  5. Character

They're horrible little gremlins, but they're not unreasonable.

Command-Line Interface (CLI)

Keyboard warriors can challenge them directly via the glitchlings command:

# Discover which glitchlings are currently on the loose.
glitchlings --list
   Typogre — scope: Character, order: early
Apostrofae — scope: Character, order: normal
     Mim1c — scope: Character, order: last
  Jargoyle — scope: Word, order: normal
     Adjax — scope: Word, order: normal
   Reduple — scope: Word, order: normal
  Rushmore — scope: Word, order: normal
  Redactyl — scope: Word, order: normal
Scannequin — scope: Character, order: late
    Zeedub — scope: Character, order: last
# Review the full CLI contract.
glitchlings --help
usage: glitchlings [-h] [-g SPEC] [-s SEED] [-f FILE] [--sample] [--diff]
                   [--list] [-c CONFIG]
                   [text]

Summon glitchlings to corrupt text. Provide input text as an argument, via
--file, or pipe it on stdin.

positional arguments:
  text                  Text to corrupt. If omitted, stdin is used or --sample
                        provides fallback text.

options:
  -h, --help            show this help message and exit
  -g SPEC, --glitchling SPEC
                        Glitchling to apply, optionally with parameters like
                        Typogre(rate=0.05). Repeat for multiples; defaults to
                        all built-ins.
  -s SEED, --seed SEED  Seed controlling deterministic corruption order
                        (default: 151).
  -f FILE, --file FILE  Read input text from a file instead of the command
                        line argument.
  --sample              Use the included SAMPLE_TEXT when no other input is
                        provided.
  --diff                Show a unified diff between the original and corrupted
                        text.
  --list                List available glitchlings and exit.
  -c CONFIG, --config CONFIG
                        Load glitchlings from a YAML configuration file.

Run python docs/build_cli_reference.py whenever you tweak the CLI so the README stays in sync with the actual output. The script executes the commands above and replaces the block between the markers automatically.

Prefer inline tweaks? You can still configure glitchlings directly in the shell:

# Run Typogre against the contents of a file and inspect the diff.
glitchlings -g typogre --file documents/report.txt --diff

# Configure glitchlings inline by passing keyword arguments.
glitchlings -g "Typogre(rate=0.05)" "Ghouls just wanna have fun"

# Pipe text straight into the CLI for an on-the-fly corruption.
echo "Beware LLM-written flavor-text" | glitchlings -g mim1c

# Load a roster from a YAML attack configuration.
glitchlings --config experiments/chaos.yaml "Let slips the glitchlings of war"

Attack configurations live in plain YAML files so you can version-control experiments without touching code:

# experiments/chaos.yaml
seed: 31337
glitchlings:
  - name: Typogre
    rate: 0.04
  - "Rushmore(rate=0.12, unweighted=True)"
  - name: Zeedub
    parameters:
      rate: 0.02
      characters: ["\u200b", "\u2060"]

Pass the file to glitchlings --config or load it from Python with glitchlings.load_attack_config and glitchlings.build_gaggle.

Development

Follow the development setup guide for editable installs, automated tests, and tips on enabling the Rust pipeline while you hack on new glitchlings.

Starter 'lings

For maintainability reasons, all Glitchling have consented to be given nicknames once they're in your care. See the Monster Manual for a complete bestiary.

Typogre

What a nice word, would be a shame if something happened to it.

Fatfinger. Typogre introduces character-level errors (duplicating, dropping, adding, or swapping) based on the layout of a keyboard (QWERTY by default, with Dvorak and Colemak variants built-in).

Args

  • rate (float): The maximum number of edits to make as a percentage of the length (default: 0.02, 2%).
  • keyboard (str): Keyboard layout key-neighbor map to use (default: "CURATOR_QWERTY"; also accepts "QWERTY", "DVORAK", "COLEMAK", and "AZERTY").
  • seed (int): The random seed for reproducibility (default: 151).

Apostrofae

It looks like you're trying to paste some text. Can I help?

Paperclip Manager. Apostrofae scans for balanced runs of straight quotes, apostrophes, and backticks before replacing them with randomly sampled smart-quote pairs from a curated lookup table. The swap happens in-place so contractions and unpaired glyphs remain untouched.

Args

  • seed (int): Optional seed controlling the deterministic smart-quote sampling (default: 151).

Mim1c

Wait, was that...?

Confusion. Mim1c replaces non-space characters with Unicode Confusables, characters that are distinct but would not usually confuse a human reader.

Args

  • rate (float): The maximum proportion of characters to replace (default: 0.02, 2%).
  • classes (list[str] | "all"): Restrict replacements to these Unicode script classes (default: ["LATIN", "GREEK", "CYRILLIC"]).
  • banned_characters (Collection[str]): Characters that must never appear as replacements (default: none).
  • seed (int): The random seed for reproducibility (default: 151).

Scannequin

How can a computer need reading glasses?

OCR Artifacts. Scannequin mimics optical character recognition errors by swapping visually similar character sequences (like rn↔m, cl↔d, O↔0, l/I/1).

Args

  • rate (float): The maximum proportion of eligible confusion spans to replace (default: 0.02, 2%).
  • seed (int): The random seed for reproducibility (default: 151).

Zeedub

Watch your step around here.

Invisible Ink. Zeedub slips zero-width codepoints between non-space character pairs, forcing models to reason about text whose visible form masks hidden glyphs.

Args

  • rate (float): Expected number of zero-width insertions as a proportion of eligible bigrams (default: 0.02, 2%).
  • characters (Sequence[str]): Optional override for the pool of zero-width strings to inject (default: curated invisibles such as U+200B, U+200C, U+200D, U+FEFF, U+2060).
  • seed (int): The random seed for reproducibility (default: 151).

Jargoyle

Uh oh. The worst person you know just bought a thesaurus.

Sesquipedalianism. Jargoyle, the insufferable Glitchling, replaces words from selected parts of speech with synonyms at random, without regard for connotational or denotational differences.

Args

  • rate (float): The maximum proportion of words to replace (default: 0.01, 1%).
  • part_of_speech: The WordNet-style part(s) of speech to target (default: nouns). Accepts wn.NOUN, wn.VERB, wn.ADJ, wn.ADV, any iterable of those tags, or the string "any" to include them all. Vector/graph backends ignore this filter while still honouring deterministic sampling.
  • seed (int): The random seed for reproducibility (default: 151).

Reduple

Did you say that or did I?

Broken Record. Reduple stutters through text by randomly reduplicating words. Like a nervous speaker, it creates natural repetitions that test a model's ability to handle redundancy without losing the thread.

Args

  • rate (float): The maximum proportion of words to reduplicate (default: 0.01, 1%).
  • unweighted (bool): Sample words uniformly instead of favouring shorter tokens (default: False).
  • seed (int): The random seed for reproducibility (default: 151).

Rushmore

I accidentally an entire word.

Hasty Omission. The evil (?) twin of reduple, Rushmore moves with such frantic speed that it causes words to simply vanish from existence as it passes.

Args

  • rate (float): The maximum proportion of words to delete (default: 0.01, 1%).
  • unweighted (bool): Sample words uniformly instead of favouring shorter tokens (default: False).
  • seed (int): The random seed for reproducibility (default: 151).

Adjax

Keep your hands and punctuation where I can see them.

Perfect Shuffle. Adjax trades the cores of neighbouring words while leaving punctuation, casing, and surrounding whitespace untouched, turning fluent prose into locally scrambled tongue-twisters.

Args

  • rate (float): Probability that each adjacent pair swaps cores (default: 0.5, 50%).
  • swap_rate (float): Alias for rate, retained for backward compatibility.
  • seed (int): The random seed for reproducibility (default: 151).

Redactyl

Oops, that was my black highlighter.

FOIA Reply. Redactyl obscures random words in your document like an NSA analyst with a bad sense of humor.

Args

  • replacement_char (str): The character to use for redaction (default: FULL_BLOCK).
  • rate (float): The maximum proportion of words to redact (default: 0.025, 2.5%).
  • merge_adjacent (bool): Whether to redact the space between adjacent redacted words (default: False).
  • unweighted (bool): Sample words uniformly instead of biasing toward longer tokens (default: False).
  • seed (int): The random seed for reproducibility (default: 151).

Field Report: Uncontained Specimens

Containment procedures pending

  • ekkokin substitutes words with homophones (phonetic equivalents).
  • nylingual backtranslates portions of text.
  • glothopper introduces code-switching effects, blending languages or dialects.
  • palimpsest rewrites, but leaves accidental traces of the past.
  • vesuvius is an apocryphal Glitchling with ties to [Nosy, aren't we? -The Curator]

Apocrypha

Cave paintings and oral tradition contain many depictions of strange, otherworldly Glitchlings.
These Apocryphal Glitchling are said to possess unique abilities or behaviors.
If you encounter one of these elusive beings, please document your findings and share them with The Curator.

Ensuring Reproducible Corruption

Every Glitchling should own its own independent random.Random instance. That means:

  • No random.seed(...) calls touch Python's global RNG.
  • Supplying a seed when you construct a Glitchling (or when you summon(...)) makes its behavior reproducible.
  • Re-running a Gaggle with the same master seed and the same input text (and same external data!) yields identical corruption output.
  • Corruption functions are written to accept an rng parameter internally so that all randomness is centralized and testable.

At Wits' End?

If you're trying to add a new glitchling and can't seem to make it deterministic, here are some places to look for determinism-breaking code:

  1. Search for any direct calls to random.choice, random.shuffle, or set(...) ordering without going through the provided rng.
  2. Ensure you sort collections before shuffling or sampling.
  3. Make sure indices are chosen from a stable reference (e.g., original text) when applying length‑changing edits.
  4. Make sure there are enough sort keys to maintain stability.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

glitchlings-0.4.4-cp313-cp313-win_amd64.whl (928.4 kB view details)

Uploaded CPython 3.13Windows x86-64

glitchlings-0.4.4-cp313-cp313-manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

glitchlings-0.4.4-cp313-cp313-macosx_11_0_universal2.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ universal2 (ARM64, x86-64)

glitchlings-0.4.4-cp312-cp312-win_amd64.whl (928.7 kB view details)

Uploaded CPython 3.12Windows x86-64

glitchlings-0.4.4-cp312-cp312-manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

glitchlings-0.4.4-cp312-cp312-macosx_11_0_universal2.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ universal2 (ARM64, x86-64)

glitchlings-0.4.4-cp311-cp311-win_amd64.whl (927.8 kB view details)

Uploaded CPython 3.11Windows x86-64

glitchlings-0.4.4-cp311-cp311-manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

glitchlings-0.4.4-cp311-cp311-macosx_11_0_universal2.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ universal2 (ARM64, x86-64)

glitchlings-0.4.4-cp310-cp310-win_amd64.whl (927.8 kB view details)

Uploaded CPython 3.10Windows x86-64

glitchlings-0.4.4-cp310-cp310-manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

glitchlings-0.4.4-cp310-cp310-macosx_11_0_universal2.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ universal2 (ARM64, x86-64)

File details

Details for the file glitchlings-0.4.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: glitchlings-0.4.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 928.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for glitchlings-0.4.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ec836e1c2efff99dc5a34eded07ebc7685c91a2e4ab2ce9076eaa677937a763b
MD5 cd39626106caae00afe57559ef08aeb6
BLAKE2b-256 d525d62add0a7e6ec2ebc65979d4e26a4410d445da97af58bbd2214cd0f4664e

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.4.4-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on osoleve/glitchlings

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

File details

Details for the file glitchlings-0.4.4-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for glitchlings-0.4.4-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 13fea8aece3eb48aaa7b8b3dc93ce9333fc372f221d4e263e6468a40a1d4476f
MD5 c6a92f296b23023e2793d5cb2e67bc7b
BLAKE2b-256 2f84c777b775c46c4f6e31980e9853f8b3e4ab62d4aafb6b15ead68f8965e23d

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.4.4-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on osoleve/glitchlings

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

File details

Details for the file glitchlings-0.4.4-cp313-cp313-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for glitchlings-0.4.4-cp313-cp313-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 a18b1090b8a6ba94a73f7c23779696deec5edad6afe80f777a9097ef6bd0bae3
MD5 a88d93e8032ac90dc7c904770d109664
BLAKE2b-256 39b4762ebc80dea3bd3060edabe644f08362786e6c36668c362bb39b0109f0b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.4.4-cp313-cp313-macosx_11_0_universal2.whl:

Publisher: publish.yml on osoleve/glitchlings

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

File details

Details for the file glitchlings-0.4.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: glitchlings-0.4.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 928.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for glitchlings-0.4.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7f134157ada5374d5d94606b75c173ff45761ce890da793574baef92c0cdb3e7
MD5 53da9df7b138c7902600c854a23788cb
BLAKE2b-256 dbf977b80970ba0ec381efbe50954c1b304097b22cf5e51941127219943412a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.4.4-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on osoleve/glitchlings

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

File details

Details for the file glitchlings-0.4.4-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for glitchlings-0.4.4-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 09788bac640d4732f618157e347071b7b66a512c734023471ee59da821467729
MD5 c2ce468b5073f7d29edecb940d933121
BLAKE2b-256 03467b8e3743ed26abf7a1d95820492e3db82619b4ac812de12003de89344f70

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.4.4-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on osoleve/glitchlings

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

File details

Details for the file glitchlings-0.4.4-cp312-cp312-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for glitchlings-0.4.4-cp312-cp312-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 af49f1ebf6fec93ddd3069ea0bcea2e508c77a2a91d3a0d251193861b6a6f232
MD5 284e12cfdcef56bd21ca1447a5701dff
BLAKE2b-256 19f00b4d0a5cd90a56d5f4e926de70f9aee664d62013927a93a2fd20d02fa56f

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.4.4-cp312-cp312-macosx_11_0_universal2.whl:

Publisher: publish.yml on osoleve/glitchlings

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

File details

Details for the file glitchlings-0.4.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: glitchlings-0.4.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 927.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for glitchlings-0.4.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f7ca238b2cca622924a93391fbf6ebfa4ef12c28b1464562c1b73adb8eb33192
MD5 f5d943f60412c360aec0465b63dcf3ad
BLAKE2b-256 915c0624294a4c8841a084d42e69d31fdcffad3ad42592ee40b7c3d633f451b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.4.4-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on osoleve/glitchlings

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

File details

Details for the file glitchlings-0.4.4-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for glitchlings-0.4.4-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f47831f9ad85b343c75fc381690f464cf3c798cde089773e4aeb64b21204ab4e
MD5 3c225fb199ee3d6c61ff38465966aa7c
BLAKE2b-256 f6345698cc0534548f3132cdf2885b13c421c34d0fcbe4c68c1d0dbdd28bf1c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.4.4-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on osoleve/glitchlings

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

File details

Details for the file glitchlings-0.4.4-cp311-cp311-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for glitchlings-0.4.4-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 5286f3bb250605ec29418c674e333b45ba0f6b340091f53ce4228726a7baee77
MD5 d0d27e909fed36d04ccf9d25bfe2d60c
BLAKE2b-256 dfe355ca01e82f4126d9599cc2bdfdb7b747a13d2ea6923dfab4ef741590abe3

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.4.4-cp311-cp311-macosx_11_0_universal2.whl:

Publisher: publish.yml on osoleve/glitchlings

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

File details

Details for the file glitchlings-0.4.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: glitchlings-0.4.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 927.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for glitchlings-0.4.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2fe316a14f9ae48c542d40856e033d2680900b245ccef396ca06a41a6fc84b4a
MD5 f309f1aaeeef3d823985f8f9df7d5c59
BLAKE2b-256 a5bbc8a38a9df7f616def5091d20a47030422089d449c8b274dc499501d3c701

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.4.4-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on osoleve/glitchlings

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

File details

Details for the file glitchlings-0.4.4-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for glitchlings-0.4.4-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ad4b01b1a0d05e0cd41209f55032c253228b3bb52ed4a7d43bcbb6cf287326ba
MD5 9da4108a872675e8b8f4b5122e2b3631
BLAKE2b-256 25bd0adc4c1740eb8dd445784911daa01d360a6437fc3bfaf6d28a4e9219956b

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.4.4-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on osoleve/glitchlings

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

File details

Details for the file glitchlings-0.4.4-cp310-cp310-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for glitchlings-0.4.4-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 30b079076f83a4def0dd4581adcc7cfcdc023af0005dbb4dfd8735c783dc82e4
MD5 4050ce73d802524dedf0275e259dc5f5
BLAKE2b-256 7e450ed0be4e56360ead74a3b6fe30ebef984b83184874e59e88d9b9ca4fb617

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.4.4-cp310-cp310-macosx_11_0_universal2.whl:

Publisher: publish.yml on osoleve/glitchlings

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page