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.0.tar.gz (313.7 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.0-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86-64

glitchlings-0.12.0-cp313-cp313-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

glitchlings-0.12.0-cp313-cp313-macosx_11_0_universal2.whl (1.6 MB view details)

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

glitchlings-0.12.0-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

glitchlings-0.12.0-cp312-cp312-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

glitchlings-0.12.0-cp312-cp312-macosx_11_0_universal2.whl (1.6 MB view details)

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

glitchlings-0.12.0-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

glitchlings-0.12.0-cp311-cp311-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

glitchlings-0.12.0-cp311-cp311-macosx_11_0_universal2.whl (1.6 MB view details)

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

glitchlings-0.12.0-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

glitchlings-0.12.0-cp310-cp310-manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

glitchlings-0.12.0-cp310-cp310-macosx_11_0_universal2.whl (1.6 MB view details)

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

File details

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

File metadata

  • Download URL: glitchlings-0.12.0.tar.gz
  • Upload date:
  • Size: 313.7 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.0.tar.gz
Algorithm Hash digest
SHA256 496d97e39a0e34882247b4ffc812b5488869a9ffe2a8088ca1bac63ae3263aba
MD5 a0e5c4d9ff736adbd438076f9dbfca1f
BLAKE2b-256 120c6dee1bd20560f9d56272cf93528c2e94f6573ed42601ffb7c41d2930e4e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for glitchlings-0.12.0.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.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for glitchlings-0.12.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 eaaaec393dd97f62cbdbffe874aa9b3cfa1527474a719c0dc1774728100869dc
MD5 a0bb6661c1c888d59a173c0a81c2756f
BLAKE2b-256 2803a29e29e84c038b517115e8c4d6d00aaa73e23886437724f05da0a5d682d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for glitchlings-0.12.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 10863815306bf9a19789d3ac4a4856ed8bd4803d1d75256feb131a270feb9fed
MD5 59912bff433c5206d7233d120f1b6af3
BLAKE2b-256 a352aefb62b898df1c6dd789b26fbd031515d6f2746d303337f5f654e0172b81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for glitchlings-0.12.0-cp313-cp313-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 4c8faf988050531ab7921ba6e64f91cbda7fffc67ff9fbfca63373beb62c6860
MD5 15b0df56bf00ae8f0d34b5c90fbcd550
BLAKE2b-256 6ba1bf86c1d14cf439b0f27a10e12a76425a35c25af42dc84d186b3a45648f0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for glitchlings-0.12.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 aaeff512d4b1c51fb3008c246a08dbdb63570e296b0328a9e743bf8fb7dd6386
MD5 85097ff2a00ebd168f0c6d8de5b3da2e
BLAKE2b-256 5af40848713bcb29a47befe2237463449a623a53747e6871b487ba8cdaca2d12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for glitchlings-0.12.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e14d347b28c5cd50d0de905bbe07230f999fd48fe59a499622631e1e43809a08
MD5 ecad18b414e29cd721a5b2873e6d9914
BLAKE2b-256 f1e9c5538744ab965de455e76da06d4d7e47b17a2724fdc4e349b3c2cd30f6f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for glitchlings-0.12.0-cp312-cp312-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 798233b223f1bb21b8c813592415e49187e0cad6116ad555f9d5bfbb796f963b
MD5 b37a0db6ba9e7014d42cfe7c789926b1
BLAKE2b-256 e701c51da5ce2988c028f2698d8930446e5b1f5d4f576ba793ee8e2820aaf37d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for glitchlings-0.12.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0c42a5424296c381c6dc27a487566b5396cc01674e4f023dd072d0e2a2248535
MD5 00ba555d155e0df09b8f5e6f36b95d33
BLAKE2b-256 bfcd017d63a0a624de0dc1ef5cf962b615fd59833129317b623ae1b223c69493

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for glitchlings-0.12.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3753cfc34a49954e169446e265cbc22c3b7ba8be2e6139d1f9694242d463831c
MD5 a770d75148ecbcceaed98d50ff3bf50e
BLAKE2b-256 ede1a5e18962f97086d992f79943633c73eea7b6776b21f01bcca1192e61594a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for glitchlings-0.12.0-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 8e22fd95a7bdaf03425ca6c59c5cad733f717a215cbb9978f8d037bdb6a21464
MD5 3d0c8dbed23a3e0963a606a604c9f61f
BLAKE2b-256 bde89208e367237ccd6002dee0f56bc6186b931a63dd984f57b2cd368a4b6a7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for glitchlings-0.12.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7b1319e6ca1d7fdb1d83d0da7a2c76ec0a6cfaa34c8b8a3009a49d10349d4edf
MD5 c5faf47d60a7785727049bc251114d26
BLAKE2b-256 8de929014b5ab14b9863e43cac08f19123da6b8e17e0a297e646aa55234c782b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for glitchlings-0.12.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d1a1ed56bc23930cef3ff73bf3d66cde654ecafc776a5af5aed401f81e1758f3
MD5 659929f121f0b9b240eb84576cbaff8c
BLAKE2b-256 8cec7cc1251db6758cf7946edf5127b6640fd5cc7382b2ae18e0e4c6a1b64aaa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for glitchlings-0.12.0-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 461067339526cb8b9a31bbc2f3b9141cc9cb1f3121b7c7312b51d35c91d0db29
MD5 ce02a366de7d99ef38a479f96aa66827
BLAKE2b-256 fb421dc93eefb4aa798b5f31a29b72f2a9d08f3b4a84f41048c698426bf76022

See more details on using hashes here.

Provenance

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