Fake data at the speed of Rust
Project description
forgery
Fake data at the speed of Rust.
A high-performance fake data generation library for Python, powered by Rust. Designed to be 50-100x faster than Faker for batch operations.
Installation
# Clone and install from source
git clone https://github.com/williajm/forgery.git
cd forgery
pip install maturin
maturin develop --release
Quick Start
from forgery import fake
# Generate 10,000 names in one fast call
names = fake.names(10_000)
# Single values work too
email = fake.email()
name = fake.name()
# Deterministic output with seeding
fake.seed(42)
data1 = fake.names(100)
fake.seed(42)
data2 = fake.names(100)
assert data1 == data2
Features
- Batch-first design: Generate thousands of values in a single call
- 50-100x faster than Faker for batch operations
- Multi-locale support: 7 locales with locale-specific data
- Deterministic seeding: Reproducible output for testing
- Type hints: Full type stub support for IDE autocompletion
- Familiar API: Method names match Faker for easy migration
Locale Support
forgery supports 7 locales with locale-specific names, addresses, phone numbers, and more:
| Locale | Language | Country |
|---|---|---|
en_US |
English | United States (default) |
en_GB |
English | United Kingdom |
de_DE |
German | Germany |
fr_FR |
French | France |
es_ES |
Spanish | Spain |
it_IT |
Italian | Italy |
ja_JP |
Japanese | Japan |
from forgery import Faker
# Default locale is en_US
fake = Faker()
fake.names(5) # American names
# Use a different locale
german = Faker("de_DE")
german.names(5) # German names
japanese = Faker("ja_JP")
japanese.addresses(3) # Japanese addresses with prefecture
Each locale provides:
- Names: First names, last names, and full names in the local language
- Addresses: Cities, regions/states, postal codes in the correct format
- Phone numbers: Country-specific formats and country codes
- Companies: Local company names and job titles
- Colors: Color names in the local language
API
Module-level functions (use default instance)
from forgery import seed, names, emails, integers, uuids
seed(42) # Seed for reproducibility
# Batch generation (fast path)
names(1000) # list[str] of full names
emails(1000) # list[str] of email addresses
integers(1000, 0, 100) # list[int] in range
uuids(1000) # list[str] of UUIDv4
# Single values
name() # str
email() # str
integer(0, 100) # int
uuid() # str
Faker class (independent instances)
from forgery import Faker
# Each instance has its own RNG state
fake1 = Faker()
fake2 = Faker()
fake1.seed(42)
fake2.seed(99)
# Generate independently
fake1.names(100)
fake2.emails(100)
Available Generators
Names & Identity
| Batch | Single | Description |
|---|---|---|
names(n) |
name() |
Full names (first + last) |
first_names(n) |
first_name() |
First names |
last_names(n) |
last_name() |
Last names |
Contact Information
| Batch | Single | Description |
|---|---|---|
emails(n) |
email() |
Email addresses |
safe_emails(n) |
safe_email() |
Safe domain emails (@example.com, etc.) |
free_emails(n) |
free_email() |
Free provider emails (@gmail.com, etc.) |
phone_numbers(n) |
phone_number() |
Phone numbers in (XXX) XXX-XXXX format |
Numbers & Identifiers
| Batch | Single | Description |
|---|---|---|
integers(n, min, max) |
integer(min, max) |
Random integers in range |
floats(n, min, max) |
float_(min, max) |
Random floats in range (Note: float_ avoids shadowing Python's float builtin) |
uuids(n) |
uuid() |
UUID v4 strings |
md5s(n) |
md5() |
Random 32-char hex strings (MD5-like format, not cryptographic hashes) |
sha256s(n) |
sha256() |
Random 64-char hex strings (SHA256-like format, not cryptographic hashes) |
Dates & Times
| Batch | Single | Description |
|---|---|---|
dates(n, start, end) |
date(start, end) |
Random dates (YYYY-MM-DD) |
datetimes(n, start, end) |
datetime_(start, end) |
Random datetimes (ISO 8601). Note: datetime_ avoids shadowing Python's datetime module |
dates_of_birth(n, min_age, max_age) |
date_of_birth(min_age, max_age) |
Birth dates for given age range |
Addresses
| Batch | Single | Description |
|---|---|---|
street_addresses(n) |
street_address() |
Street addresses (e.g., "123 Main Street") |
cities(n) |
city() |
City names |
states(n) |
state() |
State names |
countries(n) |
country() |
Country names |
zip_codes(n) |
zip_code() |
ZIP codes (5 or 9 digit) |
addresses(n) |
address() |
Full addresses |
Company & Business
| Batch | Single | Description |
|---|---|---|
companies(n) |
company() |
Company names |
jobs(n) |
job() |
Job titles |
catch_phrases(n) |
catch_phrase() |
Business catch phrases |
Network
| Batch | Single | Description |
|---|---|---|
urls(n) |
url() |
URLs with https:// |
domain_names(n) |
domain_name() |
Domain names |
ipv4s(n) |
ipv4() |
IPv4 addresses |
ipv6s(n) |
ipv6() |
IPv6 addresses |
mac_addresses(n) |
mac_address() |
MAC addresses |
Finance
| Batch | Single | Description |
|---|---|---|
credit_cards(n) |
credit_card() |
Credit card numbers (valid Luhn) |
credit_card_providers(n) |
credit_card_provider() |
Card network name (Visa, Mastercard, Amex, Discover) |
credit_card_expires(n) |
credit_card_expire() |
Expiry date in MM/YY format |
credit_card_security_codes(n) |
credit_card_security_code() |
CVV: 3 digits (Visa/MC/Discover) or 4 digits (Amex) |
credit_card_fulls(n) |
credit_card_full() |
Complete card info dict (provider, number, expire, security_code, name) |
ibans(n) |
iban() |
IBAN numbers (valid checksum) |
bics(n) |
bic() |
BIC/SWIFT codes (8 or 11 characters) |
bank_accounts(n) |
bank_account() |
Bank account numbers (8-17 digits) |
bank_names(n) |
bank_name() |
Bank names (locale-specific) |
Currency
| Batch | Single | Description |
|---|---|---|
currency_codes(n) |
currency_code() |
ISO 4217 currency codes (e.g., "USD", "EUR") |
currency_names(n) |
currency_name() |
Currency names in English (e.g., "United States Dollar") |
currencies(n) |
currency() |
(code, name) tuples |
prices(n, min, max) |
price(min, max) |
Prices with 2 decimal places |
UK Banking
| Batch | Single | Description |
|---|---|---|
sort_codes(n) |
sort_code() |
UK sort codes (XX-XX-XX format) |
uk_account_numbers(n) |
uk_account_number() |
UK account numbers (exactly 8 digits) |
transaction_amounts(n, min, max) |
transaction_amount(min, max) |
Transaction amounts (2 decimal places) |
transactions(n, balance, start, end) |
- | Full transaction records with running balance |
Passwords
| Batch | Single | Description |
|---|---|---|
passwords(n, ...) |
password(...) |
Random passwords with configurable character sets |
Password options:
length: Password length (default: 12)uppercase: Include uppercase letters (default: True)lowercase: Include lowercase letters (default: True)digits: Include digits (default: True)symbols: Include symbols (default: True)
Text & Lorem Ipsum
| Batch | Single | Description |
|---|---|---|
sentences(n, word_count) |
sentence(word_count) |
Lorem ipsum sentences |
paragraphs(n, sentence_count) |
paragraph(sentence_count) |
Lorem ipsum paragraphs |
texts(n, min_chars, max_chars) |
text(min_chars, max_chars) |
Text blocks with length limits |
Colors
| Batch | Single | Description |
|---|---|---|
colors(n) |
color() |
Color names |
hex_colors(n) |
hex_color() |
Hex color codes (#RRGGBB) |
rgb_colors(n) |
rgb_color() |
RGB tuples (r, g, b) |
Geographic
| Batch | Single | Description |
|---|---|---|
latitudes(n) |
latitude() |
Random latitude in [-90.0, 90.0] |
longitudes(n) |
longitude() |
Random longitude in [-180.0, 180.0] |
coordinates(n) |
coordinate() |
(latitude, longitude) tuples |
User Agents
| Batch | Single | Description |
|---|---|---|
user_agents(n) |
user_agent() |
Random browser user agent string (any browser) |
chromes(n) |
chrome() |
Chrome user agent string |
firefoxes(n) |
firefox() |
Firefox user agent string |
safaris(n) |
safari() |
Safari user agent string |
Booleans
| Batch | Single | Description |
|---|---|---|
booleans(n, probability) |
boolean(probability) |
Random booleans (default: 50% True) |
Unique Value Generation
For batch methods that select from finite lists (names, cities, countries, etc.), you can request unique values:
from forgery import Faker
fake = Faker()
fake.seed(42)
# Generate 50 unique names (no duplicates)
unique_names = fake.names(50, unique=True)
assert len(unique_names) == len(set(unique_names))
# Generate 20 unique cities
unique_cities = fake.cities(20, unique=True)
# Generate 50 unique countries
unique_countries = fake.countries(50, unique=True)
Important Notes:
- Unique generation will raise
ValueErrorif you request more unique values than are available in the underlying data set. - Performance: Unique generation uses O(n) memory (stores all outputs in a HashSet) and can be O(n × 100) time in worst case due to retry logic. For very large unique batches, consider whether duplicates are actually problematic for your use case.
Financial Transaction Generation
Generate realistic bank transaction data with running balances:
from forgery import Faker
fake = Faker()
fake.seed(42)
# Generate 50 transactions from Jan to Mar 2024, starting with £1000 balance
txns = fake.transactions(50, 1000.0, "2024-01-01", "2024-03-31")
for txn in txns[:3]:
print(f"{txn['date']} | {txn['transaction_type']:15} | {txn['amount']:>10.2f} | {txn['balance']:>10.2f}")
# 2024-01-03 | Card Payment | -42.50 | 957.50
# 2024-01-05 | Direct Debit | -125.00 | 832.50
# 2024-01-08 | Faster Payment | 1250.00 | 2082.50
Each transaction dict contains:
reference: 8-character alphanumeric referencedate: Transaction date (YYYY-MM-DD)amount: Transaction amount (negative for debits)transaction_type: e.g., "Card Payment", "Direct Debit", "Salary"description: Merchant or payee namebalance: Running balance after transaction
Structured Data Generation
Generate entire datasets with a single call using schema definitions:
records()
Returns a list of dictionaries:
from forgery import records, seed
seed(42)
data = records(1000, {
"id": "uuid",
"name": "name",
"email": "email",
"age": ("int", 18, 65),
"salary": ("float", 30000.0, 150000.0),
"hire_date": ("date", "2020-01-01", "2024-12-31"),
"bio": ("text", 50, 200),
"status": ("choice", ["active", "inactive", "pending"]),
})
# data[0] = {"id": "88917925-...", "name": "Austin Bell", "age": 50, ...}
records_tuples()
Returns a list of tuples (faster, values in alphabetical key order):
from forgery import records_tuples, seed
seed(42)
data = records_tuples(1000, {
"age": ("int", 18, 65),
"name": "name",
})
# data[0] = (50, "Ryan Grant") # (age, name) - alphabetical order
records_arrow()
Returns a PyArrow RecordBatch for high-performance data processing:
import pyarrow as pa
from forgery import records_arrow, seed
seed(42)
batch = records_arrow(100_000, {
"id": "uuid",
"name": "name",
"age": ("int", 18, 65),
"salary": ("float", 30000.0, 150000.0),
})
# batch is a pyarrow.RecordBatch
print(batch.num_rows) # 100000
print(batch.num_columns) # 4
print(batch.schema)
# age: int64 not null
# id: string not null
# name: string not null
# salary: double not null
# Convert to pandas DataFrame
df = batch.to_pandas()
# Or to Polars DataFrame
import polars as pl
df_polars = pl.from_arrow(batch)
Note: Requires pyarrow to be installed: pip install pyarrow
The records_arrow() function generates data in columnar format, which is more efficient
for large batches and integrates seamlessly with the Arrow ecosystem (PyArrow, Polars,
pandas, DuckDB, etc.).
Schema Field Types
| Type | Syntax | Example |
|---|---|---|
| Simple types | "type_name" |
"name", "email", "uuid", "int", "float" |
| Integer range | ("int", min, max) |
("int", 18, 65) |
| Float range | ("float", min, max) |
("float", 0.0, 100.0) |
| Text with limits | ("text", min_chars, max_chars) |
("text", 50, 200) |
| Date range | ("date", start, end) |
("date", "2020-01-01", "2024-12-31") |
| Choice | ("choice", [options]) |
("choice", ["a", "b", "c"]) |
All simple types from the generators above are supported: name, first_name, last_name, email, safe_email, free_email, phone, uuid, int, float, date, datetime, street_address, city, state, country, zip_code, address, company, job, catch_phrase, url, domain_name, ipv4, ipv6, mac_address, credit_card, iban, sentence, paragraph, text, color, hex_color, rgb_color, md5, sha256, latitude, longitude, coordinate, boolean.
Async Generation
For large datasets (millions of records), async methods prevent blocking the Python event loop:
records_async()
import asyncio
from forgery import records_async, seed
async def main():
seed(42)
records = await records_async(1_000_000, {
"id": "uuid",
"name": "name",
"email": "email",
})
print(f"Generated {len(records)} records")
asyncio.run(main())
records_tuples_async()
import asyncio
from forgery import records_tuples_async, seed
async def main():
seed(42)
records = await records_tuples_async(1_000_000, {
"age": ("int", 18, 65),
"name": "name",
})
return records
asyncio.run(main())
records_arrow_async()
import asyncio
from forgery import records_arrow_async, seed
async def main():
seed(42)
batch = await records_arrow_async(1_000_000, {
"id": "uuid",
"name": "name",
"salary": ("float", 30000.0, 150000.0),
})
return batch.to_pandas()
asyncio.run(main())
All async methods accept an optional chunk_size parameter (default: 10,000) that controls how frequently control is yielded to the event loop. Smaller chunks yield more frequently but have slightly higher overhead.
Note: Async methods use a snapshot of the RNG state at call time. The main Faker instance's RNG is not advanced, so calling the same async method twice with the same seed produces identical results. For unique results across multiple async calls, use different seeds or different Faker instances.
Arrow async chunking caveat: For records_arrow_async(), when n > chunk_size, the output differs from records_arrow() due to column-major RNG consumption within each chunk. If you need identical results to the sync version, set chunk_size >= n. The records_async() and records_tuples_async() methods always match their sync counterparts regardless of chunk size.
Custom Providers
Register your own data providers for domain-specific generation:
Basic Custom Provider
from forgery import Faker
fake = Faker()
# Register a uniform (equal probability) provider
fake.add_provider("department", ["Engineering", "Sales", "HR", "Marketing"])
# Generate values
dept = fake.generate("department")
depts = fake.generate_batch("department", 100)
Weighted Custom Provider
# Register a weighted provider (higher weights = more likely)
fake.add_weighted_provider("status", [
("active", 80), # 80% probability
("inactive", 20), # 20% probability
])
# Generate with weighted distribution
statuses = fake.generate_batch("status", 1000)
# Expect ~800 "active", ~200 "inactive"
Custom Providers in Records
Custom providers integrate seamlessly with records():
from forgery import Faker
fake = Faker()
fake.add_provider("department", ["Eng", "Sales", "HR"])
fake.add_weighted_provider("priority", [("high", 20), ("medium", 50), ("low", 30)])
data = fake.records(1000, {
"id": "uuid",
"name": "name",
"department": "department", # Custom provider
"priority": "priority", # Weighted custom provider
})
Provider Management
fake.has_provider("department") # Check if provider exists
fake.list_providers() # List all custom provider names
fake.remove_provider("department") # Remove a provider
Module-level Convenience
from forgery import add_provider, generate, generate_batch, seed
seed(42)
add_provider("tier", ["gold", "silver", "bronze"])
tier = generate("tier")
tiers = generate_batch("tier", 100)
Note: Custom provider names cannot conflict with built-in types (e.g., "name", "email", "uuid").
Performance
Benchmark generating 100,000 items:
Names:
forgery.names(): 0.015s
Faker.name(): 1.523s
Speedup: 101x
Emails:
forgery.emails(): 0.021s
Faker.email(): 2.134s
Speedup: 101x
Benchmark generating 1,000,000 items:
Names:
forgery.names(): 0.108s
Faker.name(): 47.111s
Speedup: 436x
Emails:
forgery.emails(): 0.167s
Faker.email(): 46.984s
Speedup: 281x
Seeding Contract
seed(n)affects the defaultfakeinstance only- Each
Fakerinstance has its own independent RNG state - Single-threaded determinism only: Results are reproducible within one thread
- No cross-version guarantee: Output may differ between forgery versions
Thread Safety
forgery is NOT thread-safe. Each Faker instance maintains mutable RNG state.
For multi-threaded applications, create one Faker instance per thread:
from concurrent.futures import ThreadPoolExecutor
from forgery import Faker
def generate_names(seed: int) -> list[str]:
fake = Faker() # Create per-thread instance
fake.seed(seed)
return fake.names(1000)
with ThreadPoolExecutor(max_workers=4) as executor:
results = list(executor.map(generate_names, range(4)))
Do NOT share a Faker instance across threads.
Development
# Install Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# Install maturin
pip install maturin
# Build and install locally
maturin develop --release
# Run tests
cargo test # Rust tests
pytest # Python tests
# Run benchmarks
python tests/benchmarks/bench_vs_faker.py
License
MIT
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
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 forgery-0.1.0.tar.gz.
File metadata
- Download URL: forgery-0.1.0.tar.gz
- Upload date:
- Size: 203.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73437045bfa7275f6a313b2e88f42be996bbc23fbc8fc177b2cc4d892c2ef8de
|
|
| MD5 |
8a81e74a29e9b5ebe92b34dea24c0c2a
|
|
| BLAKE2b-256 |
6eb9f70a6fb345eb37bc8bac8518546cda2549be15971f9138f9fd0e0973f374
|
Provenance
The following attestation bundles were made for forgery-0.1.0.tar.gz:
Publisher:
release.yml on williajm/forgery
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
forgery-0.1.0.tar.gz -
Subject digest:
73437045bfa7275f6a313b2e88f42be996bbc23fbc8fc177b2cc4d892c2ef8de - Sigstore transparency entry: 1004584014
- Sigstore integration time:
-
Permalink:
williajm/forgery@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/williajm
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Trigger Event:
push
-
Statement type:
File details
Details for the file forgery-0.1.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: forgery-0.1.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0886911ee41240be14579f480d3988a97621c101c6af9d727940b3409d2d2ce0
|
|
| MD5 |
552f0b03632d2c2b5d20f7360b1f448e
|
|
| BLAKE2b-256 |
2d87b2e2c3d5c26718ae7fcc45a2a91df6e057cab593d17d548ab95164cb22a7
|
Provenance
The following attestation bundles were made for forgery-0.1.0-cp314-cp314-win_amd64.whl:
Publisher:
release.yml on williajm/forgery
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
forgery-0.1.0-cp314-cp314-win_amd64.whl -
Subject digest:
0886911ee41240be14579f480d3988a97621c101c6af9d727940b3409d2d2ce0 - Sigstore transparency entry: 1004584052
- Sigstore integration time:
-
Permalink:
williajm/forgery@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/williajm
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Trigger Event:
push
-
Statement type:
File details
Details for the file forgery-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: forgery-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4da24b544404963399de9ca99e0ce8317dd8697d91eb3020679cad4c684a641
|
|
| MD5 |
c4fa960f447e211fcb2c1be469ac8a80
|
|
| BLAKE2b-256 |
560c46f76eaa0392687023c7c352e4298d64080dea244cdc02cbd326f392c2dd
|
Provenance
The following attestation bundles were made for forgery-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on williajm/forgery
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
forgery-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
a4da24b544404963399de9ca99e0ce8317dd8697d91eb3020679cad4c684a641 - Sigstore transparency entry: 1004584035
- Sigstore integration time:
-
Permalink:
williajm/forgery@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/williajm
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Trigger Event:
push
-
Statement type:
File details
Details for the file forgery-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: forgery-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10f3c81c1034484d079974698a7563e6eced670edaad171c199eec2708ab921f
|
|
| MD5 |
6feaa508dfa147e8c246f9c59403e2a4
|
|
| BLAKE2b-256 |
ea38d15e2bfca63eecfa4446033636fbe4a3d04db424ae3c0629e871c6cef68f
|
Provenance
The following attestation bundles were made for forgery-0.1.0-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
release.yml on williajm/forgery
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
forgery-0.1.0-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
10f3c81c1034484d079974698a7563e6eced670edaad171c199eec2708ab921f - Sigstore transparency entry: 1004584066
- Sigstore integration time:
-
Permalink:
williajm/forgery@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/williajm
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Trigger Event:
push
-
Statement type:
File details
Details for the file forgery-0.1.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: forgery-0.1.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 3.3 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 |
1d5eef085c1ef450c124a74bf19e9e8c3707a29a2a5bd9bce31c6e1681fc51f9
|
|
| MD5 |
65335e8a83e2ea1dd899d76cde46d4a6
|
|
| BLAKE2b-256 |
14f3aabb393fa6e779e90925bc588ff81ede0380f74dd1013858c050821cd370
|
Provenance
The following attestation bundles were made for forgery-0.1.0-cp313-cp313-win_amd64.whl:
Publisher:
release.yml on williajm/forgery
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
forgery-0.1.0-cp313-cp313-win_amd64.whl -
Subject digest:
1d5eef085c1ef450c124a74bf19e9e8c3707a29a2a5bd9bce31c6e1681fc51f9 - Sigstore transparency entry: 1004584049
- Sigstore integration time:
-
Permalink:
williajm/forgery@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/williajm
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Trigger Event:
push
-
Statement type:
File details
Details for the file forgery-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: forgery-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f288c9324ccc89205651c00587a186f1f396ceb7002d0ae8e5226089df04681a
|
|
| MD5 |
82a2e8a7019ddcf8db40cbf445f3e40d
|
|
| BLAKE2b-256 |
31c2ea233d091cd9b70daa2206b41221306da5d6edf2e46d49fb957ddf7de99b
|
Provenance
The following attestation bundles were made for forgery-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on williajm/forgery
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
forgery-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
f288c9324ccc89205651c00587a186f1f396ceb7002d0ae8e5226089df04681a - Sigstore transparency entry: 1004584027
- Sigstore integration time:
-
Permalink:
williajm/forgery@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/williajm
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Trigger Event:
push
-
Statement type:
File details
Details for the file forgery-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: forgery-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10d8433ae2d5217586a90ac445c0349e4a797301781175f7b84248c9f486e9e0
|
|
| MD5 |
a70b6dbef4e086cea4ffc462bb12f122
|
|
| BLAKE2b-256 |
2bd9340454aa524d226a4f861096982078a8fb830ca223290f396967915b9b90
|
Provenance
The following attestation bundles were made for forgery-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
release.yml on williajm/forgery
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
forgery-0.1.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
10d8433ae2d5217586a90ac445c0349e4a797301781175f7b84248c9f486e9e0 - Sigstore transparency entry: 1004584043
- Sigstore integration time:
-
Permalink:
williajm/forgery@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/williajm
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Trigger Event:
push
-
Statement type:
File details
Details for the file forgery-0.1.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: forgery-0.1.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 3.3 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 |
90e7dc48dc2c67fb23e240f9a28d0b4765d6f41c29de917123d90779e934823c
|
|
| MD5 |
32d04980e6a5b5197e7dcd93b526b51a
|
|
| BLAKE2b-256 |
318b3842ac582e57f078abb381a7ddb00a8b64b8e32251d9104786d47aa7d051
|
Provenance
The following attestation bundles were made for forgery-0.1.0-cp312-cp312-win_amd64.whl:
Publisher:
release.yml on williajm/forgery
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
forgery-0.1.0-cp312-cp312-win_amd64.whl -
Subject digest:
90e7dc48dc2c67fb23e240f9a28d0b4765d6f41c29de917123d90779e934823c - Sigstore transparency entry: 1004584069
- Sigstore integration time:
-
Permalink:
williajm/forgery@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/williajm
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Trigger Event:
push
-
Statement type:
File details
Details for the file forgery-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: forgery-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83cda3a4b9e04a3082d9a57c79442ac5474e217800c717008c8fec44879a87c9
|
|
| MD5 |
f3c50afdfbfcd6e1f60cb78748c98b11
|
|
| BLAKE2b-256 |
28d2290c34b114b02932e63ee567ad8a6387950f825e64c9b4f9d9e12f910a34
|
Provenance
The following attestation bundles were made for forgery-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on williajm/forgery
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
forgery-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
83cda3a4b9e04a3082d9a57c79442ac5474e217800c717008c8fec44879a87c9 - Sigstore transparency entry: 1004584080
- Sigstore integration time:
-
Permalink:
williajm/forgery@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/williajm
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Trigger Event:
push
-
Statement type:
File details
Details for the file forgery-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: forgery-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0666b94bf831f2f5b6e7dec21a4fb45e0fc955d11bdf0441d1f23e5e296c6a5b
|
|
| MD5 |
3218c290ffde822fc7a26a5eb3676fdd
|
|
| BLAKE2b-256 |
167650a5d776e3e0f3b1005eeac29659a0a2741fec43c0fda4d196b5d6538a2c
|
Provenance
The following attestation bundles were made for forgery-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
release.yml on williajm/forgery
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
forgery-0.1.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
0666b94bf831f2f5b6e7dec21a4fb45e0fc955d11bdf0441d1f23e5e296c6a5b - Sigstore transparency entry: 1004584059
- Sigstore integration time:
-
Permalink:
williajm/forgery@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/williajm
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Trigger Event:
push
-
Statement type:
File details
Details for the file forgery-0.1.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: forgery-0.1.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 3.3 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 |
42f4015e17e3352578d74315e81f3242cddf42c57eb46c0221655dbcdb5d0127
|
|
| MD5 |
f6a1ee40890667ebfb636a0eeccd3b18
|
|
| BLAKE2b-256 |
ee534d79555ac1078807dfb17e2a77498917d1c0c1b18285840c5bd87af3f1d3
|
Provenance
The following attestation bundles were made for forgery-0.1.0-cp311-cp311-win_amd64.whl:
Publisher:
release.yml on williajm/forgery
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
forgery-0.1.0-cp311-cp311-win_amd64.whl -
Subject digest:
42f4015e17e3352578d74315e81f3242cddf42c57eb46c0221655dbcdb5d0127 - Sigstore transparency entry: 1004584071
- Sigstore integration time:
-
Permalink:
williajm/forgery@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/williajm
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Trigger Event:
push
-
Statement type:
File details
Details for the file forgery-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: forgery-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
877b0ee4398037afa03ed98bc5e15a29a8006179c946e2afaaa0956fe9c0c665
|
|
| MD5 |
505c324038fa105810b5816f034da8cf
|
|
| BLAKE2b-256 |
177a34aae057b05b7ae24b35c537a4e8c1f26d2cf6633a8f910280df1c617191
|
Provenance
The following attestation bundles were made for forgery-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on williajm/forgery
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
forgery-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
877b0ee4398037afa03ed98bc5e15a29a8006179c946e2afaaa0956fe9c0c665 - Sigstore transparency entry: 1004584019
- Sigstore integration time:
-
Permalink:
williajm/forgery@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/williajm
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Trigger Event:
push
-
Statement type:
File details
Details for the file forgery-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: forgery-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd0a1a12ae244cd28fbfd728f913a695185107cf8d415f7f6e6701dbe7b2b55c
|
|
| MD5 |
316b33591848802e1ba950c906febb37
|
|
| BLAKE2b-256 |
244046cfc8106f0dfcc6e7e6917845238cca4eb6dfa46ecb70d5bb382e2e0f6c
|
Provenance
The following attestation bundles were made for forgery-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
release.yml on williajm/forgery
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
forgery-0.1.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
cd0a1a12ae244cd28fbfd728f913a695185107cf8d415f7f6e6701dbe7b2b55c - Sigstore transparency entry: 1004584084
- Sigstore integration time:
-
Permalink:
williajm/forgery@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/williajm
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d13dc8650c043aeb10d4296e60924a15f4846f3b -
Trigger Event:
push
-
Statement type: