Why? When I started developing video calling application at one point I faced this situation. In single pc(on localhost 127.0.0.1) everything works very well but when I need to test another pc on the same network for example(wifi) . Before on public production environment I wanted to test my own private network which was established […]
flask
How to implement json web token (jwt) in flask
What is json web token? JSON Web Token (JWT) is like a digital ID card for websites and apps. It’s often issued after a successful login and securely tells a website about the user and their accessibility Secure Cookies also do the same thing. but there is some core differences Feature JSON Web Token (JWT) […]
Flask Tutorial: Simple User Profile Template Example
In this tutorial we will write simple flask app that will show user profile by user name for example example.com/username Also here user can create a new account . Its a simple, also we will explore the features of temples. So we will be able to generate html dynamically. Lets begin First make our project […]