Modern Python client for Aspen InfoPlus.21 (IP.21) with pandas DataFrame output, tag search, and automatic retry logic
Project description
Aspy21
Python Client for Aspen InfoPlus.21 (IP.21)
Note: This is an independent, unofficial client library. Not affiliated with AspenTech.
Overview
aspy21 is a modern, high-performance Python client for Aspen InfoPlus.21 (IP.21) built on the AspenOne ProcessData REST API. It provides unified access to process historian data with pandas DataFrame output, automatic batching, and intelligent retry logic.
Key Capabilities
- REST-based communication with Aspen IP.21 historian
- Basic HTTP authentication (cross-platform compatible)
- Hybrid search mode: Search for tags and read their data in one call
- Tag search with wildcards and description filtering
- Unified interface for analog, discrete, and text tags
- Support for RAW, INT, SNAPSHOT, and aggregate reader types (AVG, MIN, MAX, RNG)
- Smart aggregates: Query aggregates table with or without intervals for flexible period-based statistics
- Pandas DataFrame or JSON output with optional status and description fields
- Enum-based parameters for cleaner, type-safe API
- Configurable row limits and query parameters
- Built-in retry logic with exponential backoff
- Type-annotated and fully tested (88% coverage)
Use Cases
- Industrial data analysis and reporting
- Integration with data analytics pipelines
- Process monitoring and dashboard development
- Time-series data extraction and transformation
Installation
Install via pip:
pip install aspy21
Requirements
- Python 3.9+
- httpx >= 0.27
- pandas >= 2.0
- tenacity >= 9.0
Quick Start
Basic Usage with Context Manager
from aspy21 import AspenClient, OutputFormat, ReaderType
# Initialize client using context manager (recommended)
with AspenClient(
base_url="https://aspen.myplant.local/ProcessData",
auth=("user", "password"),
datasource="IP21" # Required for historical reads
) as client:
# Read historical data
df = client.read(
["ATI111", "AP101.PV"],
start="2025-06-20 08:00:00",
end="2025-06-20 09:00:00",
interval=600,
read_type=ReaderType.RAW,
output=OutputFormat.DATAFRAME,
)
print(df)
# Connection automatically closed
Usage Examples
Reading Aggregates Data
The aggregates reader types (AVG, MIN, MAX, RNG) query the IP.21 aggregates table for period-based statistics.
Average Values Over Time Intervals
from aspy21 import AspenClient, ReaderType, OutputFormat
with AspenClient(
base_url="https://aspen.example.com/ProcessData",
auth=("user", "password"),
datasource="IP21"
) as client:
# Get 10-minute averages for a 1-hour period
df = client.read(
["REACTOR_TEMP", "REACTOR_PRESSURE"],
start="2025-01-15 08:00:00",
end="2025-01-15 09:00:00",
interval=600, # 10 minutes (600 seconds)
read_type=ReaderType.AVG,
output=OutputFormat.DATAFRAME
)
# Returns 6 rows (one average per 10-minute interval)
print(df)
Single Aggregate Value for Entire Period
# Get a single average value over 24 hours (no interval)
with AspenClient(
base_url="https://aspen.example.com/ProcessData",
auth=("user", "password"),
datasource="IP21"
) as client:
data = client.read(
["REACTOR_TEMP"],
start="2025-01-15 00:00:00",
end="2025-01-16 00:00:00",
read_type=ReaderType.AVG, # No interval specified
output=OutputFormat.JSON
)
# Returns: [{"timestamp": "...", "tag": "REACTOR_TEMP", "value": 285.4}]
print(f"24-hour average: {data[0]['value']}")
Minimum and Maximum Values
# Find daily min/max temperatures
with AspenClient(
base_url="https://aspen.example.com/ProcessData",
auth=("user", "password"),
datasource="IP21"
) as client:
# Minimum values per hour
min_df = client.read(
["REACTOR_TEMP"],
start="2025-01-15 00:00:00",
end="2025-01-16 00:00:00",
interval=3600, # 1 hour
read_type=ReaderType.MIN,
output=OutputFormat.DATAFRAME
)
# Maximum values per hour
max_df = client.read(
["REACTOR_TEMP"],
start="2025-01-15 00:00:00",
end="2025-01-16 00:00:00",
interval=3600,
read_type=ReaderType.MAX,
output=OutputFormat.DATAFRAME
)
print(f"Hourly minimums:\n{min_df}")
print(f"Hourly maximums:\n{max_df}")
Range (Max - Min) Values
# Calculate hourly temperature ranges (variability)
with AspenClient(
base_url="https://aspen.example.com/ProcessData",
auth=("user", "password"),
datasource="IP21"
) as client:
df = client.read(
["REACTOR_TEMP", "COLUMN_TEMP"],
start="2025-01-15 00:00:00",
end="2025-01-15 12:00:00",
interval=3600, # 1 hour
read_type=ReaderType.RNG, # Range = Max - Min
output=OutputFormat.DATAFRAME
)
# Shows temperature variability over each hour
print(df)
Combining Multiple Aggregate Types
# Get comprehensive statistics for a process variable
with AspenClient(
base_url="https://aspen.example.com/ProcessData",
auth=("user", "password"),
datasource="IP21"
) as client:
tag = "REACTOR_TEMP"
period_start = "2025-01-15 08:00:00"
period_end = "2025-01-15 16:00:00"
# Get all statistics for 1-hour intervals
avg = client.read([tag], start=period_start, end=period_end,
interval=3600, read_type=ReaderType.AVG)
min_vals = client.read([tag], start=period_start, end=period_end,
interval=3600, read_type=ReaderType.MIN)
max_vals = client.read([tag], start=period_start, end=period_end,
interval=3600, read_type=ReaderType.MAX)
rng = client.read([tag], start=period_start, end=period_end,
interval=3600, read_type=ReaderType.RNG)
# Combine into analysis
import pandas as pd
stats = pd.DataFrame({
'avg': [d['value'] for d in avg],
'min': [d['value'] for d in min_vals],
'max': [d['value'] for d in max_vals],
'range': [d['value'] for d in rng],
})
print(stats)
Reading Raw and Interpolated Data
# Raw historical data (as stored in historian)
with AspenClient(
base_url="https://aspen.example.com/ProcessData",
auth=("user", "password"),
datasource="IP21"
) as client:
raw_df = client.read(
["FLOW_101", "LEVEL_205"],
start="2025-01-15 08:00:00",
end="2025-01-15 09:00:00",
read_type=ReaderType.RAW,
output=OutputFormat.DATAFRAME
)
print(f"Raw data points: {len(raw_df)}")
# Interpolated data at regular intervals
int_df = client.read(
["FLOW_101", "LEVEL_205"],
start="2025-01-15 08:00:00",
end="2025-01-15 09:00:00",
interval=60, # 1-minute intervals
read_type=ReaderType.INT,
output=OutputFormat.DATAFRAME
)
print(f"Interpolated data points: {len(int_df)}")
Snapshot (Current Values)
# Get current values for multiple tags
with AspenClient(
base_url="https://aspen.example.com/ProcessData",
auth=("user", "password"),
datasource="IP21"
) as client:
# Method 1: Explicit SNAPSHOT read type
df = client.read(
["TEMP_101", "PRESSURE_102", "FLOW_103"],
read_type=ReaderType.SNAPSHOT,
output=OutputFormat.DATAFRAME
)
# Method 2: Omit start/end (defaults to SNAPSHOT)
df = client.read(
["TEMP_101", "PRESSURE_102", "FLOW_103"],
output=OutputFormat.DATAFRAME
)
print(df)
Search and Read (Hybrid Mode)
# Search for tags and read their data in one call
with AspenClient(
base_url="https://aspen.example.com/ProcessData",
auth=("user", "password"),
datasource="IP21"
) as client:
# Find all reactor temperature tags and get hourly averages
df = client.search(
tag="REACTOR_*_TEMP",
start="2025-01-15 00:00:00",
end="2025-01-16 00:00:00",
interval=3600,
read_type=ReaderType.AVG,
output=OutputFormat.DATAFRAME
)
print(f"Found and read data for {len(df.columns)} tags")
print(df)
Including Status and Descriptions
from aspy21 import IncludeFields
with AspenClient(
base_url="https://aspen.example.com/ProcessData",
auth=("user", "password"),
datasource="IP21"
) as client:
# Include quality status codes
df = client.read(
["REACTOR_TEMP"],
start="2025-01-15 08:00:00",
end="2025-01-15 09:00:00",
interval=600,
read_type=ReaderType.AVG,
include=IncludeFields.STATUS,
output=OutputFormat.DATAFRAME
)
# DataFrame includes REACTOR_TEMP and REACTOR_TEMP_status columns
# Include descriptions
df = client.read(
["REACTOR_TEMP"],
start="2025-01-15 08:00:00",
end="2025-01-15 09:00:00",
interval=600,
read_type=ReaderType.AVG,
include=IncludeFields.DESCRIPTION,
output=OutputFormat.DATAFRAME
)
# Include both status and descriptions
df = client.read(
["REACTOR_TEMP"],
start="2025-01-15 08:00:00",
end="2025-01-15 09:00:00",
interval=600,
read_type=ReaderType.AVG,
include=IncludeFields.ALL,
output=OutputFormat.DATAFRAME
)
Authentication
HTTP Basic Authentication
with AspenClient(
base_url="https://aspen.example.com/ProcessData",
auth=("user", "password"),
datasource="IP21" # Required for historical reads
) as client:
# Your code here
pass
No Authentication
For public or internal endpoints:
with AspenClient(
base_url="http://aspen.example.com/ProcessData",
datasource="IP21" # Required for historical reads
) as client:
# Your code here
pass
Caching
Overview
Built-in caching layer reduces API load by 60-80% and improves performance by 10-100x for repeated queries. The cache uses TTL (Time-To-Live) + LRU (Least Recently Used) eviction and is fully thread-safe.
Smart Caching Strategy
- Historical data (past data): Long TTL (24 hours) - this data doesn't change
- Search results: Medium TTL (1 hour) - metadata changes infrequently
- Aggregates: Long TTL (24 hours) - computed values are stable
- Snapshots: Short TTL (1 minute) - current values change frequently
- Current data: Not cached with long TTL - data is volatile
Enabling Cache
Basic Usage (Default Configuration)
from aspy21 import AspenClient
# Enable caching with defaults
with AspenClient(
base_url="https://aspen.example.com/ProcessData",
auth=("user", "password"),
cache=True # Enable with default settings
) as client:
# First read hits API
data1 = client.read(["TAG1"], start="2025-01-01 08:00:00", end="2025-01-01 09:00:00")
# Second identical read hits cache (10-100x faster!)
data2 = client.read(["TAG1"], start="2025-01-01 08:00:00", end="2025-01-01 09:00:00")
# Check cache statistics
stats = client.get_cache_stats()
print(f"Cache hit rate: {stats['hit_rate_percent']}%")
Custom Configuration
from aspy21 import AspenClient, CacheConfig
# Configure cache with custom TTLs and size
config = CacheConfig(
enabled=True,
max_size=500, # Limit to 500 cached entries
ttl_historical=7200, # 2 hours for historical data
ttl_search=1800, # 30 minutes for search results
ttl_snapshot=30, # 30 seconds for current values
ttl_aggregates=7200, # 2 hours for aggregates
)
with AspenClient(
base_url="https://aspen.example.com/ProcessData",
auth=("user", "password"),
cache=config # Use custom configuration
) as client:
# Your code here
pass
Share Cache Across Clients
from aspy21 import AspenClient, AspenCache
# Create a shared cache instance
shared_cache = AspenCache()
# Use same cache for multiple clients
with AspenClient(base_url=url1, cache=shared_cache) as client1:
with AspenClient(base_url=url2, cache=shared_cache) as client2:
# Both clients share the same cache
client1.read([...])
client2.read([...])
# Combined statistics
stats = shared_cache.get_stats()
Cache Management
Get Statistics
stats = client.get_cache_stats()
print(f"Cache size: {stats['size']} entries")
print(f"Hit rate: {stats['hit_rate_percent']}%")
print(f"Hits: {stats['hits']}, Misses: {stats['misses']}")
Clear Cache
# Clear all cached entries
count = client.clear_cache()
print(f"Cleared {count} entries")
Invalidate Specific Entries
# Invalidate cache for specific tags/time range
count = client.invalidate_cache(
tags=["TAG1", "TAG2"],
start="2025-01-01 00:00:00",
end="2025-01-01 01:00:00"
)
Performance Benefits
Typical Performance Improvements:
- API calls reduced by 60-80% for repeated queries
- Query response time: 10-100x faster for cached data
- Network traffic significantly reduced
- Server load reduced
Example Timing:
import time
with AspenClient(base_url=url, auth=auth, cache=True) as client:
# First call - hits API (~500ms)
start = time.time()
df1 = client.read(["TAG1"], start="2025-01-01 08:00:00", end="2025-01-01 09:00:00")
api_time = time.time() - start
print(f"API call: {api_time:.3f}s")
# Second call - from cache (~5ms)
start = time.time()
df2 = client.read(["TAG1"], start="2025-01-01 08:00:00", end="2025-01-01 09:00:00")
cache_time = time.time() - start
print(f"Cache hit: {cache_time:.3f}s ({api_time/cache_time:.0f}x faster!)")
Cache Behavior Details
What Gets Cached:
- Historical data reads (data older than 1 minute)
- Search results (tag names and metadata)
- Aggregate queries (AVG, MIN, MAX, RNG)
What Does NOT Get Cached (or uses short TTL):
- Current/recent data (within last 1 minute)
- Snapshot reads (short 1-minute TTL)
- Failed requests or errors
Thread Safety:
- All cache operations are thread-safe
- Can be safely used in multi-threaded applications
- No data corruption or race conditions
Memory Management:
- LRU eviction when max_size reached
- Automatic cleanup of expired entries
- Configurable size limits prevent memory issues
API Reference
AspenClient
Constructor Parameters (all except base_url are keyword-only):
| Parameter | Type | Default | Description |
|---|---|---|---|
base_url |
str | required | Base URL of Aspen ProcessData REST API |
auth |
Auth|tuple|None | None | Authentication as (username, password) tuple or httpx Auth object |
timeout |
float | 30.0 | Request timeout in seconds |
verify_ssl |
bool | True | Whether to verify SSL certificates |
datasource |
str|None | None | Aspen datasource name (required for search) |
cache |
AspenCache|CacheConfig|bool|None | None | Enable caching: True (default config), CacheConfig instance, or AspenCache instance |
read() Method
Read historical or snapshot data for multiple tags.
Signature:
def read(
tags: list[str],
*,
start: str | None = None,
end: str | None = None,
interval: int | None = None,
read_type: ReaderType = ReaderType.INT,
include: IncludeFields = IncludeFields.NONE,
limit: int = 100_000,
output: OutputFormat = OutputFormat.JSON,
) -> pd.DataFrame | list[dict]:
Parameters:
| Parameter | Type | Default | Description |
|---|---|---|---|
tags |
list[str] | required | List of tag names to retrieve (positional-only) |
start |
str|None | None | Start timestamp (ISO format). When omitted, defaults to SNAPSHOT read. |
end |
str|None | None | End timestamp (ISO format). When omitted, defaults to SNAPSHOT read. |
interval |
int|None | None | Interval in seconds for aggregated data (AVG reads) |
read_type |
ReaderType | INT | Data retrieval mode (RAW, INT, SNAPSHOT, AVG) |
include |
IncludeFields | NONE | Which optional fields to include (NONE, STATUS, DESCRIPTION, ALL) |
limit |
int | 100000 | Maximum rows to return per tag |
output |
OutputFormat | JSON | Output format (JSON or DATAFRAME) |
Returns:
- If
output=OutputFormat.DATAFRAME: pandas.DataFrame with time index and columns for each tag. - If
output=OutputFormat.JSON: List of dictionaries withtimestamp,tag,value, and optionaldescription/statusfields.
Examples:
# JSON output (default)
data = client.read(
["ATI111"],
start="2025-01-01 00:00:00",
end="2025-01-01 01:00:00"
)
# DataFrame output with status and descriptions
df = client.read(
["ATI111", "AP101.PV"],
start="2025-01-01 00:00:00",
end="2025-01-01 01:00:00",
output=OutputFormat.DATAFRAME,
include=IncludeFields.ALL
)
Snapshot reads:
- Supplying no
start/end(or explicitly choosingReaderType.SNAPSHOT) returns the latest values.- When
include=IncludeFields.STATUSorIncludeFields.ALL, includes quality/status codes.
search() Method
Search for tags by name pattern and/or description. Optionally read their data in hybrid mode.
Signature:
def search(
tag: str = "*",
*,
description: str | None = None,
case_sensitive: bool = False,
limit: int = 10_000,
# Optional read parameters for hybrid mode
start: str | None = None,
end: str | None = None,
interval: int | None = None,
read_type: ReaderType = ReaderType.INT,
include: IncludeFields = IncludeFields.NONE,
output: OutputFormat = OutputFormat.JSON,
) -> pd.DataFrame | list[dict] | list[str]:
Parameters:
| Parameter | Type | Default | Description |
|---|---|---|---|
tag |
str | "*" |
Tag name pattern with wildcards (*, ?) |
description |
str|None | None | Description filter (case-insensitive). Uses SQL endpoint when provided. |
case_sensitive |
bool | False | Case-sensitive tag matching (Browse endpoint only) |
limit |
int | 10000 | Max results (search mode) or max rows per tag (hybrid mode) |
start |
str|None | None | Triggers hybrid mode: Start timestamp for data retrieval |
end |
str|None | None | End timestamp (defaults to current time if omitted) |
interval |
int|None | None | Interval in seconds for aggregated data |
read_type |
ReaderType | INT | Data retrieval mode for hybrid mode |
include |
IncludeFields | NONE | Fields to include (NONE, STATUS, DESCRIPTION, ALL) |
output |
OutputFormat | JSON | Output format (JSON or DATAFRAME) |
Returns:
- Search-only mode (no
start):- If
include=NONEorSTATUS: List of tag name strings - If
include=DESCRIPTIONorALL: List of dicts with 'name' and 'description'
- If
- Hybrid mode (with
start):- If
output=JSON: List of dicts with timestamp, tag, value, and optional fields - If
output=DATAFRAME: pandas DataFrame
- If
Requirements:
datasourcemust be configured in AspenClient
Modes:
- Search-only (no
start): Find tags matching criteria - Hybrid mode (with
start): Search for tags AND read their data in one call
Wildcards:
*- Matches any number of characters?- Matches exactly one character
Examples:
# Search-only: Get tag names (default)
tag_names = client.search("TEMP*")
# Returns: ["TEMP_101", "TEMP_102", ...]
# Search-only: Get tags with descriptions
tags = client.search("TEMP*", include=IncludeFields.DESCRIPTION)
# Returns: [{"name": "TEMP_101", "description": "Reactor temp"}, ...]
# Hybrid mode: Search and read data in one call
df = client.search(
"TEMP*",
start="2025-01-01 00:00:00",
end="2025-01-01 01:00:00",
output=OutputFormat.DATAFRAME
)
# Returns: DataFrame with data for all TEMP* tags
# Search by description (SQL endpoint)
tags = client.search(description="reactor", include=IncludeFields.DESCRIPTION)
# Combine pattern and description
tags = client.search("AI_1*", description="pressure", include=IncludeFields.DESCRIPTION)
Enums
ReaderType
Data retrieval modes:
ReaderType.RAW- Raw data points as stored in historianReaderType.INT- Interpolated values at specified intervals (default)ReaderType.SNAPSHOT- Current snapshot of tag valuesReaderType.AVG- Average values from aggregates table (with/without interval)ReaderType.MIN- Minimum value over the period (from aggregates table)ReaderType.MAX- Maximum value over the period (from aggregates table)ReaderType.RNG- Range (max-min) over the period (from aggregates table)
Aggregates types (AVG, MIN, MAX, RNG) query the aggregates table with the period automatically calculated in tenths of seconds:
- Without interval:
period = (end - start) * 10→ returns 1 aggregate value for entire range - With interval:
period = interval * 10→ returns multiple values (one per interval period)
Example: A 24-hour period becomes 864000 tenths of seconds (24 × 60 × 60 × 10), while a 10-minute interval becomes 6000 (600 × 10).
IncludeFields
Controls which optional fields to include in responses:
IncludeFields.NONE- Include only timestamp and value (default)IncludeFields.STATUS- Include status/quality codesIncludeFields.DESCRIPTION- Include tag descriptionsIncludeFields.ALL- Include both status and description
OutputFormat
Controls output format:
OutputFormat.JSON- Return as list of dictionaries (default)OutputFormat.DATAFRAME- Return as pandas DataFrame
Examples:
from aspy21 import AspenClient, IncludeFields, OutputFormat, ReaderType
# AVG with interval: returns multiple average values (one per interval)
df = client.read(
["TAG1", "TAG2"],
start="2025-01-01 00:00:00",
end="2025-01-01 01:00:00",
read_type=ReaderType.AVG,
interval=600, # 10-minute averages - returns 6 values (60min / 10min)
include=IncludeFields.ALL,
output=OutputFormat.DATAFRAME
)
# AVG without interval: returns single aggregate value for entire period
avg_value = client.read(
["TAG1"],
start="2025-01-01 00:00:00",
end="2025-01-02 00:00:00",
read_type=ReaderType.AVG, # Single average over 24 hours
output=OutputFormat.JSON
)
# Returns: [{"timestamp": "...", "tag": "TAG1", "value": 42.5}]
# Other aggregates (MIN/MAX/RNG) work the same way
min_value = client.read(
["TAG1"],
start="2025-01-01 00:00:00",
end="2025-01-02 00:00:00",
read_type=ReaderType.MIN, # Minimum value over 24 hours
output=OutputFormat.JSON
)
Configuration
Connection Settings
with AspenClient(
base_url="https://aspen.example.com/ProcessData",
auth=("user", "password"),
timeout=60.0, # Request timeout (seconds)
verify_ssl=True, # SSL certificate verification
datasource="IP21" # Required for search operations
) as client:
# Your code here
pass
Retry Behavior
The client automatically retries failed requests with exponential backoff:
- Maximum attempts: 3
- Initial delay: 0.5 seconds
- Maximum delay: 8 seconds
Error Handling
from aspy21 import AspenClient, OutputFormat
import httpx
try:
with AspenClient(
base_url="https://aspen.example.com/ProcessData",
auth=("user", "password"),
datasource="IP21"
) as client:
df = client.read(
["ATI111"],
start="2025-06-20 08:00:00",
end="2025-06-20 09:00:00",
output=OutputFormat.DATAFRAME,
)
except httpx.HTTPStatusError as e:
print(f"HTTP error: {e.response.status_code}")
except httpx.RequestError as e:
print(f"Connection error: {e}")
Development
Running Tests
# Install development dependencies
pip install -e ".[dev]"
# Run tests
pytest
# Run with coverage
pytest --cov=src/aspy21 --cov-report=html
Type Checking
pyright
Code Formatting
ruff format
Dependencies
Core Dependencies
- httpx (>= 0.27) - HTTP client with async support
- pandas (>= 2.0) - DataFrame output and date parsing
- tenacity (>= 9.0) - Retry logic with exponential backoff
Development Dependencies
- pytest, pytest-cov - Testing framework
- respx - HTTP mocking for tests
- ruff - Code formatting and linting
- pyright - Static type checking
- pre-commit - Git hooks
License
This project is licensed under the MIT License. See LICENSE file for details.
Contributing
Contributions are welcome. Please ensure:
- All tests pass (
pytest) - Code is formatted (
ruff format) - Type checking passes (
pyright) - Coverage remains above 85%
Support
For issues, questions, or feature requests, please open an issue on GitHub.
Disclaimer
This project is an independent open-source client library and is not affiliated with, endorsed by, or sponsored by AspenTech. "Aspen InfoPlus.21", "IP.21", and "AspenTech" are trademarks or registered trademarks of Aspen Technology, Inc.
This software interacts with Aspen InfoPlus.21 systems through their documented REST API endpoints. Users must have appropriate licenses and authorization to access AspenTech systems.
Users are responsible for compliance with their AspenTech license agreements and applicable terms of service. This library merely provides a technical interface and does not grant any rights to AspenTech software or services.
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 Distribution
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 aspy21-0.0.2.tar.gz.
File metadata
- Download URL: aspy21-0.0.2.tar.gz
- Upload date:
- Size: 627.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
147e533496a4f54a14dc5beab4320228543d9d4d62b8ca9806f26685d4f5ae6a
|
|
| MD5 |
f7ac258cf3b741b5d26aa52389565d67
|
|
| BLAKE2b-256 |
51e3d3139f34a24db18c2eb2f63c981b6639e2270619cd07edf0e18af661fa31
|
Provenance
The following attestation bundles were made for aspy21-0.0.2.tar.gz:
Publisher:
release.yml on bazdalaz/aspy21
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aspy21-0.0.2.tar.gz -
Subject digest:
147e533496a4f54a14dc5beab4320228543d9d4d62b8ca9806f26685d4f5ae6a - Sigstore transparency entry: 685014325
- Sigstore integration time:
-
Permalink:
bazdalaz/aspy21@eca93845e5d13cb7341cd793471b418221460409 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/bazdalaz
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@eca93845e5d13cb7341cd793471b418221460409 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aspy21-0.0.2-py3-none-any.whl.
File metadata
- Download URL: aspy21-0.0.2-py3-none-any.whl
- Upload date:
- Size: 38.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
751f4324c2a79d68fb059f5dabcd86346052747c0eb6cbdad1c15bf12aa1d792
|
|
| MD5 |
e4ad4e6567b814d12aec3078df92f9f0
|
|
| BLAKE2b-256 |
485e16f05a82246197481b2ff5b20e4b2ae084c2b518dfb5b3455a2901b20bb8
|
Provenance
The following attestation bundles were made for aspy21-0.0.2-py3-none-any.whl:
Publisher:
release.yml on bazdalaz/aspy21
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aspy21-0.0.2-py3-none-any.whl -
Subject digest:
751f4324c2a79d68fb059f5dabcd86346052747c0eb6cbdad1c15bf12aa1d792 - Sigstore transparency entry: 685014329
- Sigstore integration time:
-
Permalink:
bazdalaz/aspy21@eca93845e5d13cb7341cd793471b418221460409 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/bazdalaz
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@eca93845e5d13cb7341cd793471b418221460409 -
Trigger Event:
push
-
Statement type: