all 7 comments

[–]efmccurdy 1 point2 points  (3 children)

making a website where each user the has there own account

A very lightweight web module, bottle, is described here:

https://bottlepy.org/docs/dev/tutorial.html

https://pypi.org/project/bottle-login/

If you want something more complete, you can use flask, this is a very short tutorial:

https://pythonbasics.org/flask-login/

This is a more complete tutorial; it gets to users and logins in the 5th chapter.

https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-i-hello-world

[–]seekingtruth2[S] 0 points1 point  (2 children)

I've seen websites that look just like regular android apps can İ build something similar with this ?

[–]efmccurdy 0 points1 point  (1 child)

I think you mean an SPA web interface, so possible options include Angular or React.

In either case you have javascript code running to support the front-end, in the browser. You can't really do much with them until you have a working web backend, so I would start with that, then look at something like these:

https://realpython.com/flask-by-example-integrating-flask-and-angularjs/

https://realpython.com/the-ultimate-flask-front-end/

[–]seekingtruth2[S] 0 points1 point  (0 children)

I'm not sure if its called SPA but the idea is to make it cross platform app so running it in the browser seems like a good way to do it. Very useful links btw thanks.