Skip to main content

The runtime security layer for AI agent commerce. Drop-in CLI + MCP server — blocks hallucinated purchases and keeps card credentials out of agent context. it only takes 0.1% of Hallucination to drain 100% of your wallet.

Project description

PyPI version License: MIT CI Python 3.10+

Point One Percent (AgentPay)

Point One Percent — pop-pay

Note: This is the PyPI published documentation. For the full architecture diagrams and real UI screenshots, please visit the GitHub Repository.

it only takes 0.1% of Hallucination to drain 100% of your wallet.

The runtime security layer for AI agent commerce. Drop-in CLI + MCP server. Card credentials are injected directly into the browser DOM via CDP — they never enter the agent's context window. One hallucinated prompt can't drain a wallet it can't see.

Point One Percent — live CDP injection demo

Install

Choose your preferred method:

pipx — isolated global CLI
pipx install "pop-pay[mcp]"
pip
pip install "pop-pay[mcp]"
uv (isolated tool install)
uv tool install "pop-pay[mcp]"
Extras matrix — feature flags
pip install "pop-pay"                  # core (keyword guardrail + mock provider)
pip install "pop-pay[mcp,browser]"     # CDP injection (browser automation)
pip install "pop-pay[mcp,llm]"         # LLM guardrails (OpenAI, Ollama, vLLM, OpenRouter)
pip install "pop-pay[stripe]"          # Stripe virtual card issuing
pip install "pop-pay[langchain]"       # LangChain integration
pip install "pop-pay[all]"             # everything

All install paths expose the CLI binaries: pop-launch, pop-init-vault, pop-unlock, and pop-pay (dashboard launcher).

Using Node.js / JavaScript? Check out pop-pay (npm)npm i -g pop-pay or brew install 100xpercent/tap/pop-pay. Same security model, same vault format, independent release cycle — safe to switch between runtimes.

Quick Start (CLI)

1. Initialize the encrypted credential vault

pop-init-vault

This encrypts your card credentials into ~/.config/pop-pay/vault.enc (AES-256-GCM). For stronger protection (blocks agents with shell access):

pop-init-vault --passphrase   # one-time setup
pop-unlock                     # run once per session

2. Launch Chrome with CDP remote debugging

pop-launch

Opens a Chromium instance on http://localhost:9222 that pop-pay injects credentials into. Your agent (via MCP, browser automation, or x402) then drives the checkout flow — card details never leave the browser process.

3. Open the monitoring dashboard (optional)

pop-pay

Real-time view of agent payment activity, budget utilization, and rejection logs.

4. Plug into your agent

Two supported integration paths:

  • MCP server — add pop-pay to any MCP-compatible client (Claude Code, OpenClaw). See MCP Server below.
  • Python SDK / LangChain — see Python SDK below.

MCP Server (optional)

The MCP server is invoked as a Python module and decrypts the vault at startup.

Add to your MCP client

{
  "mcpServers": {
    "pop-pay": {
      "command": "python3",
      "args": ["-m", "pop_pay.mcp_server"],
      "env": {
        "POP_CDP_URL": "http://localhost:9222"
      }
    }
  }
}
Claude Code
claude mcp add pop-pay -- python3 -m pop_pay.mcp_server

With environment variables:

claude mcp add pop-pay \
  -e POP_CDP_URL=http://localhost:9222 \
  -e POP_ALLOWED_CATEGORIES='["aws","cloudflare"]' \
  -e POP_MAX_PER_TX=100.0 \
  -e POP_MAX_DAILY=500.0 \
  -e POP_GUARDRAIL_ENGINE=keyword \
  -- python3 -m pop_pay.mcp_server
OpenClaw / NemoClaw

Compatible with any MCP host. See the Integration Guide for setup instructions and System Prompt templates.

Docker
docker-compose up -d

Runs the MCP server + headless Chromium with CDP. Mount your encrypted vault from the host. See docker-compose.yml for configuration.

MCP Tools

Tool Description
request_virtual_card Issue a virtual card and inject credentials into the checkout page via CDP.
request_purchaser_info Auto-fill billing/contact info (name, address, email, phone).
request_x402_payment Pay for API calls via the x402 HTTP payment protocol.
page_snapshot Scan a checkout page for hidden prompt injections or anomalies.

Configuration

Core variables in ~/.config/pop-pay/.env. See ENV_REFERENCE.md for the full list.

Variable Default Description
POP_ALLOWED_CATEGORIES ["aws","cloudflare"] Approved vendor categories — see Categories Cookbook
POP_MAX_PER_TX 100.0 Max USD per transaction
POP_MAX_DAILY 500.0 Max USD per day
POP_BLOCK_LOOPS true Block hallucination/retry loops
POP_AUTO_INJECT true Enable CDP card injection
POP_GUARDRAIL_ENGINE keyword keyword (zero-cost) or llm (semantic)

Guardrail Mode

keyword (default) llm
Mechanism Keyword matching on reasoning string Semantic analysis via LLM
Cost Zero — no API calls One LLM call per request
Best for Development, low-risk workflows Production, high-value transactions

To enable LLM mode, see Integration Guide §1.

Providers

Provider Description
BYOC (default) Bring Your Own Card — encrypted vault credentials, local CDP injection.
Stripe Issuing Real virtual cards via Stripe API. Requires POP_STRIPE_KEY.
Lithic Multi-issuer adapter (Stripe Issuing / Lithic).
Mock Test mode with generated card numbers for development.

Priority: Stripe Issuing → BYOC Local → Mock.

Python SDK

Integrate pop-pay into custom Python or LangChain workflows:

from pop_pay.client import PopClient
from pop_pay.providers.stripe_mock import MockStripeProvider
from pop_pay.core.models import GuardrailPolicy

client = PopClient(
    provider=MockStripeProvider(),
    policy=GuardrailPolicy(
        allowed_categories=["API", "Cloud"],
        max_amount_per_tx=50.0,
        max_daily_budget=200.0,
    ),
)

# LangChain integration
from pop_pay.tools.langchain import PopPaymentTool
tool = PopPaymentTool(client=client, agent_id="agent-01")

See Integration Guide §2 for the full SDK and provider reference.

Security

Layer Defense
Context Isolation Card credentials never enter the agent's context window or logs
Encrypted Vault AES-256-GCM with PBKDF2 key derivation and OS keyring integration
TOCTOU Guard Domain verified at the moment of CDP injection — blocks redirect attacks
Repr Redaction Automatic masking (****-4242) in all MCP responses, logs, and tracebacks

See THREAT_MODEL.md for the full STRIDE analysis and COMPLIANCE_FAQ.md for enterprise details.

Architecture

  • Python — Core engine, MCP server, guardrail logic, CLI
  • Cython — Performance-critical vault operations and memory protection
  • Chrome DevTools Protocol — Direct DOM injection via raw WebSocket
  • SQLite — Local transaction auditing and state management

Documentation

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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

pop_pay-0.8.7-cp313-cp313-win_amd64.whl (273.8 kB view details)

Uploaded CPython 3.13Windows x86-64

pop_pay-0.8.7-cp313-cp313-win32.whl (246.8 kB view details)

Uploaded CPython 3.13Windows x86

pop_pay-0.8.7-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (678.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pop_pay-0.8.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (650.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pop_pay-0.8.7-cp313-cp313-macosx_11_0_arm64.whl (177.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pop_pay-0.8.7-cp312-cp312-win_amd64.whl (223.0 kB view details)

Uploaded CPython 3.12Windows x86-64

pop_pay-0.8.7-cp312-cp312-win32.whl (195.6 kB view details)

Uploaded CPython 3.12Windows x86

pop_pay-0.8.7-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (523.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pop_pay-0.8.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (502.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pop_pay-0.8.7-cp312-cp312-macosx_11_0_arm64.whl (150.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pop_pay-0.8.7-cp311-cp311-win_amd64.whl (171.6 kB view details)

Uploaded CPython 3.11Windows x86-64

pop_pay-0.8.7-cp311-cp311-win32.whl (144.2 kB view details)

Uploaded CPython 3.11Windows x86

pop_pay-0.8.7-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (361.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pop_pay-0.8.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (348.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pop_pay-0.8.7-cp311-cp311-macosx_11_0_arm64.whl (123.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pop_pay-0.8.7-cp310-cp310-win_amd64.whl (120.3 kB view details)

Uploaded CPython 3.10Windows x86-64

pop_pay-0.8.7-cp310-cp310-win32.whl (92.9 kB view details)

Uploaded CPython 3.10Windows x86

pop_pay-0.8.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (211.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pop_pay-0.8.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (205.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pop_pay-0.8.7-cp310-cp310-macosx_11_0_arm64.whl (96.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file pop_pay-0.8.7-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pop_pay-0.8.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 273.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pop_pay-0.8.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 05761a10fd5e58d8a67c6d3402c74d09c787922cbc343da9d2c32c0ce23a180d
MD5 754881f300f3ada53bde8c0d28665d11
BLAKE2b-256 b47c3270b955a7b35f6cbf478a15c5d2564bf40fc1be3a9b793bbba99640e659

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.7-cp313-cp313-win_amd64.whl:

Publisher: build-wheels.yml on 100xPercent/pop-pay-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pop_pay-0.8.7-cp313-cp313-win32.whl.

File metadata

  • Download URL: pop_pay-0.8.7-cp313-cp313-win32.whl
  • Upload date:
  • Size: 246.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pop_pay-0.8.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 60f6a7774bbf22402eec808863bff4c41483176a26a50ee7d15aef387a52ea1e
MD5 8176a90686de1306fab351e5f8ff330f
BLAKE2b-256 8db69e8b29c4ce663ed8678a5c99943e00382045f5ed88a5451b46ddb34235b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.7-cp313-cp313-win32.whl:

Publisher: build-wheels.yml on 100xPercent/pop-pay-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pop_pay-0.8.7-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pop_pay-0.8.7-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b4130755d4b584f2c4113ed5d1098c08db3e53ab0905fa22fd8b6e32294ebfc
MD5 41ec06099e374707f27b076a8ac28285
BLAKE2b-256 d0d3be573c87ad2d4ea57f4c407e5ba15ea78a33373aec39687eabe551fbe079

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.7-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels.yml on 100xPercent/pop-pay-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pop_pay-0.8.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pop_pay-0.8.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c4fae71174a73dee7953b56c45b25f042c8474cda8ed5833cf2c6370c51562f3
MD5 69a160759e4427e108f362844ce56a56
BLAKE2b-256 bce72ddc3218fe61ef59b75c46b73f8c0e2b8fc0b49f7900a96aaf86cab3b188

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-wheels.yml on 100xPercent/pop-pay-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pop_pay-0.8.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pop_pay-0.8.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1510ac91c789771f84e8431f150996968e6e2c28e4cfec5160badd4cd5edb8d8
MD5 a445b3960a7c67e8bbc29d76dffa5061
BLAKE2b-256 3ad08218961690120e24f012476874a30bcc194790e1914f837faeda2fa3ea0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.7-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on 100xPercent/pop-pay-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pop_pay-0.8.7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pop_pay-0.8.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 223.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pop_pay-0.8.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a7739f1917b7bf9ccb779f9b6911e636c635fa7ca6bbbf46cbe5e6c13c172218
MD5 65700856a0bca9d528bc9240e907663f
BLAKE2b-256 bfbd2cd1fdd181870ed45596b4264cd8ca163dc0031faa2b46eaf1c414fafbae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.7-cp312-cp312-win_amd64.whl:

Publisher: build-wheels.yml on 100xPercent/pop-pay-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pop_pay-0.8.7-cp312-cp312-win32.whl.

File metadata

  • Download URL: pop_pay-0.8.7-cp312-cp312-win32.whl
  • Upload date:
  • Size: 195.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pop_pay-0.8.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 637578800f23fb4736bc86ecff62200cd46dab72268a298ab818a6edb852e4c2
MD5 13e1d20890c60a366bb9a804e3d5ae16
BLAKE2b-256 3f95ec524f27a91cfdf093e3b59cbb7c744031d4c1c335a871908d9ca70b6080

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.7-cp312-cp312-win32.whl:

Publisher: build-wheels.yml on 100xPercent/pop-pay-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pop_pay-0.8.7-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pop_pay-0.8.7-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79b1e3096be54071b8abe23d9c0b568913477f6ff25b246045ba35f20fed68d5
MD5 6bbc5c24c813d9b78137cb540d6244e5
BLAKE2b-256 9b0e85f370f6cfea9c626933a0aafb15a89f9a6ce4e94501086542ec31a57d68

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.7-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels.yml on 100xPercent/pop-pay-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pop_pay-0.8.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pop_pay-0.8.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fb2724c1fc8857fe58c60740c5710995ffddf331c5f5509beddf728346226455
MD5 7726ad8543a1fb192986bd2fea4da8db
BLAKE2b-256 9c6bf9caf6fe29471dca6e86c7a4ebc384a9788ed2707bebb18297f86faa9a97

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-wheels.yml on 100xPercent/pop-pay-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pop_pay-0.8.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pop_pay-0.8.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3db4ea475dfd732e676678a10958e44175fc770e1e83ae058c043a06a9f7278a
MD5 2f70a5f654809ccbe0c7fa601f7eaf7a
BLAKE2b-256 93bd3986f7d1f86266a28dbc9591dbce7c7ee685a27d2efb20f3632b8522f4c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.7-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on 100xPercent/pop-pay-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pop_pay-0.8.7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pop_pay-0.8.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 171.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pop_pay-0.8.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c8f97ca90da6908db81b40cfb558e1cd0e3b38b330cb5815d6492a63b6c71459
MD5 8dd926bece6af52f4aed55d50e6d4e26
BLAKE2b-256 d31e35ca3e99292c5986c75d58867a8e3a5c935f23374a7abae393e38ae83897

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.7-cp311-cp311-win_amd64.whl:

Publisher: build-wheels.yml on 100xPercent/pop-pay-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pop_pay-0.8.7-cp311-cp311-win32.whl.

File metadata

  • Download URL: pop_pay-0.8.7-cp311-cp311-win32.whl
  • Upload date:
  • Size: 144.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pop_pay-0.8.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 70511a6b7216772444cf05286ced8e55ceade8d7d35ad8db0f2f193788a1d740
MD5 a71dc2a249118657bbfd865e5d07cf5e
BLAKE2b-256 ad8e5bf4847c0a97a347823b5a1455c65624a519d2e717806421855b48e0d33b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.7-cp311-cp311-win32.whl:

Publisher: build-wheels.yml on 100xPercent/pop-pay-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pop_pay-0.8.7-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pop_pay-0.8.7-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e0f8e84ef5fb665cf52a39c5ebfc6eae4f7532fc01506f51d0f1cffd6b136dc
MD5 41327ea12553fc16d7933df64135de16
BLAKE2b-256 f87ea6cea55a517a28d31e7f3062b2c170906dab0b69725113914efd4af21169

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.7-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels.yml on 100xPercent/pop-pay-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pop_pay-0.8.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pop_pay-0.8.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 18cd33c0eaaa6fb2a849f264bc744467bc12b1148e7929f553a438015f8d28d6
MD5 6e0a277602e94f09aecdf120cf55a816
BLAKE2b-256 45b7bac4d3f09f6c814bcb2f394959dda98a2c6c5ca4331f4859f4f50c08a72b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-wheels.yml on 100xPercent/pop-pay-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pop_pay-0.8.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pop_pay-0.8.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a900bc2fd658bcfec1c36167a7cc4ff6b36e409cea5a8fe82709897b893d260f
MD5 d778336151e1720f3f4791488b4b97e1
BLAKE2b-256 bba779ff402b973ee02dd6e877e1bf2e17d00fa6d8552288b2e931141a4d74cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.7-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on 100xPercent/pop-pay-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pop_pay-0.8.7-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pop_pay-0.8.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 120.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pop_pay-0.8.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 774feee56d897673f485061832aec650fde0b2648f93963864a30276e200b2e7
MD5 f0ed9a063a22fc4e0b809f4c1702d5bd
BLAKE2b-256 93265da9712520f76d9c9e84c3d73414282b46a492ec05b37190edf3256c0ee5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.7-cp310-cp310-win_amd64.whl:

Publisher: build-wheels.yml on 100xPercent/pop-pay-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pop_pay-0.8.7-cp310-cp310-win32.whl.

File metadata

  • Download URL: pop_pay-0.8.7-cp310-cp310-win32.whl
  • Upload date:
  • Size: 92.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pop_pay-0.8.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b33b18a398777a1fc788c75949356d226372156107a3fbf8d3ec93b1f7826170
MD5 b5c10950956daed02492bfc41d1eaf9f
BLAKE2b-256 bcb4dcb1ff5036c6cf8c2b955c470169a1637ddc695608558ee0927d1e425700

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.7-cp310-cp310-win32.whl:

Publisher: build-wheels.yml on 100xPercent/pop-pay-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pop_pay-0.8.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pop_pay-0.8.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 317be558433392838e74c8c8a256c8d0db3ce8890b4ec11ff3e17d41d1b43c59
MD5 5bc9a9d38e217d1b24ea59fcc6d96709
BLAKE2b-256 4a86ad10821d7c74a925be9df82f880fce0563197adb298b225c3bd620471af3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels.yml on 100xPercent/pop-pay-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pop_pay-0.8.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pop_pay-0.8.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 beea5eee5191e2a5d523bb767bae123e7ac31fa9a82973b72460f83234332873
MD5 eeb869a12d09b2d72eababd8ea907fc8
BLAKE2b-256 8d77e1ae66721d64b93bb6844e3406c4fd9615c095bc3e9f888d4f53f62b891b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-wheels.yml on 100xPercent/pop-pay-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pop_pay-0.8.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pop_pay-0.8.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e762e384faa506476c89ef33dbe4ff017c43ad7087e3a182f57f59f403abb372
MD5 dce9b034c1fac1a1e059830d98f2b7f1
BLAKE2b-256 4770661531d5150f9d407ca7fd82d8f804ec446ae3b369c6e6d3ad967ae57896

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.7-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on 100xPercent/pop-pay-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page