From ed at pythoncharmers.com Sun Dec 1 16:36:34 2019 From: ed at pythoncharmers.com (Ed Schofield) Date: Mon, 2 Dec 2019 08:36:34 +1100 Subject: [melbourne-pug] Melbourne Python meetup: tonight (Monday 2nd December) Message-ID: Hi everyone! We're looking forward to our final meeting for 2019 of the Melbourne Python user group tonight, Monday 2nd December. Do come and join us! We have these two talks planned: *1. Luke Clarke: Automating WordPress audit with Python* (~25 minutes) Luke will present the Python-based tools he has used to navigate automatically through 20+ clients' WordPress sites and gather their PHP version, WordPress version, plugin versions, whether there are plugin updates outstanding. *2. Ed Schofield: First look at TensorFlow Probability* (~25 minutes) I will give a brief introduction to Bayesian machine learning and a first look at the TensorFlow Probability library. *3. Announcements and pizza* *When:* 5.45pm for mingling; talks from 6pm; pizza afterwards *Where:* Level 2, 17 Hardware Lane, Melbourne CBD *How to get there:* Walk 8 minutes from Flinders Street station or 5 minutes from Melbourne Central *Sponsorship:* many thanks to Outcome Life for providing the venue, Biarri for sponsoring pizzas, and Python Charmers for organisation and meetup sponsorship. *RSVP:* Please respond accurately on Meetup.com so we can track numbers: https://www.meetup.com/Melbourne-Python-Meetup-Group/ Do come along! We hope to see you there! :-) Best wishes, Ed -- Dr. Edward Schofield Python Charmers http://pythoncharmers.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From brian at linuxpenguins.xyz Thu Dec 12 22:24:00 2019 From: brian at linuxpenguins.xyz (Brian May) Date: Fri, 13 Dec 2019 14:24:00 +1100 Subject: [melbourne-pug] django mfa library Message-ID: <683377e6f3c89e97bd92fdee144d759e@linuxpenguins.xyz> Hello, Just wondering what is a good MFA library for Django that people use? I had a feeling there was a good one, just can't thing of it right now. I have looked at django-mfa and django-mfa2, but encountered a number of trivial issues, which probably would mean forking the project to fix. Which also makes me suspect these projects are not well maintained. So I wonder if there was anything better. Regards -------------- next part -------------- An HTML attachment was scrubbed... URL: From andrew.stuart at supercoders.com.au Thu Dec 12 22:38:34 2019 From: andrew.stuart at supercoders.com.au (=?UTF-8?Q?Andrew_Stuart?=) Date: Fri, 13 Dec 2019 03:38:34 +0000 Subject: [melbourne-pug] django mfa library In-Reply-To: <683377e6f3c89e97bd92fdee144d759e@linuxpenguins.xyz> References: <683377e6f3c89e97bd92fdee144d759e@linuxpenguins.xyz> <52C729E2-AEA6-4F35-AAA3-0E53C0793104@supercoders.com.au> Message-ID: <0102016efd563187-c7f89e89-86c5-4d7f-b81b-5bd98d15b1aa-000000@eu-west-1.amazonses.com> I did that in the past year or two and used pyotp and qrious at the front end https://github.com/neocotic/qrious On 13 Dec 2019, at 2:24 pm, Brian May wrote: Hello, Just wondering what is a good MFA library for Django that people use? I had a feeling there was a good one, just can't thing of it right now. I have looked at django-mfa and django-mfa2, but encountered a number of trivial issues, which probably would mean forking the project to fix. Which also makes me suspect these projects are not well maintained. So I wonder if there was anything better. Regards _______________________________________________ melbourne-pug mailing list melbourne-pug at python.org https://mail.python.org/mailman/listinfo/melbourne-pug From deeprave at gmail.com Thu Dec 12 22:39:39 2019 From: deeprave at gmail.com (David Nugent) Date: Fri, 13 Dec 2019 14:39:39 +1100 Subject: [melbourne-pug] django mfa library In-Reply-To: <683377e6f3c89e97bd92fdee144d759e@linuxpenguins.xyz> References: <683377e6f3c89e97bd92fdee144d759e@linuxpenguins.xyz> Message-ID: django-otp? Disclaimer: not used it yet, but had tagged it for future work. It seemed like a good fit for my use case at least. It seems to support RFC6238 (ie. Google authenticator etc), though you'd probably need something more for SMS support, recovery codes and alternative authentications. On Fri, Dec 13, 2019 at 2:34 PM Brian May wrote: > Hello, > > > Just wondering what is a good MFA library for Django that people use? > > > I had a feeling there was a good one, just can't thing of it right now. > > > I have looked at django-mfa and django-mfa2, but encountered a number of > trivial issues, which probably would mean forking the project to fix. Which > also makes me suspect these projects are not well maintained. So I wonder > if there was anything better. > > > Regards > _______________________________________________ > melbourne-pug mailing list > melbourne-pug at python.org > https://mail.python.org/mailman/listinfo/melbourne-pug > -------------- next part -------------- An HTML attachment was scrubbed... URL: From andrew.stuart at supercoders.com.au Thu Dec 12 22:43:44 2019 From: andrew.stuart at supercoders.com.au (=?UTF-8?Q?Andrew_Stuart?=) Date: Fri, 13 Dec 2019 03:43:44 +0000 Subject: [melbourne-pug] django mfa library In-Reply-To: References: <683377e6f3c89e97bd92fdee144d759e@linuxpenguins.xyz> <3F79D9FD-F76D-4F79-9F60-B719A28AEB13@supercoders.com.au> Message-ID: <0102016efd5aec15-b5cf95bb-f522-4c21-bf04-0fc7b55aea1b-000000@eu-west-1.amazonses.com> no i think I just used pyotp and customised my authentication functions On 13 Dec 2019, at 2:39 pm, David Nugent wrote: django-otp? Disclaimer: not used it yet, but had tagged it for future work. It seemed like a good fit for my use case at least. It seems to support RFC6238 (ie. Google authenticator etc), though you'd probably need something more for SMS support, recovery codes and alternative authentications. On Fri, Dec 13, 2019 at 2:34 PM Brian May wrote: Hello, Just wondering what is a good MFA library for Django that people use? I had a feeling there was a good one, just can't thing of it right now. I have looked at django-mfa and django-mfa2, but encountered a number of trivial issues, which probably would mean forking the project to fix. Which also makes me suspect these projects are not well maintained. So I wonder if there was anything better. Regards _______________________________________________ melbourne-pug mailing list melbourne-pug at python.org https://mail.python.org/mailman/listinfo/melbourne-pug _______________________________________________ melbourne-pug mailing list melbourne-pug at python.org https://mail.python.org/mailman/listinfo/melbourne-pug From deeprave at gmail.com Thu Dec 12 23:54:32 2019 From: deeprave at gmail.com (David Nugent) Date: Fri, 13 Dec 2019 15:54:32 +1100 Subject: [melbourne-pug] django mfa library In-Reply-To: References: <683377e6f3c89e97bd92fdee144d759e@linuxpenguins.xyz> Message-ID: django-otp seems to have grown a few features since I last checked and supports the additional features I mentioned previously and more. On Fri, Dec 13, 2019 at 2:39 PM David Nugent wrote: > django-otp? > > Disclaimer: not used it yet, but had tagged it for future work. It seemed > like a good fit for my use case at least. It seems to support RFC6238 (ie. > Google authenticator etc), though you'd probably need something more for > SMS support, recovery codes and alternative authentications. > > On Fri, Dec 13, 2019 at 2:34 PM Brian May wrote: > >> Hello, >> >> >> Just wondering what is a good MFA library for Django that people use? >> >> >> I had a feeling there was a good one, just can't thing of it right now. >> >> >> I have looked at django-mfa and django-mfa2, but encountered a number of >> trivial issues, which probably would mean forking the project to fix. Which >> also makes me suspect these projects are not well maintained. So I wonder >> if there was anything better. >> >> >> Regards >> _______________________________________________ >> melbourne-pug mailing list >> melbourne-pug at python.org >> https://mail.python.org/mailman/listinfo/melbourne-pug >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: