below is my get call
@router.get("", response_model=UserGetModel)
async def get_user(email: str):
user = users.get_by_email(email)
if not user:
raise HTTPException(status_code=404, detail="User not found")
return user
GET http://localhost:8000/api/[email protected]
the value I'm getting as email is testuser [email protected] where + plus is replaced by space why is that?