Security vulnerability auditing tool for Python packages
Project description
🐍 PySentry
Help to test and improve | Latest PySentry - pip-audit benchmark
Please, send feedback to nikita@pysentry.com
A fast, reliable security vulnerability scanner for Python projects, written in Rust.
Overview
PySentry audits Python projects for known security vulnerabilities by analyzing dependency files (uv.lock, poetry.lock, Pipfile.lock, pylock.toml, pyproject.toml, Pipfile, requirements.txt) and cross-referencing them against multiple vulnerability databases. It provides comprehensive reporting with support for various output formats and filtering options.
Key Features
- Multiple Project Formats: Supports
uv.lock,poetry.lock,Pipfile.lock,pylock.toml,pyproject.toml,Pipfile, andrequirements.txtfiles - External Resolver Integration: Leverages
uvandpip-toolsfor accurate requirements.txt constraint solving - Multiple Data Sources:
- PyPA Advisory Database (default)
- PyPI JSON API
- OSV.dev (Open Source Vulnerabilities)
- Flexible Output for different workflows: Human-readable, JSON, SARIF, and Markdown formats
- Performance Focused:
- Written in Rust for speed
- Async/concurrent processing
- Multi-tier intelligent caching (vulnerability data + resolved dependencies)
- Comprehensive Filtering:
- Severity levels (low, medium, high, critical)
- Dependency scopes (main only vs all [optional, dev, prod, etc] dependencies)
- Direct vs. transitive dependencies
- Enterprise Ready: SARIF output for IDE/CI integration
Installation
Choose the installation method that works best for you:
⚡ Via uvx (Recommended for occasional use)
Run directly without installing (requires uv):
uvx pysentry-rs /path/to/project
This method:
- Runs the latest version without installation
- Automatically manages Python environment
- Perfect for CI/CD or occasional security audits
- No need to manage package versions or updates
📦 From PyPI (Python Package)
For Python 3.9+ on Linux, macOS, and Windows:
pip install pysentry-rs
Then use it with Python:
python -m pysentry /path/to/project
# or directly if scripts are in PATH
pysentry-rs /path/to/project
⚡ From Crates.io (Rust Package)
If you have Rust installed:
cargo install pysentry
💾 From GitHub Releases (Pre-built Binaries)
Download the latest release for your platform:
- Linux x64:
pysentry-linux-x64.tar.gz - Linux x64 (musl):
pysentry-linux-x64-musl.tar.gz - Linux ARM64:
pysentry-linux-arm64.tar.gz - macOS x64:
pysentry-macos-x64.tar.gz - macOS ARM64:
pysentry-macos-arm64.tar.gz - Windows x64:
pysentry-windows-x64.zip
# Example for Linux x64
curl -L https://github.com/nyudenkov/pysentry/releases/latest/download/pysentry-linux-x64.tar.gz | tar -xz
./pysentry-linux-x64/pysentry --help
🔧 From Source
git clone https://github.com/nyudenkov/pysentry
cd pysentry
cargo build --release
The binary will be available at target/release/pysentry.
Requirements
- For uvx: Python 3.9+ and uv installed
- For binaries: No additional dependencies
- For Python package: Python 3.9+
- For Rust package and source: Rust 1.79+
Platform Support
| Installation Method | Linux | macOS | Windows |
|---|---|---|---|
| uvx | ✅ | ✅ | ✅ |
| PyPI (pip) | ✅ | ✅ | ✅ |
| Crates.io (cargo) | ✅ | ✅ | ✅ |
| GitHub Releases | ✅ | ✅ | ✅ |
| From Source | ✅ | ✅ | ✅ |
CLI Command Names
- Rust binary:
pysentry(when installed via cargo or binary releases) - Python package:
pysentry-rs(when installed via pip or uvx)
Both variants support identical functionality. The resolver tools (uv, pip-tools) must be available in your current environment regardless of which PySentry variant you use.
Requirements.txt Support Prerequisites
To scan requirements.txt files, PySentry requires an external dependency resolver to convert version constraints (e.g., flask>=2.0,<3.0) into exact versions for vulnerability scanning.
Install a supported resolver:
# uv (recommended - fastest, Rust-based)
pip install uv
# pip-tools (widely compatible, Python-based)
pip install pip-tools
Environment Requirements:
- Resolvers must be available in your current environment
- If using virtual environments, activate your venv before running PySentry:
source venv/bin/activate # Linux/macOS venv\Scripts\activate # Windows pysentry /path/to/project
- Alternatively, install resolvers globally for system-wide availability
Auto-detection: PySentry automatically detects and prefers: uv > pip-tools. Without a resolver, only uv.lock and poetry.lock files can be scanned.
Quick Start
Basic Usage
# Using uvx (recommended for occasional use)
uvx pysentry-rs
uvx pysentry-rs /path/to/python/project
# Using installed binary
pysentry
pysentry /path/to/python/project
# Automatically detects project type (uv.lock, poetry.lock, Pipfile.lock, pyproject.toml, Pipfile, requirements.txt)
pysentry /path/to/project
# Force specific resolver
pysentry --resolver uv /path/to/project
pysentry --resolver pip-tools /path/to/project
# Exclude extra dependencies (only check main dependencies)
pysentry --exclude-extra
# Filter by severity (only show high and critical)
pysentry --severity high
# Output to JSON file
pysentry --format json --output audit-results.json
Advanced Usage
# Using uvx for comprehensive audit (extras included by default)
uvx pysentry-rs --format sarif --output security-report.sarif
# Check multiple vulnerability sources concurrently
uvx pysentry-rs --sources pypa,osv,pypi /path/to/project
uvx pysentry-rs --sources pypa --sources osv --sources pypi
# Generate markdown report
uvx pysentry-rs --format markdown --output security-report.md
# Control CI exit codes - only fail on critical vulnerabilities
uvx pysentry-rs --fail-on critical
# Or with installed binary (extras included by default)
pysentry --format sarif --output security-report.sarif
pysentry --sources pypa,osv --direct-only
pysentry --format markdown --output security-report.md
# Ignore specific vulnerabilities
pysentry --ignore CVE-2023-12345 --ignore GHSA-xxxx-yyyy-zzzz
# Ignore unfixable vulnerabilities (only while they have no fix available)
pysentry --ignore-while-no-fix CVE-2025-8869
# Disable caching for CI environments
pysentry --no-cache
# Verbose output for debugging
pysentry --verbose
Advanced Requirements.txt Usage
# Scan multiple requirements files
pysentry --requirements requirements.txt --requirements requirements-dev.txt
# Check only direct dependencies from requirements.txt
pysentry --direct-only --resolver uv
# Ensure resolver is available in your environment
source venv/bin/activate # Activate your virtual environment first
pysentry /path/to/project
# Debug requirements.txt resolution
pysentry --verbose --resolver uv /path/to/project
# Use longer resolution cache TTL (48 hours)
pysentry --resolution-cache-ttl 48 /path/to/project
# Clear resolution cache before scanning
pysentry --clear-resolution-cache /path/to/project
CI/CD Integration Examples
# Development environment - only fail on critical vulnerabilities
pysentry --fail-on critical --format json --output security-report.json
# Staging environment - fail on high+ vulnerabilities
pysentry --fail-on high --sources pypa,osv --format sarif --output security.sarif
# Production deployment - strict security (fail on medium+, default)
pysentry --sources pypa,pypi,osv --format json --output prod-security.json
# Generate markdown report for GitHub issues/PRs
pysentry --format markdown --output SECURITY-REPORT.md
# Comprehensive audit with all sources and full reporting (extras included by default)
pysentry --sources pypa,pypi,osv --format json --fail-on low
# CI environment with fresh resolution cache
pysentry --clear-resolution-cache --sources pypa,osv --format sarif
# CI with resolution cache disabled
pysentry --no-resolution-cache --format json --output security-report.json
Pre-commit Integration
PySentry integrates seamlessly with pre-commit to automatically scan for vulnerabilities before commits.
Setup
Add PySentry to your .pre-commit-config.yaml:
repos:
- repo: https://github.com/pysentry/pysentry-pre-commit
rev: v0.3.7
hooks:
- id: pysentry # default pysentry settings
Advanced Configuration
repos:
- repo: https://github.com/pysentry/pysentry-pre-commit
rev: v0.3.7
hooks:
- id: pysentry
args: ["--sources", "pypa,osv", "--fail-on", "high"]
Installation Requirements
Pre-commit will automatically install PySentry, uv and pip-tools via PyPI.
Configuration
PySentry supports TOML-based configuration files for persistent settings management. Configuration files follow a hierarchical discovery pattern:
- Project-level:
.pysentry.tomlin current or parent directories - User-level:
~/.config/pysentry/config.toml(Linux/macOS) - System-level:
/etc/pysentry/config.toml(Unix systems)
Configuration File Example
version = 1
[defaults]
format = "json"
severity = "medium"
fail_on = "high"
scope = "all"
direct_only = false
[sources]
enabled = ["pypa", "osv"]
[resolver]
type = "uv"
fallback = "pip-tools"
[cache]
enabled = true
resolution_ttl = 48
vulnerability_ttl = 72
[output]
quiet = false
verbose = false
color = "auto"
[ignore]
ids = ["CVE-2023-12345", "GHSA-xxxx-yyyy-zzzz"]
while_no_fix = ["CVE-2025-8869"]
[http]
timeout = 120
connect_timeout = 30
max_retries = 3
retry_initial_backoff = 1
retry_max_backoff = 60
show_progress = true
Environment Variables
| Variable | Description | Example |
|---|---|---|
PYSENTRY_CONFIG |
Override config file path | PYSENTRY_CONFIG=/path/to/config.toml |
PYSENTRY_NO_CONFIG |
Disable all config file loading | PYSENTRY_NO_CONFIG=1 |
Command Line Options
| Option | Description | Default |
|---|---|---|
--format |
Output format: human, json, sarif, markdown |
human |
--severity |
Minimum severity: low, medium, high, critical |
low |
--fail-on |
Fail (exit non-zero) on vulnerabilities ≥ severity | medium |
--sources |
Vulnerability sources: pypa, pypi, osv (multiple) |
pypa |
--exclude-extra |
Exclude extra dependencies (dev, optional, etc) | false |
--direct-only |
Check only direct dependencies | false |
--detailed |
Show full vulnerability descriptions instead of truncated | false |
--ignore |
Vulnerability IDs to ignore (repeatable) | [] |
--ignore-while-no-fix |
Ignore vulnerabilities only while no fix is available | [] |
--output |
Output file path | stdout |
--no-cache |
Disable all caching | false |
--cache-dir |
Custom cache directory | Platform-specific |
--resolution-cache-ttl |
Resolution cache TTL in hours | 24 |
--no-resolution-cache |
Disable resolution caching only | false |
--clear-resolution-cache |
Clear resolution cache on startup | false |
--verbose |
Enable verbose output | false |
--quiet |
Suppress non-error output | false |
--resolver |
Dependency resolver: auto, uv, pip-tools |
auto |
--requirements |
Additional requirements files (repeatable) | [] |
Cache Management
PySentry uses an intelligent multi-tier caching system for optimal performance:
Vulnerability Data Cache
- Location:
{CACHE_DIR}/pysentry/vulnerability-db/ - Purpose: Caches vulnerability databases from PyPA, PyPI, OSV
- TTL: 24 hours (configurable per source)
- Benefits: Avoids redundant API calls and downloads
Resolution Cache
- Location:
{CACHE_DIR}/pysentry/dependency-resolution/ - Purpose: Caches resolved dependencies from
uv/pip-tools - TTL: 24 hours (configurable via
--resolution-cache-ttl) - Benefits: Dramatically speeds up repeated scans of requirements.txt files
- Cache Key: Based on requirements content, resolver version, Python version, platform
Platform-Specific Cache Locations
- Linux:
~/.cache/pysentry/ - macOS:
~/Library/Caches/pysentry/ - Windows:
%LOCALAPPDATA%\pysentry\
Finding Your Cache Location: Run with --verbose to see the actual cache directory path being used.
Cache Features
- Atomic Updates: Prevents cache corruption during concurrent access
- Custom Location: Use
--cache-dirto specify alternative location - Selective Clearing: Control caching behavior per cache type
- Content-based Invalidation: Automatic cache invalidation on content changes
Cache Control Examples
# Disable all caching
pysentry --no-cache
# Disable only resolution caching (keep vulnerability cache)
pysentry --no-resolution-cache
# Set resolution cache TTL to 48 hours
pysentry --resolution-cache-ttl 48
# Clear resolution cache on startup (useful for CI)
pysentry --clear-resolution-cache
# Custom cache directory
pysentry --cache-dir /tmp/my-pysentry-cache
To manually clear all caches:
# Linux
rm -rf ~/.cache/pysentry/
# macOS
rm -rf ~/Library/Caches/pysentry/
# Windows (PowerShell)
Remove-Item -Recurse -Force "$env:LOCALAPPDATA\pysentry"
To clear only resolution cache:
# Linux
rm -rf ~/.cache/pysentry/dependency-resolution/
# macOS
rm -rf ~/Library/Caches/pysentry/dependency-resolution/
# Windows (PowerShell)
Remove-Item -Recurse -Force "$env:LOCALAPPDATA\pysentry\dependency-resolution"
Supported Project Formats
uv.lock Files (Recommended)
PySentry has support for uv.lock files:
- Exact version resolution
- Complete dependency graph analysis
- Source tracking
- Dependency classification (main, dev, optional) including transitive dependencies
poetry.lock Files
Full support for Poetry lock files:
- Exact Version Resolution: Scans exact dependency versions locked by Poetry
- Lock-File Only Analysis: Relies purely on the lock file structure, no pyproject.toml parsing needed
- Complete Dependency Tree: Analyzes all resolved dependencies including transitive ones
- Dependency Classification: Distinguishes between main dependencies and optional groups (dev, test, etc.)
- Source Tracking: Supports PyPI registry, Git repositories, local paths, and direct URLs
Key Features:
- No external tools required
- Fast parsing with exact version information
- Handles Poetry's dependency groups and optional dependencies
- Perfect for Poetry-managed projects with established lock files
Pipfile.lock Files
Full support for Pipenv lock files with exact version resolution:
- Exact Version Resolution: Scans exact dependency versions locked by Pipenv
- Lock-File Only Analysis: Relies purely on the lock file structure, no Pipfile parsing needed
- Complete Dependency Tree: Analyzes all resolved dependencies including transitive ones
- Dependency Classification: Distinguishes between default dependencies and development groups
Key Features:
- No external tools required
- Fast parsing with exact version information
- Handles Pipenv's dependency groups (default and develop)
- Perfect for Pipenv-managed projects with established lock files
Pipfile Files (External Resolution)
Support for Pipfile specification files using external dependency resolvers:
Key Features:
- Dependencies Resolution: Converts version constraints from Pipfile to exact versions using mature external tools
- Multiple Resolver Support:
- uv: Rust-based resolver, extremely fast and reliable (recommended)
- pip-tools: Python-based resolver using
pip-compile, widely compatible
- Auto-detection: Automatically detects and uses the best available resolver in your environment
- Dependency Groups: Supports both default packages and dev-packages sections
- Complex Constraint Handling: Supports version ranges, Git dependencies, and environment markers
Resolution Workflow:
- Detects
Pipfilein your project (whenPipfile.lockis not present) - Auto-detects available resolver (
uvorpip-tools) in current environment - Resolves version constraints to exact dependency versions
- Scans resolved dependencies for vulnerabilities
- Reports findings with dependency group classification
Note: When both Pipfile and Pipfile.lock are present, PySentry prioritizes the lock file for better accuracy. Consider using pipenv lock to generate a lock file for the most precise vulnerability scanning.
requirements.txt Files (External Resolution)
Advanced support for requirements.txt files using external dependency resolvers:
Key Features:
- Dependencies Resolution: Converts version constraints (e.g.,
flask>=2.0,<3.0) to exact versions using mature external tools - Multiple Resolver Support:
- uv: Rust-based resolver, extremely fast and reliable (recommended)
- pip-tools: Python-based resolver using
pip-compile, widely compatible
- Auto-detection: Automatically detects and uses the best available resolver in your environment
- Multiple File Support: Combines
requirements.txt,requirements-dev.txt,requirements-test.txt, etc. - Dependency Classification: Distinguishes between direct and transitive dependencies
- Isolated Execution: Resolvers run in temporary directories to prevent project pollution
- Complex Constraint Handling: Supports version ranges, extras, environment markers, and conflict resolution
Resolution Workflow:
- Detects
requirements.txtfiles in your project - Auto-detects available resolver (
uvorpip-tools) in current environment - Resolves version constraints to exact dependency versions
- Scans resolved dependencies for vulnerabilities
- Reports findings with direct vs. transitive classification
Environment Setup:
# Ensure resolver is available in your environment
source venv/bin/activate # Activate virtual environment
pip install uv # Install preferred resolver
pysentry /path/to/project # Run security scan
pyproject.toml Files (External Resolution)
Support for projects without lock files:
- Parses version constraints from
pyproject.toml - Resolver Required: Like requirements.txt, needs external resolvers (
uvorpip-tools) to convert version constraints to exact versions for accurate vulnerability scanning - Limited dependency graph information compared to lock files
- Works with both Poetry and PEP 621 formats
Vulnerability Data Sources
PyPA Advisory Database (Default)
- Comprehensive coverage of Python ecosystem
- Community-maintained vulnerability database
- Regular updates from security researchers
PyPI JSON API
- Official PyPI vulnerability data
- Real-time information
- Limited to packages hosted on PyPI
OSV.dev
- Cross-ecosystem vulnerability database
- Google-maintained infrastructure
Output Formats
Human-Readable (Default)
Most comfortable to read.
Markdown
GitHub-friendly format with structured sections and severity indicators. Perfect for documentation, GitHub issues, and security reports.
JSON
{
"summary": {
"total_dependencies": 245,
"vulnerable_packages": 2,
"total_vulnerabilities": 3,
"by_severity": {
"critical": 1,
"high": 1,
"medium": 1,
"low": 0
}
},
"vulnerabilities": [...]
}
SARIF (Static Analysis Results Interchange Format)
Compatible with GitHub Security tab, VS Code, and other security tools.
Performance
PySentry is designed for speed and efficiency:
- Concurrent Processing: Vulnerability data fetched in parallel from multiple sources
- Multi-tier Caching: Intelligent caching for both vulnerability data and resolved dependencies
- Efficient Matching: In-memory indexing for fast vulnerability lookups
- Streaming: Large databases processed without excessive memory usage
Resolution Cache Performance
The resolution cache provides dramatic performance improvements for requirements.txt files:
- First scan: Standard resolution time using
uvorpip-tools - Subsequent scans: Near-instantaneous when cache is fresh (>90% time savings)
- Cache invalidation: Automatic when requirements content, resolver, or environment changes
- Content-aware: Different cache entries for different Python versions and platforms
Requirements.txt Resolution Performance
PySentry leverages external resolvers with intelligent caching:
- uv resolver: 2-10x faster than pip-tools, handles large dependency trees efficiently
- pip-tools resolver: Reliable fallback, slower but widely compatible
- Isolated execution: Prevents project pollution while maintaining security
- Resolution caching: Eliminates repeated resolver calls for unchanged requirements
Development
Building from Source
git clone https://github.com/nyudenkov/pysentry
cd pysentry
cargo build --release
Running Tests
cargo test
Project Structure
src/
├── main.rs # CLI interface
├── lib.rs # Library API
├── cache/ # Caching system
├── dependency/ # Dependency scanning
├── output/ # Report generation
├── parsers/ # Project file parsers
├── providers/ # Vulnerability data sources
├── types.rs # Core type definitions
└── vulnerability/ # Vulnerability matching
Troubleshooting
Common Issues
Error: "No lock file or pyproject.toml found"
# Ensure you're in a Python project directory
ls pyproject.toml uv.lock poetry.lock requirements.txt
# Or specify the path explicitly
pysentry /path/to/python/project
Error: "No dependency resolver found" or "uv resolver not available"
# Install a supported resolver in your environment
pip install uv # Recommended - fastest
pip install pip-tools # Alternative
# Verify resolver is available
uv --version
pip-compile --version
# If using virtual environments, ensure resolver is installed there
source venv/bin/activate
pip install uv
pysentry /path/to/project
Error: "Failed to resolve requirements"
# Check your requirements.txt syntax
cat requirements.txt
# Try different resolver
pysentry --resolver pip-tools # if uv fails
pysentry --resolver uv # if pip-tools fails
# Ensure you're in correct environment
which python
which uv # or which pip-compile
# Debug with verbose output
pysentry --verbose /path/to/project
Error: "Failed to fetch vulnerability data"
# Check network connectivity
curl -I https://osv-vulnerabilities.storage.googleapis.com/
# Try with different or multiple sources
pysentry --sources pypi
pysentry --sources pypa,osv
# For slow or unstable networks, increase timeout and retries
# Create/edit .pysentry.toml in your project:
[http]
timeout = 300 # 5 minute timeout
max_retries = 5 # More retry attempts
retry_max_backoff = 120 # Longer backoff delays
# Then run again
pysentry
Network timeout errors:
PySentry includes automatic retry with exponential backoff for network issues. If you still experience timeouts:
# Increase timeout values in config
pysentry config init --output .pysentry.toml
# Edit .pysentry.toml and adjust [http] section
Rate limiting (HTTP 429 errors):
PySentry automatically handles rate limiting. If rate limits persist:
[http]
max_retries = 5 # More attempts
retry_initial_backoff = 5 # Longer initial wait
retry_max_backoff = 300 # Up to 5 minute backoff
Slow requirements.txt resolution
# Use faster uv resolver instead of pip-tools
pysentry --resolver uv
# Install uv for better performance (2-10x faster)
pip install uv
# Or use uvx for isolated execution
uvx pysentry-rs --resolver uv /path/to/project
Requirements.txt files not being detected
# Ensure requirements.txt exists
ls requirements.txt
# Specify path explicitly
pysentry /path/to/python/project
# Include additional requirements files
pysentry --requirements requirements-dev.txt --requirements requirements-test.txt
# Check if higher-priority files exist (they take precedence)
ls uv.lock poetry.lock Pipfile.lock pyproject.toml Pipfile requirements.txt
Performance Issues
# Clear all caches and retry
rm -rf ~/.cache/pysentry # Linux
rm -rf ~/Library/Caches/pysentry # macOS
pysentry
# Clear only resolution cache (if vulnerability cache is working)
rm -rf ~/.cache/pysentry/dependency-resolution/ # Linux
rm -rf ~/Library/Caches/pysentry/dependency-resolution/ # macOS
pysentry
# Clear resolution cache via CLI
pysentry --clear-resolution-cache
# Use verbose mode to identify bottlenecks
pysentry --verbose
# Disable caching to isolate issues
pysentry --no-cache
Resolution Cache Issues
# Clear stale resolution cache after environment changes
pysentry --clear-resolution-cache
# Disable resolution cache if causing issues
pysentry --no-resolution-cache
# Extend cache TTL for stable environments
pysentry --resolution-cache-ttl 168 # 1 week
# Check cache usage with verbose output
pysentry --verbose # Shows cache hits/misses
# Force fresh resolution (ignores cache)
pysentry --clear-resolution-cache --no-resolution-cache
Acknowledgments
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 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 pysentry_rs-0.3.11.tar.gz.
File metadata
- Download URL: pysentry_rs-0.3.11.tar.gz
- Upload date:
- Size: 351.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16edd5cfa9f2923a719597b6b47e67602189b51aab2f060d8991db9dbb161642
|
|
| MD5 |
7dcd8da03fe2c925a3e5d3c3d39add99
|
|
| BLAKE2b-256 |
6090abff015b4679d6502a9a27f88281bb8b8e3e04ed05245ac96b9437618167
|
Provenance
The following attestation bundles were made for pysentry_rs-0.3.11.tar.gz:
Publisher:
release.yml on nyudenkov/pysentry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysentry_rs-0.3.11.tar.gz -
Subject digest:
16edd5cfa9f2923a719597b6b47e67602189b51aab2f060d8991db9dbb161642 - Sigstore transparency entry: 576038743
- Sigstore integration time:
-
Permalink:
nyudenkov/pysentry@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Branch / Tag:
refs/tags/v0.3.11 - Owner: https://github.com/nyudenkov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysentry_rs-0.3.11-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: pysentry_rs-0.3.11-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 3.9 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 |
6f768b3c091e0c412b18723e92b57ddcca0bb1be2492972ea64fdfeab0bbcf93
|
|
| MD5 |
c486993e075c28abf7e93efd5ba4e638
|
|
| BLAKE2b-256 |
877579e66d3b0471c804ae28f414bb694ea6fa3b11c685ade0eb9d6ffec443f2
|
Provenance
The following attestation bundles were made for pysentry_rs-0.3.11-cp313-cp313-win_amd64.whl:
Publisher:
release.yml on nyudenkov/pysentry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysentry_rs-0.3.11-cp313-cp313-win_amd64.whl -
Subject digest:
6f768b3c091e0c412b18723e92b57ddcca0bb1be2492972ea64fdfeab0bbcf93 - Sigstore transparency entry: 576038859
- Sigstore integration time:
-
Permalink:
nyudenkov/pysentry@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Branch / Tag:
refs/tags/v0.3.11 - Owner: https://github.com/nyudenkov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysentry_rs-0.3.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pysentry_rs-0.3.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.7 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 |
a4994350206b39014c07f26c7bd918762bd3ec9f8b8bb736416d1b4ef774b826
|
|
| MD5 |
0ff29f66b01c07d8cfa9d2c52338a3ae
|
|
| BLAKE2b-256 |
45517f0c0d6f8feb474c5d3262171c6c2ca387598d6fbaf97f6798edc3e02931
|
Provenance
The following attestation bundles were made for pysentry_rs-0.3.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on nyudenkov/pysentry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysentry_rs-0.3.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
a4994350206b39014c07f26c7bd918762bd3ec9f8b8bb736416d1b4ef774b826 - Sigstore transparency entry: 576038788
- Sigstore integration time:
-
Permalink:
nyudenkov/pysentry@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Branch / Tag:
refs/tags/v0.3.11 - Owner: https://github.com/nyudenkov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysentry_rs-0.3.11-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: pysentry_rs-0.3.11-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.1 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 |
b529ba3e44a7b8b73e2c5813c6d3ea92b92614f680ab53f2ac57d7fdd3c6a3a1
|
|
| MD5 |
1b54d036541e95a430d0c5dfe6967c84
|
|
| BLAKE2b-256 |
99bfd8b93764dd008430589986ac9d682fde8b30f816d642fb334bdaf78dff79
|
Provenance
The following attestation bundles were made for pysentry_rs-0.3.11-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
release.yml on nyudenkov/pysentry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysentry_rs-0.3.11-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
b529ba3e44a7b8b73e2c5813c6d3ea92b92614f680ab53f2ac57d7fdd3c6a3a1 - Sigstore transparency entry: 576038754
- Sigstore integration time:
-
Permalink:
nyudenkov/pysentry@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Branch / Tag:
refs/tags/v0.3.11 - Owner: https://github.com/nyudenkov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysentry_rs-0.3.11-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pysentry_rs-0.3.11-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22ad2af7b5395a3a9185e5db319e7b38593339418e117d2e259cec0056f26184
|
|
| MD5 |
0f329a0189bfd280c63b2dad59af2864
|
|
| BLAKE2b-256 |
06893ecd78b6f0319a5790c7cd6d50b4185929eb74791ffeba21e67926f9099d
|
Provenance
The following attestation bundles were made for pysentry_rs-0.3.11-cp313-cp313-macosx_10_12_x86_64.whl:
Publisher:
release.yml on nyudenkov/pysentry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysentry_rs-0.3.11-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
22ad2af7b5395a3a9185e5db319e7b38593339418e117d2e259cec0056f26184 - Sigstore transparency entry: 576038760
- Sigstore integration time:
-
Permalink:
nyudenkov/pysentry@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Branch / Tag:
refs/tags/v0.3.11 - Owner: https://github.com/nyudenkov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysentry_rs-0.3.11-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pysentry_rs-0.3.11-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 3.9 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 |
80923c9e854f0fdfd67c7aa225c170a2f962f0adaaf3c08eac02f0ba4ff0a0f2
|
|
| MD5 |
ed477d7a0073470faae591a0ed4216c5
|
|
| BLAKE2b-256 |
70e7feb3b21c2b0d93a923b0ecf385e5ca9d14712cea03f24fcfb4c025449d38
|
Provenance
The following attestation bundles were made for pysentry_rs-0.3.11-cp312-cp312-win_amd64.whl:
Publisher:
release.yml on nyudenkov/pysentry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysentry_rs-0.3.11-cp312-cp312-win_amd64.whl -
Subject digest:
80923c9e854f0fdfd67c7aa225c170a2f962f0adaaf3c08eac02f0ba4ff0a0f2 - Sigstore transparency entry: 576038819
- Sigstore integration time:
-
Permalink:
nyudenkov/pysentry@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Branch / Tag:
refs/tags/v0.3.11 - Owner: https://github.com/nyudenkov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysentry_rs-0.3.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pysentry_rs-0.3.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.7 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 |
9d8c4deee7e2aa168cd83972b9f3288dfb3df595972b17af08602aa28d926496
|
|
| MD5 |
6c43beb6ba78d05df6dfb7d62a8c0b80
|
|
| BLAKE2b-256 |
8f8cd9cd610ad86f4de7b83eef59b0bf36a19c388ed228628a3edb2de0dda4b9
|
Provenance
The following attestation bundles were made for pysentry_rs-0.3.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on nyudenkov/pysentry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysentry_rs-0.3.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
9d8c4deee7e2aa168cd83972b9f3288dfb3df595972b17af08602aa28d926496 - Sigstore transparency entry: 576038811
- Sigstore integration time:
-
Permalink:
nyudenkov/pysentry@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Branch / Tag:
refs/tags/v0.3.11 - Owner: https://github.com/nyudenkov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysentry_rs-0.3.11-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: pysentry_rs-0.3.11-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.1 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 |
c7d2b1d00cb4faa07b99ed363eada46b9e4e0230d7e70f41f207a224e6f01193
|
|
| MD5 |
3c1210ef6f41649044fea64258199aff
|
|
| BLAKE2b-256 |
e4471fbf4e200ee7ea16e1a4be1e42e0d41d3a811b9b85b0872ed6707759b390
|
Provenance
The following attestation bundles were made for pysentry_rs-0.3.11-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
release.yml on nyudenkov/pysentry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysentry_rs-0.3.11-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
c7d2b1d00cb4faa07b99ed363eada46b9e4e0230d7e70f41f207a224e6f01193 - Sigstore transparency entry: 576038796
- Sigstore integration time:
-
Permalink:
nyudenkov/pysentry@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Branch / Tag:
refs/tags/v0.3.11 - Owner: https://github.com/nyudenkov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysentry_rs-0.3.11-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pysentry_rs-0.3.11-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0bf0c9837e75178d4d06c8d3947b2ac0dd8758ab08fe7821c0069ab3c1547c5
|
|
| MD5 |
7fca04844c34ee779cb10f7f89ab48d0
|
|
| BLAKE2b-256 |
f8555c355bf428f674acad1a794b43321370e90d947193eb30f36a36b8530786
|
Provenance
The following attestation bundles were made for pysentry_rs-0.3.11-cp312-cp312-macosx_10_12_x86_64.whl:
Publisher:
release.yml on nyudenkov/pysentry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysentry_rs-0.3.11-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
e0bf0c9837e75178d4d06c8d3947b2ac0dd8758ab08fe7821c0069ab3c1547c5 - Sigstore transparency entry: 576038892
- Sigstore integration time:
-
Permalink:
nyudenkov/pysentry@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Branch / Tag:
refs/tags/v0.3.11 - Owner: https://github.com/nyudenkov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysentry_rs-0.3.11-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: pysentry_rs-0.3.11-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 3.9 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 |
4fd4313f4209b53b118d9c6727c773497e7f332e51c2e515a5c0690550781c30
|
|
| MD5 |
38dc64bd547e90aeb1bf531140c44baf
|
|
| BLAKE2b-256 |
dfe824ff1207d6127576cb7591d927c8d4c0c25827489747ce91ba183f2c7749
|
Provenance
The following attestation bundles were made for pysentry_rs-0.3.11-cp311-cp311-win_amd64.whl:
Publisher:
release.yml on nyudenkov/pysentry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysentry_rs-0.3.11-cp311-cp311-win_amd64.whl -
Subject digest:
4fd4313f4209b53b118d9c6727c773497e7f332e51c2e515a5c0690550781c30 - Sigstore transparency entry: 576038827
- Sigstore integration time:
-
Permalink:
nyudenkov/pysentry@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Branch / Tag:
refs/tags/v0.3.11 - Owner: https://github.com/nyudenkov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysentry_rs-0.3.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pysentry_rs-0.3.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.7 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 |
e263311d13eb6a1d8369d9eb88f5db3624c9848e2822cb57250014bc7eb9b598
|
|
| MD5 |
b659d364a21d6c351954bc2cbad6269c
|
|
| BLAKE2b-256 |
44f27b1dd5ccfb1e2ec26bf3e825fca4b1714ca60d9a8f98b42d91274650eca0
|
Provenance
The following attestation bundles were made for pysentry_rs-0.3.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on nyudenkov/pysentry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysentry_rs-0.3.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
e263311d13eb6a1d8369d9eb88f5db3624c9848e2822cb57250014bc7eb9b598 - Sigstore transparency entry: 576038782
- Sigstore integration time:
-
Permalink:
nyudenkov/pysentry@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Branch / Tag:
refs/tags/v0.3.11 - Owner: https://github.com/nyudenkov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysentry_rs-0.3.11-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: pysentry_rs-0.3.11-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.1 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 |
dbce28731c8a15de1c92c27f2742534e9dc978da5821ab57446e95764c78d328
|
|
| MD5 |
53c3bf501eb7b576c62b730b7b4c8639
|
|
| BLAKE2b-256 |
4a9159ec4b1ff0110742ae0d7e8411cedeb36e20308da340d267f2a9bd304626
|
Provenance
The following attestation bundles were made for pysentry_rs-0.3.11-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
release.yml on nyudenkov/pysentry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysentry_rs-0.3.11-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
dbce28731c8a15de1c92c27f2742534e9dc978da5821ab57446e95764c78d328 - Sigstore transparency entry: 576038804
- Sigstore integration time:
-
Permalink:
nyudenkov/pysentry@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Branch / Tag:
refs/tags/v0.3.11 - Owner: https://github.com/nyudenkov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysentry_rs-0.3.11-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pysentry_rs-0.3.11-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e114a7ef0b984417645bcb06b2d4a8221e918ab0586a696b02d9e4b595ede5c2
|
|
| MD5 |
48dbc06eabdf6dab7c8eca9f35c30cd1
|
|
| BLAKE2b-256 |
26516be2d4a96eeeb27460815c357df1d2dfba7e8d822b0557c9166f6c0e73eb
|
Provenance
The following attestation bundles were made for pysentry_rs-0.3.11-cp311-cp311-macosx_10_12_x86_64.whl:
Publisher:
release.yml on nyudenkov/pysentry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysentry_rs-0.3.11-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
e114a7ef0b984417645bcb06b2d4a8221e918ab0586a696b02d9e4b595ede5c2 - Sigstore transparency entry: 576038889
- Sigstore integration time:
-
Permalink:
nyudenkov/pysentry@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Branch / Tag:
refs/tags/v0.3.11 - Owner: https://github.com/nyudenkov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysentry_rs-0.3.11-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: pysentry_rs-0.3.11-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 3.9 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 |
93282840496c106366f435168888026b487166dc8bfd03e29e0faaac3bdd937a
|
|
| MD5 |
bb1d64abb2e2f200630e015c623ed144
|
|
| BLAKE2b-256 |
bcf4cf735a64315f40a53ff7505135c00fd62bb6bd53fd6493927bf50513127c
|
Provenance
The following attestation bundles were made for pysentry_rs-0.3.11-cp310-cp310-win_amd64.whl:
Publisher:
release.yml on nyudenkov/pysentry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysentry_rs-0.3.11-cp310-cp310-win_amd64.whl -
Subject digest:
93282840496c106366f435168888026b487166dc8bfd03e29e0faaac3bdd937a - Sigstore transparency entry: 576038772
- Sigstore integration time:
-
Permalink:
nyudenkov/pysentry@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Branch / Tag:
refs/tags/v0.3.11 - Owner: https://github.com/nyudenkov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysentry_rs-0.3.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pysentry_rs-0.3.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.7 MB
- Tags: CPython 3.10, 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 |
92a9f13e73874d6abd6699d6d55a983cf03859c7c23b6bfc86e34f972b8b7bd9
|
|
| MD5 |
d7802a5c6756f1ffeeeb4150433f7c69
|
|
| BLAKE2b-256 |
b5806aac611191d28a984463bb64637da0e6782be9a5aa9762175fe651647974
|
Provenance
The following attestation bundles were made for pysentry_rs-0.3.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on nyudenkov/pysentry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysentry_rs-0.3.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
92a9f13e73874d6abd6699d6d55a983cf03859c7c23b6bfc86e34f972b8b7bd9 - Sigstore transparency entry: 576038911
- Sigstore integration time:
-
Permalink:
nyudenkov/pysentry@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Branch / Tag:
refs/tags/v0.3.11 - Owner: https://github.com/nyudenkov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysentry_rs-0.3.11-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: pysentry_rs-0.3.11-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.10, 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 |
16b89bc81457ad8e1f30c5ab4fddf558b2f52bb9f9b56adb1bd6c7512113913c
|
|
| MD5 |
6ddb80b009246a142a49018cdf6acdd9
|
|
| BLAKE2b-256 |
38aecff78c64136290a9372ea54fe6671a836407eafa5e9b4392728ddb4e0556
|
Provenance
The following attestation bundles were made for pysentry_rs-0.3.11-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
release.yml on nyudenkov/pysentry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysentry_rs-0.3.11-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
16b89bc81457ad8e1f30c5ab4fddf558b2f52bb9f9b56adb1bd6c7512113913c - Sigstore transparency entry: 576038871
- Sigstore integration time:
-
Permalink:
nyudenkov/pysentry@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Branch / Tag:
refs/tags/v0.3.11 - Owner: https://github.com/nyudenkov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysentry_rs-0.3.11-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pysentry_rs-0.3.11-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8cc8cb71557ca5611897aa337e811b5b852eb555d657695986adf03a91a99fb4
|
|
| MD5 |
be7ff8fca9b5f9121fc1cccdb1ce7ae0
|
|
| BLAKE2b-256 |
e196dcd65164e5ce54b4dc76e83bd22a89a2c6ba148b2eb56b322c5d220d48b1
|
Provenance
The following attestation bundles were made for pysentry_rs-0.3.11-cp310-cp310-macosx_10_12_x86_64.whl:
Publisher:
release.yml on nyudenkov/pysentry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysentry_rs-0.3.11-cp310-cp310-macosx_10_12_x86_64.whl -
Subject digest:
8cc8cb71557ca5611897aa337e811b5b852eb555d657695986adf03a91a99fb4 - Sigstore transparency entry: 576038868
- Sigstore integration time:
-
Permalink:
nyudenkov/pysentry@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Branch / Tag:
refs/tags/v0.3.11 - Owner: https://github.com/nyudenkov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysentry_rs-0.3.11-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: pysentry_rs-0.3.11-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1685b0e26c1d95c550d54222428d376b448169421e56fe1490d91ec407087975
|
|
| MD5 |
c5eba16e10c57da454c5b2a140fa5811
|
|
| BLAKE2b-256 |
70f8a106c00d365965451ca39a995c161c8738fd0130cdba221d1b96fb612c84
|
Provenance
The following attestation bundles were made for pysentry_rs-0.3.11-cp39-cp39-win_amd64.whl:
Publisher:
release.yml on nyudenkov/pysentry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysentry_rs-0.3.11-cp39-cp39-win_amd64.whl -
Subject digest:
1685b0e26c1d95c550d54222428d376b448169421e56fe1490d91ec407087975 - Sigstore transparency entry: 576038922
- Sigstore integration time:
-
Permalink:
nyudenkov/pysentry@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Branch / Tag:
refs/tags/v0.3.11 - Owner: https://github.com/nyudenkov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysentry_rs-0.3.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pysentry_rs-0.3.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.7 MB
- Tags: CPython 3.9, 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 |
fff560b2c9f9196e23ef08659a07ddb022841dcb4c9a2f8dc53a20aa12a475ea
|
|
| MD5 |
2c49e167d4cf765cf35a773ff0a916c1
|
|
| BLAKE2b-256 |
978bff6c5a705facb02239ffca64931c5e04584742abf3578598e8dca6cef833
|
Provenance
The following attestation bundles were made for pysentry_rs-0.3.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on nyudenkov/pysentry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysentry_rs-0.3.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
fff560b2c9f9196e23ef08659a07ddb022841dcb4c9a2f8dc53a20aa12a475ea - Sigstore transparency entry: 576038850
- Sigstore integration time:
-
Permalink:
nyudenkov/pysentry@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Branch / Tag:
refs/tags/v0.3.11 - Owner: https://github.com/nyudenkov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysentry_rs-0.3.11-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: pysentry_rs-0.3.11-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.9, 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 |
947b0cfa8a327d8d058bbdbf07b1e2ab790551d6fb3890578c7189c9e283fcfd
|
|
| MD5 |
d689b3d05461f11582777e24f88de4ff
|
|
| BLAKE2b-256 |
0602ce7addd94afcdd1b305c6498a573ab888e5220d93eecac2132ace35e2ae2
|
Provenance
The following attestation bundles were made for pysentry_rs-0.3.11-cp39-cp39-macosx_11_0_arm64.whl:
Publisher:
release.yml on nyudenkov/pysentry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysentry_rs-0.3.11-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
947b0cfa8a327d8d058bbdbf07b1e2ab790551d6fb3890578c7189c9e283fcfd - Sigstore transparency entry: 576038839
- Sigstore integration time:
-
Permalink:
nyudenkov/pysentry@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Branch / Tag:
refs/tags/v0.3.11 - Owner: https://github.com/nyudenkov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysentry_rs-0.3.11-cp39-cp39-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pysentry_rs-0.3.11-cp39-cp39-macosx_10_12_x86_64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.9, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
213fc184ba81809b4ae97aede4cf88d408df7cc3097daada094f261394e852b8
|
|
| MD5 |
86f9f6dede576298e4f4e0e2757fff79
|
|
| BLAKE2b-256 |
8d62e7ae13ae8d521cb5cf7797e888cf6ddef64f46e45b7f469a1bce3103b447
|
Provenance
The following attestation bundles were made for pysentry_rs-0.3.11-cp39-cp39-macosx_10_12_x86_64.whl:
Publisher:
release.yml on nyudenkov/pysentry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysentry_rs-0.3.11-cp39-cp39-macosx_10_12_x86_64.whl -
Subject digest:
213fc184ba81809b4ae97aede4cf88d408df7cc3097daada094f261394e852b8 - Sigstore transparency entry: 576038903
- Sigstore integration time:
-
Permalink:
nyudenkov/pysentry@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Branch / Tag:
refs/tags/v0.3.11 - Owner: https://github.com/nyudenkov
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@e9d8881e9c951883442abf91f6f5ceb47fb73b74 -
Trigger Event:
push
-
Statement type: