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.6-cp313-cp313-win_amd64.whl (268.4 kB view details)

Uploaded CPython 3.13Windows x86-64

pop_pay-0.8.6-cp313-cp313-win32.whl (241.4 kB view details)

Uploaded CPython 3.13Windows x86

pop_pay-0.8.6-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (673.2 kB view details)

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

pop_pay-0.8.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (645.1 kB view details)

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

pop_pay-0.8.6-cp313-cp313-macosx_11_0_arm64.whl (172.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pop_pay-0.8.6-cp312-cp312-win_amd64.whl (217.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pop_pay-0.8.6-cp312-cp312-win32.whl (190.2 kB view details)

Uploaded CPython 3.12Windows x86

pop_pay-0.8.6-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (517.8 kB view details)

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

pop_pay-0.8.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (497.1 kB view details)

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

pop_pay-0.8.6-cp312-cp312-macosx_11_0_arm64.whl (145.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pop_pay-0.8.6-cp311-cp311-win_amd64.whl (166.2 kB view details)

Uploaded CPython 3.11Windows x86-64

pop_pay-0.8.6-cp311-cp311-win32.whl (138.7 kB view details)

Uploaded CPython 3.11Windows x86

pop_pay-0.8.6-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (356.4 kB view details)

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

pop_pay-0.8.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (343.4 kB view details)

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

pop_pay-0.8.6-cp311-cp311-macosx_11_0_arm64.whl (118.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pop_pay-0.8.6-cp310-cp310-win_amd64.whl (114.8 kB view details)

Uploaded CPython 3.10Windows x86-64

pop_pay-0.8.6-cp310-cp310-win32.whl (87.5 kB view details)

Uploaded CPython 3.10Windows x86

pop_pay-0.8.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (206.3 kB view details)

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

pop_pay-0.8.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (199.9 kB view details)

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

pop_pay-0.8.6-cp310-cp310-macosx_11_0_arm64.whl (91.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: pop_pay-0.8.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 268.4 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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1d5f4712efd87055c372a1cf71f471107c16c1c55691149839ba20cec820a2c7
MD5 f3839455d1e488156c59d7fb90bd21f7
BLAKE2b-256 327a161b0b8c71190591f264378639bbdec0e9c8d5a24ca80eae645a369f7737

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.6-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.6-cp313-cp313-win32.whl.

File metadata

  • Download URL: pop_pay-0.8.6-cp313-cp313-win32.whl
  • Upload date:
  • Size: 241.4 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.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 07e5073e7a910b3ef37a80ba436c7a0b1c6cd31bfc210a6297f6e01f5618d459
MD5 a63a1c7e543c1bd5c8e2fe820a1b88f6
BLAKE2b-256 74834eba414326c55e10d067d76aee0409ddfca5b8682f224f66739d87a3131e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.6-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.6-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.6-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6baadae13b0e90abe1f8b9297bb23716487c8d4d42e710dff7cd520924f87ef
MD5 2e7ad984ece14dfd738413c09ce6a9e9
BLAKE2b-256 500ca106a23aaafb3e14db52f3b2ac7ebe706091625e647c78ec3e1cdb7d9e7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.6-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.6-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.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7a673f37e3be8f6108f29be4db916d58505993f0cf30392ab41c19e6e051d7bf
MD5 d3e237893aad646b108df9f1aab6875b
BLAKE2b-256 c588d564473e2a452957425ed32db3c6ab139766f5d8a8240236d937dfab476c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.6-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.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pop_pay-0.8.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f0c40d5e9a6854062588fe512843580295db0b25fa3aadbf53384740e0c46b9
MD5 a2bf14fa72474961e245dc1a63a2f382
BLAKE2b-256 0fcdb5b7a972eceafaf9e7fb21cef68ddfaea5858039c8de7c70b166d901f821

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.6-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.6-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pop_pay-0.8.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 217.6 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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d70716b5915587ff967fdb6cc736076c3e995df9b90e4692da35b00d7e944f2f
MD5 9782ef1e718709df2ac587d4d6ea4b36
BLAKE2b-256 de987e6d650685b7a978ad6e533b1a54b3e4f6ab2c72d98351268c97e02ea704

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.6-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.6-cp312-cp312-win32.whl.

File metadata

  • Download URL: pop_pay-0.8.6-cp312-cp312-win32.whl
  • Upload date:
  • Size: 190.2 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.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2fbce17b6064cfff34431ca14785ed582e1ad9adaa186ab2d7e86a78787f029b
MD5 57738db7e8a8a542d07115b615c57f07
BLAKE2b-256 8528088cab5bec3eb7a5ddf99c91a06c88da892ec867809165697d57838e4d89

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.6-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.6-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.6-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8d8ed619eb90d32bad7219f19a7d1e755dbb24744a2d64efe64f1616d7bdac6
MD5 3225a39f86fd921ed09e171323bc368a
BLAKE2b-256 e629b44fa9255472b05a98a6cf3d691b5b4a7f133de37988dfb0884e0a2ad443

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.6-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.6-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.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2056365f7f4ecb23269d58a94eca8840b9498abbf5bc313a39905603f5de5e4c
MD5 4abe942df469711a9eaa721bb6e4e9af
BLAKE2b-256 5e2ff2281d769d9766808c0e2b3daf4f9f90e5c6a0ef28fb1ed4e446b9170390

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.6-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.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pop_pay-0.8.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c62a15a398584114392cb9bb18cfc278b0419f246ccf4158278dda0517cb49e
MD5 a87900db4f26f3fe23ead267dd5a38e3
BLAKE2b-256 71f99341c67124b4e97f5a407fdab2239940d5627ff0d68d7e1d5d2387c1cc10

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.6-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.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pop_pay-0.8.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 166.2 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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 289f15f6b2bcac973abb60fd1b7317280dd793272b8d9d88f43f9e9043ac7595
MD5 689d0dc5caa75dc83aa4bfe7287a99d5
BLAKE2b-256 e97f38c816243de794c6093d37beba6fc762bb9c5e92ea25f237e4593d51684e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.6-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.6-cp311-cp311-win32.whl.

File metadata

  • Download URL: pop_pay-0.8.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 138.7 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.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e523de970d76e23a21f1f346d3445d79d8f1d218c1c9903239d6ab2d8844803c
MD5 8cdb63887ad232373513f6ddacf85f9b
BLAKE2b-256 722fbdf88745019514a312d479cc2b3f5f61969bbed26023904c12939a0f47bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.6-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.6-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.6-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ceb80ffa5d81f10392f291ff7d97c3ed944930c5277a602c600d5e5574d3d413
MD5 50ce9f21c5a286668065b17284cf1155
BLAKE2b-256 be92a07b33c31f31341ed0f26a1572a456f6af4e454592333308d942210f3ad8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.6-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.6-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.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3baf1cb9185ab17966bed15d21a87a2a7edb664b40863b05ef2607e10560ae6d
MD5 5109bf6265b3a71550756a4d0c759cc3
BLAKE2b-256 63f8610b0492cbf4386f7c0a944fd07813bd2fab8a7d3ec346db1d61ad03df6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.6-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.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pop_pay-0.8.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 523e1643ec1903e416883fc9fd16d7330a367aff78956b59ad5808d52ef29b75
MD5 72ecbdc8d6134095458dddcd682e8792
BLAKE2b-256 170c51bc7e4ba4c4e3fafe2f77db1350e59c40d4a2262ba45dd409611aa24478

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.6-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.6-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pop_pay-0.8.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 114.8 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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a6c49232b4c626052a9a4425356028c782644a6a13920d22eaaf9d84fa182e90
MD5 ea4dc5aaa68a7bca0e5ae99f44f47cd5
BLAKE2b-256 141ca9ae7bd569fcc84ab04fcd18a6c7b76f480111f0de54c8029164e670bd3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.6-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.6-cp310-cp310-win32.whl.

File metadata

  • Download URL: pop_pay-0.8.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 87.5 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.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 66643404cbc527ced8a3efb5cd2c89b1c5d47de91e766859b7230a7fd1244929
MD5 5fac618906236a9d0f56d06b23fee52a
BLAKE2b-256 3fd9f193d77113393279c53ad192f03c790faa6836bc48c2e964c0a05cf4ab2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.6-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.6-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.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d45a0ea4b84f9eb2af8af824e48dc8c20110c05760fd744de08b953f6fbde056
MD5 b1a1b13785b4f01fd75e60d846cd64c7
BLAKE2b-256 1f6fd62000aa665a13e58449a18b326e15aec93270bdb42d5ee1ac844a901ddd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.6-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.6-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.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 175633a0959cfd9a0c6a30a17d9bcd86d10d78f37ee7608c155379940c53acde
MD5 8d2a5f9a6bb849f9351d8f073fae2483
BLAKE2b-256 86e3433fb77c4de11e731900a732b85bfb8d837a4253bd8ed2fdedf6064d4317

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.6-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.6-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pop_pay-0.8.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92a13ce32c568fd90a0f99bb358c368e47dcbd97139239da214a12a6eb663ba5
MD5 7b38bfd33456e01e2b31937e7929dd77
BLAKE2b-256 a2294f20bb745ca247168911cbe2b174e1e9df755e80e2d13c80fe12482e4a40

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.6-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