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 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.
Or, the equivalent using Gaggle directly:
from glitchlings import Gaggle, SAMPLE_TEXT, Typogre, Mim1c, Ekkokin
gaggle = Gaggle(
[
Typogre(rate=0.015),
Mim1c(rate=0.01),
Ekkokin(rate=0.02),
],
seed=404
)
print(gaggle(SAMPLE_TEXT))
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:
- Document
- Paragraph
- Sentence
- Word
- 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
Hokey — scope: Character, order: first
Mim1c — scope: Character, order: last
Ekkokin — scope: Word, order: early
Pedant — scope: Word, order: late
Jargoyle — scope: Word, order: normal
Rushmore — scope: Word, order: normal
Redactyl — scope: Word, order: normal
Spectroll — 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 ...] {build-lexicon} ...
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.
{build-lexicon}
build-lexicon Generate synonym caches backed by vector embeddings.
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 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).
Hokey
She's soooooo coooool!
Passionista. Hokey sometimes gets a little excited and elongates words for emphasis.
Args
rate (float): Share of high-scoring tokens to stretch (default: 0.3).extension_min/extension_max (int): Bounds for extra repetitions (defaults: 2 / 5).word_length_threshold (int): Preferred maximum alphabetic length; longer words are damped instead of excluded (default: 6).base_p (float): Base probability for the heavy-tailed sampler (default: 0.45).seed (int): The random seed for reproducibility (default: 151).
Apocryphal Glitchling contributed by Chloé Nunes
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).
Ekkokin
Did you hear what I heard?
Echo Chamber. Ekkokin 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.
Args
rate (float): Maximum proportion of eligible words to replace with homophones (default: 0.02, 2%).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). Acceptswn.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).
Rushmore
I accidentally an entire word.
Tactical Scrambler. Rushmore now orchestrates the full word-level triad—deletions, duplications, and adjacent swaps—that previously lived in separate glitchlings. Select the behaviours you need with the
modesparameter (or pass"all") and Rushmore executes them in a deterministic order while sharing one RNG.Args
modes: Choose which word-level attacks to enable. Accepts"delete","duplicate","swap", any iterable of those tokens, a correspondingRushmoreMode, or the string"all".rate (float): Global rate applied when per-mode rates are unspecified (default: 0.01, 1%).delete_rate,duplicate_rate,swap_rate (float): Optional per-mode overrides.unweighted (bool): Apply uniform sampling to all modes (default: False).delete_unweighted,duplicate_unweighted (bool | None): Per-mode overrides for weighting strategy.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
nylingualbacktranslates portions of text.glothopperintroduces code-switching effects, blending languages or dialects.palimpsestrewrites, but leaves accidental traces of the past.vesuviusis an apocryphalGlitchlingwith 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
seedwhen you construct aGlitchling(or when yousummon(...)) makes its behavior reproducible. - Re-running a
Gagglewith the same master seed and the same input text (and same external data!) yields identical corruption output. - Corruption functions are written to accept an
rngparameter 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:
- Search for any direct calls to
random.choice,random.shuffle, orset(...)ordering without going through the providedrng. - Ensure you sort collections before shuffling or sampling.
- Make sure indices are chosen from a stable reference (e.g., original text) when applying length‑changing edits.
- Make sure there are enough sort keys to maintain stability.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file glitchlings-0.7.1-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: glitchlings-0.7.1-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d2a852753484098d1da9350e1af848db3b24bbf621abb41b01e06766140271c
|
|
| MD5 |
1e09b33e73293b1b6274519ada87dabf
|
|
| BLAKE2b-256 |
063c0fe996109ab6ea20b5257a19a87d4cbb36a4dc6a517378ddd11a75e3024a
|
Provenance
The following attestation bundles were made for glitchlings-0.7.1-cp313-cp313-win_amd64.whl:
Publisher:
publish.yml on osoleve/glitchlings
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
glitchlings-0.7.1-cp313-cp313-win_amd64.whl -
Subject digest:
2d2a852753484098d1da9350e1af848db3b24bbf621abb41b01e06766140271c - Sigstore transparency entry: 685837240
- Sigstore integration time:
-
Permalink:
osoleve/glitchlings@a4040c6e9f1d3bbf402578864e1ae8c6b4ccc687 -
Branch / Tag:
refs/tags/v0.7.1 - Owner: https://github.com/osoleve
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a4040c6e9f1d3bbf402578864e1ae8c6b4ccc687 -
Trigger Event:
push
-
Statement type:
File details
Details for the file glitchlings-0.7.1-cp313-cp313-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: glitchlings-0.7.1-cp313-cp313-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7006d4f36c2ff029e53fea038ce5c310cd1ac30870ae2909e23c816059b3d335
|
|
| MD5 |
092ee856df99974c5af8ad1210c48a4d
|
|
| BLAKE2b-256 |
92372eb12d5d6eda368afed4d2ca4fd0b5a165079f3cdf26e2e5d81ed1ab7f9d
|
Provenance
The following attestation bundles were made for glitchlings-0.7.1-cp313-cp313-manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on osoleve/glitchlings
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
glitchlings-0.7.1-cp313-cp313-manylinux_2_28_x86_64.whl -
Subject digest:
7006d4f36c2ff029e53fea038ce5c310cd1ac30870ae2909e23c816059b3d335 - Sigstore transparency entry: 685837235
- Sigstore integration time:
-
Permalink:
osoleve/glitchlings@a4040c6e9f1d3bbf402578864e1ae8c6b4ccc687 -
Branch / Tag:
refs/tags/v0.7.1 - Owner: https://github.com/osoleve
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a4040c6e9f1d3bbf402578864e1ae8c6b4ccc687 -
Trigger Event:
push
-
Statement type:
File details
Details for the file glitchlings-0.7.1-cp313-cp313-macosx_11_0_universal2.whl.
File metadata
- Download URL: glitchlings-0.7.1-cp313-cp313-macosx_11_0_universal2.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, macOS 11.0+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7fb3f155c56c25d52e5cd6aa7446a62b4b229ee8c9392531ebfd7ddc925a9ee
|
|
| MD5 |
c389e0383f8b58cdb86f5de5f067b8b0
|
|
| BLAKE2b-256 |
34f3aac2fa603afd8b7611135d9de8246fa1f219e6fccdb282c8be905831fca5
|
Provenance
The following attestation bundles were made for glitchlings-0.7.1-cp313-cp313-macosx_11_0_universal2.whl:
Publisher:
publish.yml on osoleve/glitchlings
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
glitchlings-0.7.1-cp313-cp313-macosx_11_0_universal2.whl -
Subject digest:
c7fb3f155c56c25d52e5cd6aa7446a62b4b229ee8c9392531ebfd7ddc925a9ee - Sigstore transparency entry: 685837241
- Sigstore integration time:
-
Permalink:
osoleve/glitchlings@a4040c6e9f1d3bbf402578864e1ae8c6b4ccc687 -
Branch / Tag:
refs/tags/v0.7.1 - Owner: https://github.com/osoleve
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a4040c6e9f1d3bbf402578864e1ae8c6b4ccc687 -
Trigger Event:
push
-
Statement type:
File details
Details for the file glitchlings-0.7.1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: glitchlings-0.7.1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f5bcd45cd544ad6def5db16fe63d39e3517a1222be1113cc1ff63a6be75bc89
|
|
| MD5 |
19352df143d23e7987b5d8ab3bb78738
|
|
| BLAKE2b-256 |
43733ef9c4a75e760da21540d8b4f8f5f5d5e8295de869701611890eca17fc5c
|
Provenance
The following attestation bundles were made for glitchlings-0.7.1-cp312-cp312-win_amd64.whl:
Publisher:
publish.yml on osoleve/glitchlings
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
glitchlings-0.7.1-cp312-cp312-win_amd64.whl -
Subject digest:
5f5bcd45cd544ad6def5db16fe63d39e3517a1222be1113cc1ff63a6be75bc89 - Sigstore transparency entry: 685837244
- Sigstore integration time:
-
Permalink:
osoleve/glitchlings@a4040c6e9f1d3bbf402578864e1ae8c6b4ccc687 -
Branch / Tag:
refs/tags/v0.7.1 - Owner: https://github.com/osoleve
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a4040c6e9f1d3bbf402578864e1ae8c6b4ccc687 -
Trigger Event:
push
-
Statement type:
File details
Details for the file glitchlings-0.7.1-cp312-cp312-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: glitchlings-0.7.1-cp312-cp312-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5612a6dc236eba2b3c5a87237b1df70c62c00d3a74c3a57372a808f09d2cb225
|
|
| MD5 |
6b4d25106e00ef929be823ab5f6c09f1
|
|
| BLAKE2b-256 |
48cd9c1641c55c4da77294ed52e784dd5d09f36ddf4971e8a1e5d3af7503f73e
|
Provenance
The following attestation bundles were made for glitchlings-0.7.1-cp312-cp312-manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on osoleve/glitchlings
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
glitchlings-0.7.1-cp312-cp312-manylinux_2_28_x86_64.whl -
Subject digest:
5612a6dc236eba2b3c5a87237b1df70c62c00d3a74c3a57372a808f09d2cb225 - Sigstore transparency entry: 685837245
- Sigstore integration time:
-
Permalink:
osoleve/glitchlings@a4040c6e9f1d3bbf402578864e1ae8c6b4ccc687 -
Branch / Tag:
refs/tags/v0.7.1 - Owner: https://github.com/osoleve
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a4040c6e9f1d3bbf402578864e1ae8c6b4ccc687 -
Trigger Event:
push
-
Statement type:
File details
Details for the file glitchlings-0.7.1-cp312-cp312-macosx_11_0_universal2.whl.
File metadata
- Download URL: glitchlings-0.7.1-cp312-cp312-macosx_11_0_universal2.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, macOS 11.0+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e055d272693c401cf4a6a3122c7a857065f240c73369d832ed969c0d36189d9f
|
|
| MD5 |
b6eeac1ffcf5889b327a9432ae05381a
|
|
| BLAKE2b-256 |
f5a5b43eeca675417c6193b4b9bacce2300f7e25914b03a0810ea1a870cac12c
|
Provenance
The following attestation bundles were made for glitchlings-0.7.1-cp312-cp312-macosx_11_0_universal2.whl:
Publisher:
publish.yml on osoleve/glitchlings
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
glitchlings-0.7.1-cp312-cp312-macosx_11_0_universal2.whl -
Subject digest:
e055d272693c401cf4a6a3122c7a857065f240c73369d832ed969c0d36189d9f - Sigstore transparency entry: 685837238
- Sigstore integration time:
-
Permalink:
osoleve/glitchlings@a4040c6e9f1d3bbf402578864e1ae8c6b4ccc687 -
Branch / Tag:
refs/tags/v0.7.1 - Owner: https://github.com/osoleve
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a4040c6e9f1d3bbf402578864e1ae8c6b4ccc687 -
Trigger Event:
push
-
Statement type:
File details
Details for the file glitchlings-0.7.1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: glitchlings-0.7.1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e39d48f536824ceddd2bdff6f6476f77228a9500b9fc00d8d40aebd98859eea1
|
|
| MD5 |
01a9f17bd2f3c595700e3de8d7c38b84
|
|
| BLAKE2b-256 |
583c7ae8e0e9c3862038656e351b66cbd01ed95354fad20c5ddf8f79815f932f
|
Provenance
The following attestation bundles were made for glitchlings-0.7.1-cp311-cp311-win_amd64.whl:
Publisher:
publish.yml on osoleve/glitchlings
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
glitchlings-0.7.1-cp311-cp311-win_amd64.whl -
Subject digest:
e39d48f536824ceddd2bdff6f6476f77228a9500b9fc00d8d40aebd98859eea1 - Sigstore transparency entry: 685837236
- Sigstore integration time:
-
Permalink:
osoleve/glitchlings@a4040c6e9f1d3bbf402578864e1ae8c6b4ccc687 -
Branch / Tag:
refs/tags/v0.7.1 - Owner: https://github.com/osoleve
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a4040c6e9f1d3bbf402578864e1ae8c6b4ccc687 -
Trigger Event:
push
-
Statement type:
File details
Details for the file glitchlings-0.7.1-cp311-cp311-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: glitchlings-0.7.1-cp311-cp311-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b44e87016f19fa500f9cdf9febcdb2d15a995630d80262f6dde255108cd17f0c
|
|
| MD5 |
601c08e5bc2301a37ec003668cf1e4de
|
|
| BLAKE2b-256 |
d6e8c27947e28436b71c312656b8f79ac752f090b51e4b52a63def945df97ab7
|
Provenance
The following attestation bundles were made for glitchlings-0.7.1-cp311-cp311-manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on osoleve/glitchlings
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
glitchlings-0.7.1-cp311-cp311-manylinux_2_28_x86_64.whl -
Subject digest:
b44e87016f19fa500f9cdf9febcdb2d15a995630d80262f6dde255108cd17f0c - Sigstore transparency entry: 685837232
- Sigstore integration time:
-
Permalink:
osoleve/glitchlings@a4040c6e9f1d3bbf402578864e1ae8c6b4ccc687 -
Branch / Tag:
refs/tags/v0.7.1 - Owner: https://github.com/osoleve
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a4040c6e9f1d3bbf402578864e1ae8c6b4ccc687 -
Trigger Event:
push
-
Statement type:
File details
Details for the file glitchlings-0.7.1-cp311-cp311-macosx_11_0_universal2.whl.
File metadata
- Download URL: glitchlings-0.7.1-cp311-cp311-macosx_11_0_universal2.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, macOS 11.0+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e97979791099f458f3b7d0ad6c08e1c11f199757d7f85d800945d21580e84f4
|
|
| MD5 |
b8ae8f1584d2854e323b603d44a3594e
|
|
| BLAKE2b-256 |
13b13c3f66f737beb487a817bdb7b5dc5527f14c74fd74ca652f809c7c107586
|
Provenance
The following attestation bundles were made for glitchlings-0.7.1-cp311-cp311-macosx_11_0_universal2.whl:
Publisher:
publish.yml on osoleve/glitchlings
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
glitchlings-0.7.1-cp311-cp311-macosx_11_0_universal2.whl -
Subject digest:
3e97979791099f458f3b7d0ad6c08e1c11f199757d7f85d800945d21580e84f4 - Sigstore transparency entry: 685837242
- Sigstore integration time:
-
Permalink:
osoleve/glitchlings@a4040c6e9f1d3bbf402578864e1ae8c6b4ccc687 -
Branch / Tag:
refs/tags/v0.7.1 - Owner: https://github.com/osoleve
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a4040c6e9f1d3bbf402578864e1ae8c6b4ccc687 -
Trigger Event:
push
-
Statement type:
File details
Details for the file glitchlings-0.7.1-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: glitchlings-0.7.1-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52c25deb8b4e7530569e62ad81a7f00ede8c2855b26a4a0a7e4ad38ddf6bf495
|
|
| MD5 |
1dbcae376730b40c367dc1b81040a165
|
|
| BLAKE2b-256 |
6b6c41ef865bbc9bbdac996cc50c6baaa489c36b12b161a74c7f9150adb417e9
|
Provenance
The following attestation bundles were made for glitchlings-0.7.1-cp310-cp310-win_amd64.whl:
Publisher:
publish.yml on osoleve/glitchlings
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
glitchlings-0.7.1-cp310-cp310-win_amd64.whl -
Subject digest:
52c25deb8b4e7530569e62ad81a7f00ede8c2855b26a4a0a7e4ad38ddf6bf495 - Sigstore transparency entry: 685837234
- Sigstore integration time:
-
Permalink:
osoleve/glitchlings@a4040c6e9f1d3bbf402578864e1ae8c6b4ccc687 -
Branch / Tag:
refs/tags/v0.7.1 - Owner: https://github.com/osoleve
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a4040c6e9f1d3bbf402578864e1ae8c6b4ccc687 -
Trigger Event:
push
-
Statement type:
File details
Details for the file glitchlings-0.7.1-cp310-cp310-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: glitchlings-0.7.1-cp310-cp310-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9840b0987df241408f98e38a059013fdb60bd2ea0892e868c2b84065f849a1d4
|
|
| MD5 |
e1d955c4c0b613f3771d18157817e8aa
|
|
| BLAKE2b-256 |
0988e802350b4ad80a616c16dd9325c183af0eccffd28f4c2e7ebfbbccb120c2
|
Provenance
The following attestation bundles were made for glitchlings-0.7.1-cp310-cp310-manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on osoleve/glitchlings
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
glitchlings-0.7.1-cp310-cp310-manylinux_2_28_x86_64.whl -
Subject digest:
9840b0987df241408f98e38a059013fdb60bd2ea0892e868c2b84065f849a1d4 - Sigstore transparency entry: 685837233
- Sigstore integration time:
-
Permalink:
osoleve/glitchlings@a4040c6e9f1d3bbf402578864e1ae8c6b4ccc687 -
Branch / Tag:
refs/tags/v0.7.1 - Owner: https://github.com/osoleve
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a4040c6e9f1d3bbf402578864e1ae8c6b4ccc687 -
Trigger Event:
push
-
Statement type:
File details
Details for the file glitchlings-0.7.1-cp310-cp310-macosx_11_0_universal2.whl.
File metadata
- Download URL: glitchlings-0.7.1-cp310-cp310-macosx_11_0_universal2.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, macOS 11.0+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b348b435fd578d7a82636e3c5c6ed03de093e2cd15c60be6b8cf4ae87ba29317
|
|
| MD5 |
df5dc0a5e0c4b2d56575b1f6f4fc03a5
|
|
| BLAKE2b-256 |
dd97d15053ae4a9b71b168e6a321bca370872308b45f29672d449567e26273da
|
Provenance
The following attestation bundles were made for glitchlings-0.7.1-cp310-cp310-macosx_11_0_universal2.whl:
Publisher:
publish.yml on osoleve/glitchlings
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
glitchlings-0.7.1-cp310-cp310-macosx_11_0_universal2.whl -
Subject digest:
b348b435fd578d7a82636e3c5c6ed03de093e2cd15c60be6b8cf4ae87ba29317 - Sigstore transparency entry: 685837243
- Sigstore integration time:
-
Permalink:
osoleve/glitchlings@a4040c6e9f1d3bbf402578864e1ae8c6b4ccc687 -
Branch / Tag:
refs/tags/v0.7.1 - Owner: https://github.com/osoleve
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a4040c6e9f1d3bbf402578864e1ae8c6b4ccc687 -
Trigger Event:
push
-
Statement type: