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-1.0.0.tar.gz (331.1 kB view details)

Uploaded Source

Built Distributions

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

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

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

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

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

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

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

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

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

glitchlings-1.0.0-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-1.0.0.tar.gz.

File metadata

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

File hashes

Hashes for glitchlings-1.0.0.tar.gz
Algorithm Hash digest
SHA256 cc5af16ca13f7ecd90a782678fe9eb361affda5298b5527406ea3e1a1ff3eef4
MD5 e1373481b235a53aa2130ddc0760985e
BLAKE2b-256 7cd70955b9bbf537cc0c939fb4f879e2cfc6f92b938a48d8d9018a1ad2c67e03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for glitchlings-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8813fb050c7cd37d7cd9a19e8fd940fcf02f7f32291f3b3a72b8d267f0e959e1
MD5 8e49400f5abe250c6a521f0336eb2bfe
BLAKE2b-256 93ac26b3d30ac8c7841a8c321c03a0ac7263310ffcd2386030ee2cd482517d0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for glitchlings-1.0.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b2cb64edac91199ad5810053241e63e727f955a00108fd2930b91a603d43b442
MD5 be092294dd4dd6a89e56ffd41db4c720
BLAKE2b-256 b4ab7c5b29957aaba577df3965a3b52dd5e82cd2679e363f29a0c07ecae3445b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for glitchlings-1.0.0-cp313-cp313-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 28f60005da6c1ae24ac39254e37f675c0ca1d9c5c377bd0ba49ea0297246dda8
MD5 a9e18508b5ad4f9d56b73e448638bc77
BLAKE2b-256 cc2c1f44acf74928f5e3b74a6d6d7efc2d2d49d6cefa27d2285d003a29851b8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for glitchlings-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f8728267e9e098fb86b6e1edd4027c0e467a41defaf6536e61838f30ffa069b3
MD5 ba92345ad7434ed0eabe944b81a84346
BLAKE2b-256 0c9ec1de0e1e3fbfbcd8956a2ea7f67370bcb3aa33362536b727eb612f166a72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for glitchlings-1.0.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f93c0c6eefedabec242673fce19fdee7360346e9d572e2750a1e2a7d558dc86
MD5 2702e552a2519cac0c592439a73a4bfb
BLAKE2b-256 3a9762b77d0a21c92979196dc47bac1f85b2ec9d85719b800f9d06c9e81d2fb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for glitchlings-1.0.0-cp312-cp312-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 29a6b562e8ea700a4e53a3e6abd257392cf5955e6ce878f484563468b7bb6a27
MD5 00ebfa4c096611c0aae7c8d4cacfb704
BLAKE2b-256 3b584e5302a668048ded616a7f27da3334b5ff8a259dc2480c7c5eaf719b04c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for glitchlings-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 56224e9bef6b7317bad4ebd6ffd8c74f9fcb7d1ab04a43bf6273b7b906cedd8b
MD5 3bc4076dd4bb7a78d586ce7c0d5933db
BLAKE2b-256 d416cbfd0f8a737f27769fbb90b2ab573acbe3e1cfcb01ee9dba14bd69ae67af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for glitchlings-1.0.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f61db3e08b201700b390cb360bf1ccd36ee9e696ae5068faed5d3ae018675b9
MD5 58793435255e3296d3d1f120fa6d1428
BLAKE2b-256 96561ccf4088132ec8c6e1c7d513f3b0715c92b3dd996c40cafac7695323db4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for glitchlings-1.0.0-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 08730d4f91a6b01a431cccaa6657b73754002b23051e760a34a27f8e1f5a9e76
MD5 07263ab8bfcb78ba8935365afb58da00
BLAKE2b-256 4a394c9441c448a912082407c97d012695471712da1e955c1d5a713d66d37b4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for glitchlings-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9bfacbdc6a19cca2b8c5c9e3bca70039cdde91b896bcd40d3d4224cd643cc381
MD5 2dd63ca0f41f8359ddb91bb96cf6a0ef
BLAKE2b-256 4b77374f18aa1d0b3fc8c82433982f1f2aeec49dc76f216cb0f04c43999b0b1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for glitchlings-1.0.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dcf14f8cf6b4cf0a69a8e5978da684a7f8cb03925d0fbb5bec02a11be4dd9a6e
MD5 6f855c269eb856d9c76e4169e715f222
BLAKE2b-256 832b2f6273cd689c858b863b7c2055c8751201e97e276c90484cdfa40edfff08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for glitchlings-1.0.0-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 de83d005d891d4bc16c52f805422d43e57f0560a27628bb5cc07f7b8832957e5
MD5 26e00d991704f546f16c3629c8c93749
BLAKE2b-256 c0df212723ed6810ce3155eff0debac91566992d59839a4a5f5a96784a166fc4

See more details on using hashes here.

Provenance

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