Skip to main content

Community SDK for parsing, validating, and generating Egyptian InstaPay payment links. Zero dependencies for the core API.

Project description

instapay-eg

instapay-eg logo

Community SDK for Egyptian InstaPay payment links.
Parse, validate, audit, and generate QR codes - with zero core dependencies.

PyPI Python CI Coverage License


What is instapay-eg?

instapay-eg is a Python SDK for working with Egyptian InstaPay payment links (https://ipn.eg/S/...).

InstaPay is Egypt's national instant payment network, built by the Egyptian Banks Company (EBC). Developers building Egyptian fintech applications - food delivery, e-commerce, booking platforms, freelance marketplaces - regularly need to:

  • Parse the multi-line share-sheet text the InstaPay app produces
  • Verify that a link is genuinely from InstaPay and not a phishing URL
  • Extract a user's handle for display or storage
  • Generate QR codes for payment requests
  • Integrate payment link validation into their Pydantic/FastAPI or Django models

This SDK solves all of that with a clean, typed, zero-dependency core API.

Features

Feature Details
🔍 Smart Parsing Extracts the URL from raw multi-line share-sheet text automatically
🛡️ Anti-Phishing Detects lookalike domains, homoglyph attacks, and injection payloads
🔬 Security Audit audit_link() returns a structured SecurityReport for logging
📱 QR Codes PNG, SVG, bytes, and base64 - covers every web and mobile use case
🤝 Pydantic v2 Annotated types (InstaPayLink, InstaPayHandle) for FastAPI schemas
🦄 Django InstaPayLinkField ORM field and InstaPayHandleFormField form field
💻 CLI instapay parse "...", instapay audit "..."
100% Typed Full py.typed marker, passes strict type checking
🧪 100% Tested 100% branch coverage enforced in CI

Installation

Using pip:

pip install instapay-eg

Using uv:

uv add instapay-eg

With Optional Extras

# For Pydantic / FastAPI integration:
pip install "instapay-eg[pydantic]"

# For QR code generation:
pip install "instapay-eg[qrcode]"

# For Django integration:
pip install "instapay-eg[django]"

# Everything at once:
pip install "instapay-eg[all]"

Quick Demo

from instapay_eg import parse_text

# Paste the raw text from the InstaPay app share sheet:
raw = """
https://ipn.eg/S/alice/instapay/2DcFGv
Click the link to send money to
alice@instapay
Powered by InstaPay
"""

data = parse_text(raw)

print(data.link)            # https://ipn.eg/S/alice/instapay/2DcFGv
print(data.handle)          # alice
print(data.formatted_handle) # alice@instapay
print(data.raw_url_id)      # 2DcFGv
print(data.is_verified)     # True

Security Audit

from instapay_eg import audit_link

# Check a suspicious link:
report = audit_link("https://ipn.eg.evil.com/S/alice/instapay/fake")

print(report.is_safe)        # False
print(report.phishing_risk)  # True
print(report.failure_reason) # "Domain 'ipn.eg.evil.com' matches a known phishing pattern."

Pydantic / FastAPI

from fastapi import FastAPI
from pydantic import BaseModel
from instapay_eg.integrations.pydantic import InstaPayLink, InstaPayHandle

class PaymentRequest(BaseModel):
    # Users can paste raw share-sheet text - the link is extracted & verified automatically
    link: InstaPayLink
    recipient: InstaPayHandle

app = FastAPI()

@app.post("/payments")
async def create_payment(payment: PaymentRequest):
    return {"link": payment.link, "recipient": payment.recipient}

QR Code Generation

from instapay_eg.integrations.qrcode import qr_as_base64, save_qr

link = "https://ipn.eg/S/alice/instapay/2DcFGv"

# Return in a JSON API response - no file I/O needed:
b64 = qr_as_base64(link)
# → Use in HTML: <img src="data:image/png;base64,{b64}" />

# Or save to disk:
save_qr(link, "alice_payment_qr.png")

CLI

# Parse share-sheet text:
$ instapay parse "https://ipn.eg/S/alice/instapay/2DcFGv Click to pay..."
  Link:    https://ipn.eg/S/alice/instapay/2DcFGv
  Handle:  alice
  Format:  alice@instapay
  Safe:     Yes

# Audit a suspicious URL:
$ instapay audit "https://ipn.eg.evil.com/S/alice/instapay/fake"
  Status:    UNSAFE - DO NOT USE
  Phishing:  LOOKALIKE DOMAIN DETECTED

Documentation

Full documentation is available at mohamedmostafa259.github.io/instapay-eg.

Contributing

Contributions are welcome! Please read CONTRIBUTING.md first.

Disclaimer

This is an community-driven utility package. It is not affiliated with, endorsed by, or associated with the Egyptian Banks Company (EBC) or InstaPay Egypt.

License

MIT - see LICENSE for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

instapay_eg-0.1.5.tar.gz (16.4 kB view details)

Uploaded Source

Built Distribution

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

instapay_eg-0.1.5-py3-none-any.whl (20.6 kB view details)

Uploaded Python 3

File details

Details for the file instapay_eg-0.1.5.tar.gz.

File metadata

  • Download URL: instapay_eg-0.1.5.tar.gz
  • Upload date:
  • Size: 16.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for instapay_eg-0.1.5.tar.gz
Algorithm Hash digest
SHA256 b391dceb33f86a822fa8f0d3889beec555e8ed828094a79aacbd8e2993f348b4
MD5 e30e698553e183be00b8730d9ac49b15
BLAKE2b-256 84c6c3f6e285e612ee68f9f0110db4ac69886383ba98d7d24c0ef628029b9ef1

See more details on using hashes here.

Provenance

The following attestation bundles were made for instapay_eg-0.1.5.tar.gz:

Publisher: publish.yml on MohamedMostafa259/instapay-eg

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

File details

Details for the file instapay_eg-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: instapay_eg-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 20.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for instapay_eg-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 c5341ba7bb42ff5e448dcea851428e268dd8cb0edb7d522bed8699e065ce6df7
MD5 ce0497cf15f066ed154a1fc9db5693d2
BLAKE2b-256 d8fa4eab4000f90f16d77ad52b9072e0ff7806e231a5bd8e18459e00bb997aaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for instapay_eg-0.1.5-py3-none-any.whl:

Publisher: publish.yml on MohamedMostafa259/instapay-eg

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