Simple Twitter clone API using Fastapi
This is a basic api which has major features of a twitter(social media app) using jwt token as authentication.It is microblogging and social networking service on which users post and interact with messages known as "tweets". Registered users can post, like, and retweet tweets, but unregistered users can only read those that are publicly available.
Basic CRUD operation on posts,users,votes,category,retweet.
1.CREATE
2.READ
3.UPDATE
4.DELETE
Fastapi
psycopg2 drivers //newer version is available
pydantic
uvicorn
others are listed in /required.txt
run using uvicorn:
uvicorn app.main:app --reload
Default location/url http://127.0.0.1:8000/ [Localhost]
USE POSTMAN FOR API HANDELING.
#Any contribution is appretiated