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.3.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.3-py3-none-any.whl (20.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: instapay_eg-0.1.3.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.3.tar.gz
Algorithm Hash digest
SHA256 a0266dd2869790f452323de273a05ab7fd6d2997641b15f5f65df4f0c715ac02
MD5 117391f3cb9240c9801acf08b8dcac3c
BLAKE2b-256 6c8b7c3e63e97ec1a905394cc200673a3729a2777f23e5150d19e6dfd669d6ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for instapay_eg-0.1.3.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.3-py3-none-any.whl.

File metadata

  • Download URL: instapay_eg-0.1.3-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.3-py3-none-any.whl
Algorithm Hash digest
SHA256 7b53b25e8a36d51e7b980687c7bd72649b786c091a9cd395288ca7cf7902c68a
MD5 008b089c357a4eb533f82a109393a621
BLAKE2b-256 088ff65e1614ea9f2176d69e5781b73b5ddaaf1788a378baca0b66c4f07bd24c

See more details on using hashes here.

Provenance

The following attestation bundles were made for instapay_eg-0.1.3-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