Skip to main content

Deterministic, high performance, principled natural language augmentation.

Project description

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

                        Every language game breeds monsters.

Python Versions PyPI version Wheel Linting and Typing
Entropy Budget Chaos Charm
Lore Compliance

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

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.

Quickstart

pip install -U glitchlings

The fastest way to get started is to ask my assistant, Auggie, to prepare a custom mix of glitchlings for you:

from glitchlings import Auggie, SAMPLE_TEXT

auggie = (
    Auggie(seed=404)
    .typo(rate=0.015)
    .confusable(rate=0.01)
    .homophone(rate=0.02)
)

print(auggie(SAMPLE_TEXT))

One morning, when Gregor Samsa woke from troubld dreams, he found himself transformed in his bed into a horible vermin. He layed on his armour-like back, and if he lifted his head a little he could see his brown belly, slightly domed and divided by arches into stiff sections. The bedding was hardly able to cover it and seemed ready to slide off any moment. His many legs, pitifully thin compared with the size of the rest of him, waved about helplessly as he looked.

You're more than welcome to summon them directly, if you're feeling brave:

from glitchlings import Gaggle, SAMPLE_TEXT, Typogre, Mim1c, Wherewolf

gaggle = Gaggle(
    [
        Typogre(rate=0.015),
        Mim1c(rate=0.01),
        Wherewolf(rate=0.02),
    ],
    seed=404
)

Consult the Glitchlings Usage Guide for end-to-end instructions spanning the Python API, CLI, and third-party integrations.

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:

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)
corrupted = gaggle("We Await Silent Tristero's Empire.")
print(corrupted)

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 (see the generated CLI reference in docs/cli.md for the full contract):

# Discover which glitchlings are currently on the loose.
glitchlings --list
 
# Review the full CLI contract.
glitchlings --help
 
# Run Typogre against the contents of a file and inspect the diff.
glitchlings -g typogre --input-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

# Emit an Attack summary with metrics and counts.
glitchlings --attack --sample

# Emit a full Attack report with tokens, token IDs, and metrics.
glitchlings --report --sample

Configuration Files

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

# Load a roster from a YAML attack configuration.
glitchlings --config experiments/chaos.yaml "Let slips the glitchlings of war"
# 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"]

Attack on Token

Looking to compare before/after corruption with metrics and stable seeds? Reach for the Attack helper, which bundles tokenization, metrics, and transcript batching into a single utility. It accepts plain list[str] batches, renders quick summary() reports, and can compare multiple tokenizers via Attack.compare(...) when you need a metrics matrix.

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

Typogre supports motor coordination weighting based on biomechanical research from the Aalto 136M Keystrokes dataset. Use motor_weighting="wet_ink" for uncorrected errors (cross-hand typos slip through) or motor_weighting="hastily_edited" for raw typing patterns before correction.

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.

Substitution Modes:

  • single_script (safest): Only same-script confusables (Latin→Latin variants)
  • mixed_script (default): Allow cross-script substitutions (Latin↔Cyrillic↔Greek)
  • compatibility: Include fullwidth, math alphanumerics, enclosed forms
  • aggressive: All confusable types combined

Locality Control: Caps consecutive substitutions at 3 by default to prevent "ransom note" effect. Set max_consecutive=0 to disable.

Script Affinity: In mixed_script mode, substitutions are weighted by visual plausibility (Latin↔Cyrillic: 0.9, Latin↔Greek: 0.8).

Hokey

She's soooooo coooool!

Passionista. Hokey gets a little excited and streeeeetches words for emphasis.

Apocryphal Glitchling contributed by Chloé Nunes

Scannequin

How can a computer need reading glasses?

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

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.

Placement Modes:

  • random (default): Insert between any adjacent non-whitespace characters
  • grapheme_boundary: Only insert at grapheme cluster boundaries (safer for rendering)
  • script_aware: ZWJ/ZWNJ only where linguistically meaningful (Arabic, Indic scripts, emoji)

