salmannotkhan / fiverr-api

Unofficial Fiverr API to get data
https://fiverr-api.vercel.app
MIT License
35 stars 12 forks source link
fastapi fiverr fiverr-api python3 vercel

Unofficial Fiverr API

Vercel Python Release

This is an unofficial api to fetch Fiverr seller's data

How to run?

Manually

Prerequisites:
python >= 3.9
pip >= 20.3

git clone https://github.com/salmannotkhan/fiverr-api.git
cd fiverr-api
pip3 install -r requirements.txt
uvicorn main:app

Docker

Prerequirsites:
Docker must be installed on system

Creating docker image

docker build -t fiverr-api .

-t: This option will assign fiverr-api tag to docker image

Running docker container

docker run --rm -d -p 8000:8000 fiverr-api

--rm: This option will delete container as soon it's stopped
-d: This will detach container and it will run in background
-p 8000:8000: This will expose container's port 8000 to host's port 8000

Stopping docker container

docker stop CONTAINER_ID

Usage

Visit API Docs from here

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT