https://github.com/thedmathz/api-toolkit
A modular collection of lightweight APIs designed to simplify and accelerate web application development.
https://github.com/thedmathz/api-toolkit
api fastapi postgresql
Last synced: about 2 months ago
JSON representation
A modular collection of lightweight APIs designed to simplify and accelerate web application development.
- Host: GitHub
- URL: https://github.com/thedmathz/api-toolkit
- Owner: thedmathz
- Created: 2025-10-06T17:35:30.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-10-06T18:04:01.000Z (9 months ago)
- Last Synced: 2025-10-06T19:28:13.560Z (9 months ago)
- Topics: api, fastapi, postgresql
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# API Toolkit
A modular collection of lightweight APIs designed to simplify and accelerate web application development.
### To Do
- SMS
- Payment Gateway Integration with Webhook
- Email Sending
- Identity Verification
- OCR
### How to Run in Windows 10/11?
- In project files, rename the file from **.env.example** to **.env**
- Open terminal then navigate to project path
```bash
cd
```
- Install virtual environment (if not yet installed)
```bash
python -m venv .venv
```
- Activate virtual environment
```bash
.venv\Scripts\activate
```
- Update pip version
```bash
python -m pip install --upgrade pip
```
- Install dependencies
```bash
pip install -r requirements.txt
```
- Run the app
```bash
uvicorn main:app --reload --host 0.0.0.0
```
- You can look for the APIs in the browser with URL **:8000/docs**