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

pipx (recommended — isolated global CLI)

pipx install "pop-pay[mcp]"

pip

pip install "pop-pay[mcp]"

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

Other installation variants
# Core only (keyword guardrail + mock provider)
pip install "pop-pay"

# With CDP injection (browser automation)
pip install "pop-pay[mcp,browser]"

# With LLM-based guardrails (OpenAI, Ollama, vLLM, OpenRouter)
pip install "pop-pay[mcp,llm]"

# With Stripe virtual card issuing
pip install "pop-pay[stripe]"

# With LangChain integration
pip install "pop-pay[langchain]"

# Full installation (all features)
pip install "pop-pay[all]"

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

Uploaded CPython 3.13Windows x86-64

pop_pay-0.8.5-cp313-cp313-win32.whl (241.2 kB view details)

Uploaded CPython 3.13Windows x86

pop_pay-0.8.5-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (673.1 kB view details)

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

pop_pay-0.8.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (645.0 kB view details)

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

pop_pay-0.8.5-cp313-cp313-macosx_11_0_arm64.whl (171.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pop_pay-0.8.5-cp312-cp312-win_amd64.whl (217.5 kB view details)

Uploaded CPython 3.12Windows x86-64

pop_pay-0.8.5-cp312-cp312-win32.whl (190.0 kB view details)

Uploaded CPython 3.12Windows x86

pop_pay-0.8.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (517.7 kB view details)

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

pop_pay-0.8.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (496.9 kB view details)

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

pop_pay-0.8.5-cp312-cp312-macosx_11_0_arm64.whl (145.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pop_pay-0.8.5-cp311-cp311-win_amd64.whl (166.0 kB view details)

Uploaded CPython 3.11Windows x86-64

pop_pay-0.8.5-cp311-cp311-win32.whl (138.6 kB view details)

Uploaded CPython 3.11Windows x86

pop_pay-0.8.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (356.2 kB view details)

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

pop_pay-0.8.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (343.3 kB view details)

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

pop_pay-0.8.5-cp311-cp311-macosx_11_0_arm64.whl (118.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pop_pay-0.8.5-cp310-cp310-win_amd64.whl (114.7 kB view details)

Uploaded CPython 3.10Windows x86-64

pop_pay-0.8.5-cp310-cp310-win32.whl (87.3 kB view details)

Uploaded CPython 3.10Windows x86

pop_pay-0.8.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (206.2 kB view details)

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

pop_pay-0.8.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (199.7 kB view details)

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

pop_pay-0.8.5-cp310-cp310-macosx_11_0_arm64.whl (91.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: pop_pay-0.8.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 268.2 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.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d43caf9c662c6655c20e297a0dc44f7438f9d7af3d7e1d598d21942f9fb0de50
MD5 67b35e3167cf2b2213a1f6faf73071bd
BLAKE2b-256 1cb4831dc3d762b0f41255d13fa4382d53f345a2c118e4f438487998cd022beb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pop_pay-0.8.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 241.2 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.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7dadb7c4454077e7cf43f8c11186f9726efa8107ec740284440813b0c41f2bf0
MD5 8f0a0d1c6e5bbf1ca0178b8dda28eca4
BLAKE2b-256 3d27ec3310f111909266f2a385802e4bfd76e66116867eabf96804d8e771f88a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.5-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.5-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.5-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8312fcd6db4a2e02b90a720c8cd7dea08d990146e2b7ff7cfa3d1a2972fc2e2
MD5 e724fee227cf84e31025e10d194d10c7
BLAKE2b-256 2764308a6dc6b4699ea8fe80350f3ba6f17f782067ea6798ba0241da48e999e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.5-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.5-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.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aa68d48ef9fe1f2015cf47cfc96c932700593056d653ceced6faa438bba999cc
MD5 e987fb50854ecb1124689a5753f3499b
BLAKE2b-256 44416268b5768ecb46b58bb4479761df7d386aa71baabb3ef495d3efba27506e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pop_pay-0.8.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83105fb2c044e79ec006a83caeb80784300ce9a7c5992bc707d159f9cf01b4a9
MD5 e96b52a111cdfd2472383b0b63de5093
BLAKE2b-256 f8df7f66e347801fca51291d251d513f91c7dbdef74c4d0cc2b62ea007dd0fb0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pop_pay-0.8.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 217.5 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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3396f73ca6b9fecb481d9c2e5a22c05df0e7aa2fd3b178de7af6c13966bcdb25
MD5 771503cceddb3d3f83d09e49a2b91410
BLAKE2b-256 141dfabe6b651d3c80ff9ffe0e200cdd6c0cb0658297d10a5cb08af966995cd7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pop_pay-0.8.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 190.0 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.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 10ef9f65bf314ebd588d984d542ec9e9144d5295efd9c315a71ee135c61b452d
MD5 89dcff8b5c1b8571d0cf01b9d3f7f87d
BLAKE2b-256 a8f94a51b01fc75577bb4ea55817625a35b864ff2d838bd3f05e7bca766f9c6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.5-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.5-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.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43b86f2c7f7d5d65c2e748631565a5fdc5a933f0c05f749e8d5323aa86d279e2
MD5 c889d3be5623f66dff4ebbe8c586e06b
BLAKE2b-256 79ca658443524c4d6273d6353917b98d1b037bdb71a991d968bda6e6fc1c7150

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.5-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.5-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.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 52d9ef3458426d52835e560242db1ef3b31c049b1e563a5c1eb9f3dd7abb8e7b
MD5 5d49a3c786ae8cca471120aa717970da
BLAKE2b-256 6ea3c0636f12bdee7443c7bd79d85d8c79ba88eec4581ea606049819cdc3233a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pop_pay-0.8.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db11cb157cacd9c4b1da2e0b6d92cc6d2723fb128c4674f5fa5f1a261eafa01f
MD5 ac1b62490d949c4dd492e6a713b83fc0
BLAKE2b-256 535bbe79b77ef782fb87853f22328499eb2e23f5784ff5199050d6fb1dba30e0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pop_pay-0.8.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 166.0 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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 43c24e835a39869882082755aa5841ce104367e8d5a693d388bc0e149a2e7c26
MD5 7dcd8df3c236e8247d98863de4390aa0
BLAKE2b-256 4e9198bcdea0d9fe7c18112e868fe74971849b14a04fb503a1685425da92c575

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pop_pay-0.8.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 138.6 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.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4be4d58b2050e8685d88b158a28f1da8634bf89ac990c4701c5d352ad3737202
MD5 e43ff44f881e80852e4d89df83a69146
BLAKE2b-256 97bda3a6a8b8818f57cc060aefa2fce35cd4c56afa1e8e072ac84866fdeb0dd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.5-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.5-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.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 efc6ded93759cbbafb75d6bc46c4d1a080f1d0d1686f0582c3b44d41f3b2d228
MD5 71a35089e7abdb2be41486753d776b78
BLAKE2b-256 cef3b1a5513df7499cb1a1de006c30326b498b6145c460cbe0f02a517a79691e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.5-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.5-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.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 457ba7e9b549c9a88f53dad95b5aced6f0aa5363fa4f0517306370d24ae2a3a8
MD5 ee5539ec613500beab00de4ee71b7706
BLAKE2b-256 b303422a7c4dedf491ac273da39bfaf2bf6b50d78c7e5786451e40510198daf4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pop_pay-0.8.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce5f86d2ca8300d41d23e3a68a1e905e94c64a9df2173d038da7ff541dc41835
MD5 9f9dbbc438066293b883e971aea9c0f1
BLAKE2b-256 07725d5669b0d8f105c17310caaa861804fb58f95053e69c3727011d2de776cf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pop_pay-0.8.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 114.7 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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f49f3319542c3cb4ebe6a8658b0c12a9236bcc335f1904068c5e6cc72ebd8f06
MD5 89abb1f9f9d7857fb415b0b4d37a483f
BLAKE2b-256 430a0acad53fe2f3707284df848568a8c4cda1037c5f273abb3a69b1b0dc1ba0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pop_pay-0.8.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 87.3 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.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b85bc35acefc48b8a09dff22c87530e669bbaaf8995cbb6bc73c08f2862d8f6c
MD5 8440053742cc88f6079413f062b2b107
BLAKE2b-256 da2a82b4a76bfa2ab4011b7ca51dea05250ec3964717e0ecb382855e7b6c0dc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.5-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.5-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.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85ae1898a606e1a4ed125a2dcd74c3ba86b506470436d18c79a80470b6e31a58
MD5 85f7ee1a971d57088e7c4f2a20b7c799
BLAKE2b-256 4777b056bc71c2f38a489fdf02f1d7aa04dce7ebb62077b1f237beb303721b7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pop_pay-0.8.5-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.5-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.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 52353f5063e850a8f5eb6d0ea63d036732f049df1c3bd72daf5c5b27188cdbed
MD5 b1004522ae5a0c80ab47fb0d5c3129af
BLAKE2b-256 9ca6c36a22dd198f51ef5cdaadbf1ec0aa65ec6b4e72410632967f84ab822ff1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pop_pay-0.8.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5da3e65033a50385ac7b79c78605d28db0f4ebfbcd6b1d962beeadcf2099af53
MD5 b10dc029603b172084988fe59577ce42
BLAKE2b-256 627191923f5a8d6a12084e599ad799bd2a41869e474430264670ad2ed12f18cc

See more details on using hashes here.

Provenance

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