An open API service indexing awesome lists of open source software.

https://github.com/sneezedip/paypal-receipt-generator

Generate PayPal-style receipts in multiple languages and currencies. Customizable, responsive, and perfect for demos, educational, or testing purposes.
https://github.com/sneezedip/paypal-receipt-generator

customizable demo educational fake fake-receipt generator html invoice paypal python receipt template testing

Last synced: about 2 months ago
JSON representation

Generate PayPal-style receipts in multiple languages and currencies. Customizable, responsive, and perfect for demos, educational, or testing purposes.

Awesome Lists containing this project

README

          

# PayPal Receipt Generator



[![Discord](https://img.shields.io/discord/1107726482224197642?label=discord&color=9089DA&logo=discord&style=for-the-badge)](https://discord.gg/nAa5PyxubF)

![Demo Screenshot](assets/demo.png)

Generate PayPal-style receipts in multiple languages and currencies.
Customizable, responsive, and perfect for demos, educational, or testing purposes.

---

## Features

- ๐Ÿงพ **PayPal-style HTML receipt output**
- ๐ŸŒ **Multi-language:** English, Portuguese, Egyptian Arabic (RTL)
- ๐Ÿ’ฑ **Multi-currency:** USD, EUR, GBP, EGP, BRL, and more
- โœ๏ธ **Customizable transaction details**
- ๐Ÿ“ฑ **Responsive and print-friendly**
- ๐Ÿšจ **Clearly marked as FAKE for educational/demo use**

---

## Usage

1. **Run the generator:**
```bash
python main.py
```

2. **Customize:**
- Edit the parameters in `main.py` to set name, email, amount, recipient, currency, and language.

---

## Example

```python
create_paypal_receipt_html(
name="John Doe",
email="john@example.com",
amount=100.00,
recipient="Jane Smith",
transaction_type="Payment",
currency="USD", # Try "USD", "EUR", "GBP", "EGP", "BRL"
lang="en" # Try "en", "pt", or "ar-eg"
)
```

---

## Supported Languages

- English (`en`)
- Portuguese (`pt`)
- Egyptian Arabic (`ar-eg`)

## Supported Currencies

- USD, EUR, GBP, EGP, BRL (easy to add more!)

---

## Disclaimer

> **This tool is for educational, demonstration, and testing purposes only.
> All receipts are clearly marked as fake and should not be used for fraudulent or deceptive activities.**
> **The author does not hold any responsibility for the bad use of this tool**

---

## Contributing

Pull requests and suggestions are welcome!