Visibility Modes:

  • glyphless (default): True invisibles only (ZWSP, ZWNJ, ZWJ, WJ, CGJ, BOM)
  • with_joiners: Adds variation selectors VS1–VS16
  • semi_visible: Adds hair space, thin space, narrow NBSP

Safety: Caps consecutive insertions at 4 by default to prevent pathological sequences. Set max_consecutive=0 to disable.

Wherewolf

Did you hear what I heard?

Echo Chamber. Wherewolf swaps words with curated homophones so the text still sounds right while the spelling drifts. Groups are normalised to prevent duplicates and casing is preserved when substitutions fire.

Jargoyle

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

Sesquipedalianism. Jargoyle insufferably replaces words with synonyms at random, without regard for connotational or denotational differences.

Rushmore

I accidentally an entire word.

Tactical Scrambler. Rushmore randomly drops, duplicates, or swaps words in the text to simulate hasty writing, editing mistakes, or transmission errors.

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.

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.

References

Glitchlings incorporates research from the following sources:

  • Aalto 136M Keystrokes Dataset — Motor coordination weights for Typogre's biomechanically-informed error sampling:

    Dhakal, V., Feit, A. M., Kristensson, P. O., & Oulasvirta, A. (2018). Observations on Typing from 136 Million Keystrokes. Proceedings of the 2018 CHI Conference on Human Factors in Computing Systems (CHI '18), Article 646. https://doi.org/10.1145/3173574.3174220

  • Expressive Lengthening Research — Linguistic foundations for Hokey's stretchability scoring and site selection:

    Brody, S., & Diakopoulos, N. (2011). Cooooooooooooooollllllllllllll!!!!!!!!!!!!!!: Using Word Lengthening to Detect Sentiment in Microtext. Proceedings of the 2011 Conference on Empirical Methods in Natural Language Processing (EMNLP '11), 562–570. https://aclanthology.org/D11-1052

    Gray, B., Bruxvoort, C., Beigman Klebanov, B., & Leong, B. (2020). Expressive Lengthening in Social Media. Proceedings of the 12th Language Resources and Evaluation Conference (LREC 2020), 4517–4523. https://aclanthology.org/2020.lrec-1.556

  • OCR Degradation Modeling — Theoretical foundations for Scannequin's document-level corruption, burst error clustering, and segmentation failures:

    Kanungo, T., Haralick, R. M., & Phillips, I. (1994). Nonlinear Local and Global Document Degradation Models. International Journal of Imaging Systems and Technology, 5(3), 220–230. https://doi.org/10.1002/ima.1850050305

    Li, Y., Lopresti, D., Nagy, G., & Tompkins, A. (1996). Validation of Image Defect Models for Optical Character Recognition. IEEE Transactions on Pattern Analysis and Machine Intelligence, 18(2), 99–107. https://doi.org/10.1109/34.481540

    Kolak, O., & Resnik, P. (2002). OCR Error Correction Using a Noisy Channel Model. Proceedings of the Second International Conference on Human Language Technology Research (HLT '02), 257–262. https://dl.acm.org/doi/10.5555/1289189.1289227

  • OCR Evaluation Methodology — Benchmark methodology informing Scannequin's quality presets and parameter calibration:

    Rice, S. V., Jenkins, F. R., & Nartker, T. A. (1995). The Fourth Annual Test of OCR Accuracy. Technical Report 95-04, Information Science Research Institute, University of Nevada, Las Vegas. https://tesseract-ocr.github.io/docs/AT-1995.pdf

    Lucas, S. M., Panaretos, A., Sosa, L., Tang, A., Wong, S., & Young, R. (2005). ICDAR 2003 Robust Reading Competitions: Entries, Results, and Future Directions. International Journal on Document Analysis and Recognition, 7(2–3), 105–122. https://doi.org/10.1007/s10032-004-0134-3

  • Unicode Text Segmentation — Grapheme cluster boundary rules for Zeedub's grapheme_boundary placement mode:

    The Unicode Consortium. (2024). Unicode Standard Annex #29: Unicode Text Segmentation. https://www.unicode.org/reports/tr29/

  • Unicode Security Considerations — Default_Ignorable handling and safety constraints informing Zeedub's visibility classification and max_consecutive limits:

    The Unicode Consortium. (2014). Unicode Technical Report #36: Unicode Security Considerations. https://www.unicode.org/reports/tr36/

  • Unicode Confusables — Script-aware confusable character mappings for Mim1c's substitution modes and script classification:

    The Unicode Consortium. (2024). Unicode Technical Standard #39: Unicode Security Mechanisms. https://www.unicode.org/reports/tr39/

    The Unicode Consortium. (2024). Confusables Data File. https://www.unicode.org/Public/security/latest/confusables.txt

  • Hypercorrection Research — Sociolinguistic foundations for Pedant's coordinate-structure pronoun overcorrection and split infinitive patterns:

    Collins, P. (2022). Hypercorrection in English: an intervarietal corpus-based study. English Language & Linguistics, 26(2), 279–305. https://doi.org/10.1017/S1360674321000101

    Labov, W. (1966). Hypercorrection by the Lower Middle Class as a Factor in Linguistic Change. Sociolinguistic Patterns, 122–142. University of Pennsylvania Press.

    Angermeyer, P. S., & Singler, J. V. (2003). The case for politeness: Pronoun variation in co-ordinate NPs in object position in English. Language Variation and Change, 15(2), 171–209. https://doi.org/10.1017/S0954394503152027

Project details


Download files

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

Source Distribution

glitchlings-0.12.1.tar.gz (330.2 kB view details)

Uploaded Source

Built Distributions

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

glitchlings-0.12.1-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86-64

glitchlings-0.12.1-cp313-cp313-manylinux_2_28_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

glitchlings-0.12.1-cp313-cp313-macosx_11_0_universal2.whl (1.7 MB view details)

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

glitchlings-0.12.1-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

glitchlings-0.12.1-cp312-cp312-manylinux_2_28_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

glitchlings-0.12.1-cp312-cp312-macosx_11_0_universal2.whl (1.7 MB view details)

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

glitchlings-0.12.1-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

glitchlings-0.12.1-cp311-cp311-manylinux_2_28_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

glitchlings-0.12.1-cp311-cp311-macosx_11_0_universal2.whl (1.7 MB view details)

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

glitchlings-0.12.1-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86-64

glitchlings-0.12.1-cp310-cp310-manylinux_2_28_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

glitchlings-0.12.1-cp310-cp310-macosx_11_0_universal2.whl (1.7 MB view details)

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

File details

Details for the file glitchlings-0.12.1.tar.gz.

File metadata

  • Download URL: glitchlings-0.12.1.tar.gz
  • Upload date:
  • Size: 330.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for glitchlings-0.12.1.tar.gz
Algorithm Hash digest
SHA256 6ba5f2b865181046f92492011e2774afd4b90c6074e240b8b56c9c9be6bdca83
MD5 90726706cdeea864a41ad464b07efb28
BLAKE2b-256 fdaeb0f2a7a24dc44031d7870326fbfca9185e45ee5ee53631c37ae635e97d1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.12.1.tar.gz:

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.12.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for glitchlings-0.12.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9ba26481c829ac7e2aaebcb7edaa0cb65486f8e92b5903aded123c896cad3404
MD5 a0b2458df8e53eb5102ec1565f30a30c
BLAKE2b-256 4a89fad67c83277844ef56429ac4b82e7556e5aa9a854c20a0f6c489e140cda2

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.12.1-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.12.1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for glitchlings-0.12.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 410aec71c4ef2d83530ed7323b314b00901094b1ebe2e11c0de6fbd1734f9f4a
MD5 0fb9ee5becde498288df8cfc2b3fa05e
BLAKE2b-256 58f7f3b39ba2e704ff782c288b83256d319df4b11a88470fed45fbc1a2d30d61

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.12.1-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.12.1-cp313-cp313-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for glitchlings-0.12.1-cp313-cp313-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 4db333c56a068d672108a56a095c258b48d4838a19ffe2da492e0f488588a806
MD5 cd99415ccc63774a880b5fea830effae
BLAKE2b-256 d050dbdaa12602bb10db047cc3f3e8ece20ede6772efd1892222669439854d46

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.12.1-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.12.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for glitchlings-0.12.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c045bbb169dd130961da9388f190b38227c8725a8a0c20c031d90739e18db32f
MD5 8abab273918ed8391197cf83f1b144fd
BLAKE2b-256 5803c5be4b7de464360155e19d03f0dcb3767abf84ae48ab70de2beeccff377a

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.12.1-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.12.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for glitchlings-0.12.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f67548317d7edd39964967026da00db7e0c162601a88eb68b6feb42cc272166
MD5 f3834b35c078ce4e2c0494a4c5fd04c5
BLAKE2b-256 82aed407b3b174c872c4cc07586199378cf90e25539a9e5dce68a60aef245bf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.12.1-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.12.1-cp312-cp312-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for glitchlings-0.12.1-cp312-cp312-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 66f28d1d99a5204cc5515d407583c033979ca2c011b4920501ab3eee61b915de
MD5 225da13bdbf306f50a7335d5e8a0c4e2
BLAKE2b-256 54f1d659106618a4d9b7483bebc2d17b60347b00b273ddc5371ccf42c761b25b

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.12.1-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.12.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for glitchlings-0.12.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f301e58e86fa23f1d571803f48896daab56c8694e04c54924356a2f6173bad66
MD5 8af95f344b1dea741bb057fce6900e2f
BLAKE2b-256 4baa1d15f0d1c631b77b75b6bcc89af1579e6f0faf1a470d856c801746242e2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.12.1-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.12.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for glitchlings-0.12.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a9f2b0f3b21c136457e1cfe368d82ac208481b2428f16e2b0dea3cb0741d940
MD5 582901f97cf9d4b0484eaec3af315e33
BLAKE2b-256 75ecb000fd2b316b06cff02d67bc5234a49c7c12685450c9de9c61818879df8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.12.1-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.12.1-cp311-cp311-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for glitchlings-0.12.1-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 780df341db7ba4784c917b0b0178b51b64119581322ec0a3b4470bac4773a1cf
MD5 537d8250a2bf61d98409975c3c375da0
BLAKE2b-256 5a0420e580e8d0e821061b1bb201873f78fee5ef8ec087a0b5ff044c6d52e13a

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.12.1-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.12.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for glitchlings-0.12.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b4855a6f55cc4b74c60c0fb452cd49a1b6a5d730975e571c743150e2e14b05f3
MD5 f87a70e5d315126188f88a950050c96c
BLAKE2b-256 45748fb829bcfd28b6b370948527eebeebf908e6fe151c038d2e144bbb1d533d

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.12.1-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.12.1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for glitchlings-0.12.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4508fd1289148e3a4b8a507579f1477989fded4ee13edca06125b054d3064b0d
MD5 9c9895f5d6847e018392847df2ac02d6
BLAKE2b-256 8156ff0b3ae586811aac41f538deef525d669a7e86bb441df4273404255d531c

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.12.1-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.12.1-cp310-cp310-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for glitchlings-0.12.1-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 d35ee6ee820737a3d3af5a29dab77c22326906b02cdd492222e711c4ca17e8f0
MD5 03d7a00a55db5fbb85c89c548ba0656a
BLAKE2b-256 4a2bf5f9dcf8adceff67b09ec5789a33ce77d89c26d8add265f88ec8cf0c8598

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.12.1-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