[Chennaipy] Suggest some authentication modules or library in python

2024-08-01 Thread Iron Man
Hi Team, I recently studying about authentication ways for securing API and other apps. Have found few Oauth2 library implementation in python pypi repositories and inbuilt authentication module in django. But my use case is very simple and minimal So if any of you used any authentication libra

Re: [Chennaipy] Suggest some authentication modules or library in python

2024-08-01 Thread Shrinivasan T
Explain your requirement in details. If all you want is to protect a web page with very minimal authentication, go with htpasswd by apache https://www.digitalocean.com/community/tutorials/how-to-set-up-password-authentication-with-apache-on-ubuntu-18-04-quickstart வியா., 1 ஆக., 2024, 12:34 PM அன

Re: [Chennaipy] Suggest some authentication modules or library in python

2024-08-01 Thread Iron Man
Hi Shrini, >> On Thu, 1 Aug, 2024, 22:14 Shrinivasan T, wrote: >> Explain your requirement in details. >> If all you want is to protect a web page with very minimal authentication, go with htpasswd by apache My requirement is not just limited to web pages, I am in search for authentication modu

Re: [Chennaipy] Suggest some authentication modules or library in python

2024-08-01 Thread Sivachandran Paramasivam
>> My requirement is not just limited to web pages, I am in search for authentication module which should be easy to setup and use for my python projects (web, api, tui, etc) The easiest/simplest authentication for web and api is HTTP Basic auth. You can do something like this https://stackoverflo

Re: [Chennaipy] Suggest some authentication modules or library in python

2024-08-01 Thread Iron Man
Hi Sivachandran, >> https://stackoverflow.com/a/7000784 In this they just did encoding not encryption so it is easily accessible to read the hidden message. >> For TUI, the simplest is getting username/password from stdin and checking against internally stored credentials. You can use db or file

Re: [Chennaipy] Suggest some authentication modules or library in python

2024-08-01 Thread Sivachandran Paramasivam
>> In this they just did encoding not encryption so it is easily accessible to read the hidden message. Yes. HTTPS/TLS provides the encryption layer. Thanks, Sivachandran P. ___ > Chennaipy mailing list > Chennaipy@python.org > https://mail.python.org/m