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

https://github.com/subhamsarangi/paylink

Payment Link System
https://github.com/subhamsarangi/paylink

fastapi payments python stripe

Last synced: 26 days ago
JSON representation

Payment Link System

Awesome Lists containing this project

README

          

# Payment Link System

A FastAPI-based application that integrates with Stripe to create and manage payment links. Users can generate payment links, process payments through Stripe Checkout, and track the payment status.

## Features
- Generate unique payment links.
- Stripe Checkout integration for secure payments.
- Payment links expire after 5 minutes.
- View payment statuses (Pending, Paid, Expired).
- Export payment data to CSV.

## Screenshots
#### Home Page
Home Page

#### Payment Link
Payment Link

#### Payment Page
Payment Page

#### Success Page
Success Page

#### Cancelled Page
Cancelled Page

#### Expired Page
Expired Page

## Configuration
- Set your Stripe API keys in the `.env` file:
```
STRIPE_PUBLIC_KEY=
STRIPE_SECRET_KEY=
```
## Run
`uvicorn main:app --reload`