<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Topics tagged with python]]></title><description><![CDATA[A list of topics that have been tagged with python]]></description><link>https://fusionauth.io/community/forum/tags/python</link><generator>RSS for Node</generator><lastBuildDate>Fri, 10 Apr 2026 16:26:32 GMT</lastBuildDate><atom:link href="https://fusionauth.io/community/forum/tags/python.rss" rel="self" type="application/rss+xml"/><pubDate>Invalid Date</pubDate><ttl>60</ttl><item><title><![CDATA[Advice in Python Flask Framework]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/160">@aartiyadavpersonal</a> said in <a href="/community/forum/post/1446">Advice in Python Flask Framework</a>:</p>
<blockquote>
<p dir="auto">flask framework based projects?</p>
</blockquote>
<p dir="auto">Here are a few of them:</p>

Weather App using Flask
Full Stack Social Network App
Portfolio Website using Flask
Rest API with Flask
Feedback Form using Flask
Deploy Machine Learning Models using Flask
Blog App using Flask

<p dir="auto">Also, you can start with <a href="https://hackr.io/tutorials/learn-flask" rel="nofollow ugc">these tutorials</a>.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/473/advice-in-python-flask-framework</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/473/advice-in-python-flask-framework</guid><dc:creator><![CDATA[singhjjyoti0399]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Token type?]]></title><description><![CDATA[<p dir="auto">Seems like the library I used is opinionated. Thanks for the hints.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/433/token-type</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/433/token-type</guid><dc:creator><![CDATA[AliMirlou]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Trouble getting the user object post login]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/20">@dan</a> Thank you for your support. Fixing the signature just saved me another couple of hours (also coming from <a href="https://fusionauth.io/blog/2020/07/14/django-and-oauth/" rel="nofollow ugc">https://fusionauth.io/blog/2020/07/14/django-and-oauth/</a>) ^^</p>
]]></description><link>https://fusionauth.io/community/forum/topic/311/trouble-getting-the-user-object-post-login</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/311/trouble-getting-the-user-object-post-login</guid><dc:creator><![CDATA[amine.hosni]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[What are the strengths of FusionAuth compared to an open source library like django-allauth?]]></title><description><![CDATA[<p dir="auto">First, django-allauth supports an <a href="https://django-allauth.readthedocs.io/en/latest/" rel="nofollow ugc">impressive list of providers</a>. FusionAuth can support most of them using our <a href="https://fusionauth.io/docs/v1/tech/identity-providers/openid-connect/" rel="nofollow ugc">generic OIDC connector</a>, but kudos to the django-allauth team! If you are sure you only are building one django app, it's a good choice (and way better than rolling your own auth lib--please don't do that).</p>
<p dir="auto">I'm not super familiar with django-allauth, but I did a bit of research. I think the reasons to use FusionAuth rather than django-allauth are:</p>

centralized user management and control, even if you use a social provider. This scales to multiple applications within one tenant (so a django app and an open source forum app like nodebb can share a userbase; each user has the same username/email and password for each app) and multiple tenants (so you can have django app A and django app B totally separated, with different usernames/emails and passwords, if you're whitelabelling your app)
ability to integrate with other auth providers using non OAuth protocols, like <a href="https://fusionauth.io/docs/v1/tech/identity-providers/samlv2/" rel="nofollow ugc">SAML</a>
FA is a single app, as opposed to a set of extensions you need to find, merge together, and keep in sync. You just drop it in and it works.
additional features that you might not know you need until you need them (and have to build or evaluate/integrate a different library):

passwordless
consents
family grouping
webhooks for integration on user changes
user actions
groups
jwt generation
DAU/MAU reporting
2fa (I saw a 2fa plugin for this, but it was supported version 0.25 and django-allauth is at 0.42)



<p dir="auto">In short, FA is a full user management system, as opposed to an authentication and authorization plugin like django-allauth.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/136/what-are-the-strengths-of-fusionauth-compared-to-an-open-source-library-like-django-allauth</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/136/what-are-the-strengths-of-fusionauth-compared-to-an-open-source-library-like-django-allauth</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[No Refresh Tokens from grant_type = authorizazion_code; python]]></title><description><![CDATA[<p dir="auto">Great thanks, that solved it.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/62/no-refresh-tokens-from-grant_type-authorizazion_code-python</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/62/no-refresh-tokens-from-grant_type-authorizazion_code-python</guid><dc:creator><![CDATA[sven.richter86]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Do you have an example project using Flask?]]></title><description><![CDATA[<p dir="auto">Here's an example using flask: <a href="https://github.com/FusionAuth/fusionauth-example-flask-portal" rel="nofollow ugc">https://github.com/FusionAuth/fusionauth-example-flask-portal</a></p>
<p dir="auto">You can see all the example apps here: <a href="https://fusionauth.io/docs/v1/tech/example-apps/" rel="nofollow ugc">https://fusionauth.io/docs/v1/tech/example-apps/</a></p>
]]></description><link>https://fusionauth.io/community/forum/topic/23/do-you-have-an-example-project-using-flask</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/23/do-you-have-an-example-project-using-flask</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Invalid Date</pubDate></item></channel></rss>