This is an unofficial api to fetch Fiverr seller's data
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
- This will start localserver at
localhost:8000
Prerequirsites:
Docker must be installed on system
docker build -t fiverr-api .
-t: This option will assign
fiverr-api
tag to docker image
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
- This will start server at
localhost:8000
- It'll also return
CONTAINER_ID
which can be used to stop container
docker stop CONTAINER_ID
Visit API Docs from here
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.