django-allauth-async 65.16.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2061) hide show
  1. django_allauth_async-65.16.1.1/.dir-locals.el +2 -0
  2. django_allauth_async-65.16.1.1/.djlintrc +3 -0
  3. django_allauth_async-65.16.1.1/.editorconfig +27 -0
  4. django_allauth_async-65.16.1.1/.envrc +7 -0
  5. django_allauth_async-65.16.1.1/.gitea/ISSUE_TEMPLATE/discussion.md +9 -0
  6. django_allauth_async-65.16.1.1/.gitea/ISSUE_TEMPLATE/issue.md +8 -0
  7. django_allauth_async-65.16.1.1/.gitea/pull_request_template.md +20 -0
  8. django_allauth_async-65.16.1.1/.github/FUNDING.yml +12 -0
  9. django_allauth_async-65.16.1.1/.github/ISSUE_TEMPLATE/issue.md +13 -0
  10. django_allauth_async-65.16.1.1/.github/SECURITY.md +3 -0
  11. django_allauth_async-65.16.1.1/.github/dependabot.yml +10 -0
  12. django_allauth_async-65.16.1.1/.github/pull_request_template.md +4 -0
  13. django_allauth_async-65.16.1.1/.github/workflows/ci.yml +82 -0
  14. django_allauth_async-65.16.1.1/.gitignore +49 -0
  15. django_allauth_async-65.16.1.1/.gitlab-ci.yml +109 -0
  16. django_allauth_async-65.16.1.1/.readthedocs.yaml +22 -0
  17. django_allauth_async-65.16.1.1/.woodpecker.yaml +51 -0
  18. django_allauth_async-65.16.1.1/AUTHORS +193 -0
  19. django_allauth_async-65.16.1.1/CONTRIBUTING.rst +211 -0
  20. django_allauth_async-65.16.1.1/ChangeLog.rst +553 -0
  21. django_allauth_async-65.16.1.1/LICENSE +24 -0
  22. django_allauth_async-65.16.1.1/Makefile +80 -0
  23. django_allauth_async-65.16.1.1/PKG-INFO +285 -0
  24. django_allauth_async-65.16.1.1/README.rst +223 -0
  25. django_allauth_async-65.16.1.1/allauth/__init__.py +20 -0
  26. django_allauth_async-65.16.1.1/allauth/account/__init__.py +0 -0
  27. django_allauth_async-65.16.1.1/allauth/account/adapter.py +1040 -0
  28. django_allauth_async-65.16.1.1/allauth/account/admin.py +56 -0
  29. django_allauth_async-65.16.1.1/allauth/account/app_settings.py +641 -0
  30. django_allauth_async-65.16.1.1/allauth/account/apps.py +21 -0
  31. django_allauth_async-65.16.1.1/allauth/account/auth_backends.py +145 -0
  32. django_allauth_async-65.16.1.1/allauth/account/authentication.py +9 -0
  33. django_allauth_async-65.16.1.1/allauth/account/checks.py +187 -0
  34. django_allauth_async-65.16.1.1/allauth/account/decorators.py +112 -0
  35. django_allauth_async-65.16.1.1/allauth/account/fields.py +85 -0
  36. django_allauth_async-65.16.1.1/allauth/account/forms.py +861 -0
  37. django_allauth_async-65.16.1.1/allauth/account/internal/__init__.py +4 -0
  38. django_allauth_async-65.16.1.1/allauth/account/internal/constants.py +7 -0
  39. django_allauth_async-65.16.1.1/allauth/account/internal/decorators.py +39 -0
  40. django_allauth_async-65.16.1.1/allauth/account/internal/emailkit.py +18 -0
  41. django_allauth_async-65.16.1.1/allauth/account/internal/flows/__init__.py +30 -0
  42. django_allauth_async-65.16.1.1/allauth/account/internal/flows/code_verification.py +112 -0
  43. django_allauth_async-65.16.1.1/allauth/account/internal/flows/email_verification.py +366 -0
  44. django_allauth_async-65.16.1.1/allauth/account/internal/flows/email_verification_by_code.py +160 -0
  45. django_allauth_async-65.16.1.1/allauth/account/internal/flows/login.py +152 -0
  46. django_allauth_async-65.16.1.1/allauth/account/internal/flows/login_by_code.py +177 -0
  47. django_allauth_async-65.16.1.1/allauth/account/internal/flows/logout.py +23 -0
  48. django_allauth_async-65.16.1.1/allauth/account/internal/flows/manage_email.py +255 -0
  49. django_allauth_async-65.16.1.1/allauth/account/internal/flows/password_change.py +55 -0
  50. django_allauth_async-65.16.1.1/allauth/account/internal/flows/password_reset.py +122 -0
  51. django_allauth_async-65.16.1.1/allauth/account/internal/flows/password_reset_by_code.py +99 -0
  52. django_allauth_async-65.16.1.1/allauth/account/internal/flows/phone_verification.py +211 -0
  53. django_allauth_async-65.16.1.1/allauth/account/internal/flows/reauthentication.py +110 -0
  54. django_allauth_async-65.16.1.1/allauth/account/internal/flows/signup.py +116 -0
  55. django_allauth_async-65.16.1.1/allauth/account/internal/stagekit.py +61 -0
  56. django_allauth_async-65.16.1.1/allauth/account/internal/templatekit.py +70 -0
  57. django_allauth_async-65.16.1.1/allauth/account/internal/userkit.py +84 -0
  58. django_allauth_async-65.16.1.1/allauth/account/management/__init__.py +0 -0
  59. django_allauth_async-65.16.1.1/allauth/account/management/commands/__init__.py +0 -0
  60. django_allauth_async-65.16.1.1/allauth/account/management/commands/account_unsetmultipleprimaryemails.py +48 -0
  61. django_allauth_async-65.16.1.1/allauth/account/managers.py +164 -0
  62. django_allauth_async-65.16.1.1/allauth/account/middleware.py +105 -0
  63. django_allauth_async-65.16.1.1/allauth/account/migrations/0001_initial.py +105 -0
  64. django_allauth_async-65.16.1.1/allauth/account/migrations/0002_email_max_length.py +32 -0
  65. django_allauth_async-65.16.1.1/allauth/account/migrations/0003_alter_emailaddress_create_unique_verified_email.py +30 -0
  66. django_allauth_async-65.16.1.1/allauth/account/migrations/0004_alter_emailaddress_drop_unique_email.py +21 -0
  67. django_allauth_async-65.16.1.1/allauth/account/migrations/0005_emailaddress_idx_upper_email.py +20 -0
  68. django_allauth_async-65.16.1.1/allauth/account/migrations/0006_emailaddress_lower.py +26 -0
  69. django_allauth_async-65.16.1.1/allauth/account/migrations/0007_emailaddress_idx_email.py +25 -0
  70. django_allauth_async-65.16.1.1/allauth/account/migrations/0008_emailaddress_unique_primary_email_fixup.py +46 -0
  71. django_allauth_async-65.16.1.1/allauth/account/migrations/0009_emailaddress_unique_primary_email.py +20 -0
  72. django_allauth_async-65.16.1.1/allauth/account/migrations/__init__.py +0 -0
  73. django_allauth_async-65.16.1.1/allauth/account/mixins.py +218 -0
  74. django_allauth_async-65.16.1.1/allauth/account/models.py +355 -0
  75. django_allauth_async-65.16.1.1/allauth/account/reauthentication.py +14 -0
  76. django_allauth_async-65.16.1.1/allauth/account/signals.py +103 -0
  77. django_allauth_async-65.16.1.1/allauth/account/stages.py +249 -0
  78. django_allauth_async-65.16.1.1/allauth/account/static/account/js/account.js +20 -0
  79. django_allauth_async-65.16.1.1/allauth/account/static/account/js/onload.js +12 -0
  80. django_allauth_async-65.16.1.1/allauth/account/templatetags/__init__.py +0 -0
  81. django_allauth_async-65.16.1.1/allauth/account/templatetags/account.py +27 -0
  82. django_allauth_async-65.16.1.1/allauth/account/urls.py +128 -0
  83. django_allauth_async-65.16.1.1/allauth/account/utils.py +346 -0
  84. django_allauth_async-65.16.1.1/allauth/account/views.py +1479 -0
  85. django_allauth_async-65.16.1.1/allauth/app_settings.py +92 -0
  86. django_allauth_async-65.16.1.1/allauth/core/__init__.py +0 -0
  87. django_allauth_async-65.16.1.1/allauth/core/context.py +24 -0
  88. django_allauth_async-65.16.1.1/allauth/core/exceptions.py +34 -0
  89. django_allauth_async-65.16.1.1/allauth/core/internal/__init__.py +0 -0
  90. django_allauth_async-65.16.1.1/allauth/core/internal/adapter.py +22 -0
  91. django_allauth_async-65.16.1.1/allauth/core/internal/cryptokit.py +55 -0
  92. django_allauth_async-65.16.1.1/allauth/core/internal/httpkit.py +227 -0
  93. django_allauth_async-65.16.1.1/allauth/core/internal/jwkkit.py +48 -0
  94. django_allauth_async-65.16.1.1/allauth/core/internal/modelkit.py +89 -0
  95. django_allauth_async-65.16.1.1/allauth/core/internal/ratelimit.py +218 -0
  96. django_allauth_async-65.16.1.1/allauth/core/internal/sessionkit.py +13 -0
  97. django_allauth_async-65.16.1.1/allauth/core/internal/urlkit.py +12 -0
  98. django_allauth_async-65.16.1.1/allauth/core/ratelimit.py +74 -0
  99. django_allauth_async-65.16.1.1/allauth/decorators.py +21 -0
  100. django_allauth_async-65.16.1.1/allauth/exceptions.py +9 -0
  101. django_allauth_async-65.16.1.1/allauth/headless/__init__.py +0 -0
  102. django_allauth_async-65.16.1.1/allauth/headless/account/__init__.py +0 -0
  103. django_allauth_async-65.16.1.1/allauth/headless/account/inputs.py +273 -0
  104. django_allauth_async-65.16.1.1/allauth/headless/account/response.py +61 -0
  105. django_allauth_async-65.16.1.1/allauth/headless/account/urls.py +124 -0
  106. django_allauth_async-65.16.1.1/allauth/headless/account/views.py +586 -0
  107. django_allauth_async-65.16.1.1/allauth/headless/adapter.py +150 -0
  108. django_allauth_async-65.16.1.1/allauth/headless/app_settings.py +87 -0
  109. django_allauth_async-65.16.1.1/allauth/headless/apps.py +12 -0
  110. django_allauth_async-65.16.1.1/allauth/headless/base/__init__.py +0 -0
  111. django_allauth_async-65.16.1.1/allauth/headless/base/response.py +200 -0
  112. django_allauth_async-65.16.1.1/allauth/headless/base/urls.py +16 -0
  113. django_allauth_async-65.16.1.1/allauth/headless/base/views.py +72 -0
  114. django_allauth_async-65.16.1.1/allauth/headless/checks.py +20 -0
  115. django_allauth_async-65.16.1.1/allauth/headless/constants.py +27 -0
  116. django_allauth_async-65.16.1.1/allauth/headless/contrib/__init__.py +0 -0
  117. django_allauth_async-65.16.1.1/allauth/headless/contrib/ninja/__init__.py +0 -0
  118. django_allauth_async-65.16.1.1/allauth/headless/contrib/ninja/security.py +59 -0
  119. django_allauth_async-65.16.1.1/allauth/headless/contrib/rest_framework/__init__.py +0 -0
  120. django_allauth_async-65.16.1.1/allauth/headless/contrib/rest_framework/authentication.py +53 -0
  121. django_allauth_async-65.16.1.1/allauth/headless/internal/__init__.py +0 -0
  122. django_allauth_async-65.16.1.1/allauth/headless/internal/authkit.py +92 -0
  123. django_allauth_async-65.16.1.1/allauth/headless/internal/decorators.py +58 -0
  124. django_allauth_async-65.16.1.1/allauth/headless/internal/restkit/__init__.py +0 -0
  125. django_allauth_async-65.16.1.1/allauth/headless/internal/restkit/inputs.py +26 -0
  126. django_allauth_async-65.16.1.1/allauth/headless/internal/restkit/response.py +64 -0
  127. django_allauth_async-65.16.1.1/allauth/headless/internal/restkit/views.py +64 -0
  128. django_allauth_async-65.16.1.1/allauth/headless/internal/sessionkit.py +55 -0
  129. django_allauth_async-65.16.1.1/allauth/headless/mfa/__init__.py +0 -0
  130. django_allauth_async-65.16.1.1/allauth/headless/mfa/inputs.py +82 -0
  131. django_allauth_async-65.16.1.1/allauth/headless/mfa/response.py +110 -0
  132. django_allauth_async-65.16.1.1/allauth/headless/mfa/urls.py +111 -0
  133. django_allauth_async-65.16.1.1/allauth/headless/mfa/views.py +310 -0
  134. django_allauth_async-65.16.1.1/allauth/headless/socialaccount/__init__.py +0 -0
  135. django_allauth_async-65.16.1.1/allauth/headless/socialaccount/forms.py +37 -0
  136. django_allauth_async-65.16.1.1/allauth/headless/socialaccount/inputs.py +117 -0
  137. django_allauth_async-65.16.1.1/allauth/headless/socialaccount/internal.py +104 -0
  138. django_allauth_async-65.16.1.1/allauth/headless/socialaccount/response.py +124 -0
  139. django_allauth_async-65.16.1.1/allauth/headless/socialaccount/urls.py +54 -0
  140. django_allauth_async-65.16.1.1/allauth/headless/socialaccount/views.py +119 -0
  141. django_allauth_async-65.16.1.1/allauth/headless/spec/__init__.py +0 -0
  142. django_allauth_async-65.16.1.1/allauth/headless/spec/doc/description.md +220 -0
  143. django_allauth_async-65.16.1.1/allauth/headless/spec/doc/openapi.yaml +3677 -0
  144. django_allauth_async-65.16.1.1/allauth/headless/spec/internal/__init__.py +0 -0
  145. django_allauth_async-65.16.1.1/allauth/headless/spec/internal/openapikit.py +89 -0
  146. django_allauth_async-65.16.1.1/allauth/headless/spec/internal/schema.py +187 -0
  147. django_allauth_async-65.16.1.1/allauth/headless/spec/urls.py +19 -0
  148. django_allauth_async-65.16.1.1/allauth/headless/spec/views.py +43 -0
  149. django_allauth_async-65.16.1.1/allauth/headless/templates/headless/spec/redoc_cdn.html +14 -0
  150. django_allauth_async-65.16.1.1/allauth/headless/templates/headless/spec/swagger_cdn.html +30 -0
  151. django_allauth_async-65.16.1.1/allauth/headless/tokens/__init__.py +0 -0
  152. django_allauth_async-65.16.1.1/allauth/headless/tokens/base.py +10 -0
  153. django_allauth_async-65.16.1.1/allauth/headless/tokens/inputs.py +5 -0
  154. django_allauth_async-65.16.1.1/allauth/headless/tokens/response.py +13 -0
  155. django_allauth_async-65.16.1.1/allauth/headless/tokens/sessions.py +10 -0
  156. django_allauth_async-65.16.1.1/allauth/headless/tokens/strategies/__init__.py +0 -0
  157. django_allauth_async-65.16.1.1/allauth/headless/tokens/strategies/base.py +67 -0
  158. django_allauth_async-65.16.1.1/allauth/headless/tokens/strategies/jwt/__init__.py +4 -0
  159. django_allauth_async-65.16.1.1/allauth/headless/tokens/strategies/jwt/internal.py +265 -0
  160. django_allauth_async-65.16.1.1/allauth/headless/tokens/strategies/jwt/strategy.py +92 -0
  161. django_allauth_async-65.16.1.1/allauth/headless/tokens/strategies/sessions.py +23 -0
  162. django_allauth_async-65.16.1.1/allauth/headless/tokens/urls.py +16 -0
  163. django_allauth_async-65.16.1.1/allauth/headless/tokens/views.py +27 -0
  164. django_allauth_async-65.16.1.1/allauth/headless/urls.py +106 -0
  165. django_allauth_async-65.16.1.1/allauth/headless/usersessions/__init__.py +0 -0
  166. django_allauth_async-65.16.1.1/allauth/headless/usersessions/inputs.py +14 -0
  167. django_allauth_async-65.16.1.1/allauth/headless/usersessions/response.py +28 -0
  168. django_allauth_async-65.16.1.1/allauth/headless/usersessions/urls.py +23 -0
  169. django_allauth_async-65.16.1.1/allauth/headless/usersessions/views.py +36 -0
  170. django_allauth_async-65.16.1.1/allauth/idp/__init__.py +0 -0
  171. django_allauth_async-65.16.1.1/allauth/idp/oidc/__init__.py +0 -0
  172. django_allauth_async-65.16.1.1/allauth/idp/oidc/adapter.py +162 -0
  173. django_allauth_async-65.16.1.1/allauth/idp/oidc/admin.py +52 -0
  174. django_allauth_async-65.16.1.1/allauth/idp/oidc/app_settings.py +104 -0
  175. django_allauth_async-65.16.1.1/allauth/idp/oidc/apps.py +12 -0
  176. django_allauth_async-65.16.1.1/allauth/idp/oidc/contrib/__init__.py +0 -0
  177. django_allauth_async-65.16.1.1/allauth/idp/oidc/contrib/ninja/__init__.py +0 -0
  178. django_allauth_async-65.16.1.1/allauth/idp/oidc/contrib/ninja/security.py +44 -0
  179. django_allauth_async-65.16.1.1/allauth/idp/oidc/contrib/rest_framework/__init__.py +0 -0
  180. django_allauth_async-65.16.1.1/allauth/idp/oidc/contrib/rest_framework/authentication.py +22 -0
  181. django_allauth_async-65.16.1.1/allauth/idp/oidc/contrib/rest_framework/permissions.py +47 -0
  182. django_allauth_async-65.16.1.1/allauth/idp/oidc/forms.py +177 -0
  183. django_allauth_async-65.16.1.1/allauth/idp/oidc/internal/__init__.py +0 -0
  184. django_allauth_async-65.16.1.1/allauth/idp/oidc/internal/clientkit.py +160 -0
  185. django_allauth_async-65.16.1.1/allauth/idp/oidc/internal/flows.py +26 -0
  186. django_allauth_async-65.16.1.1/allauth/idp/oidc/internal/oauthlib/__init__.py +0 -0
  187. django_allauth_async-65.16.1.1/allauth/idp/oidc/internal/oauthlib/authorization_codes.py +66 -0
  188. django_allauth_async-65.16.1.1/allauth/idp/oidc/internal/oauthlib/device_codes.py +133 -0
  189. django_allauth_async-65.16.1.1/allauth/idp/oidc/internal/oauthlib/request_validator.py +434 -0
  190. django_allauth_async-65.16.1.1/allauth/idp/oidc/internal/oauthlib/server.py +100 -0
  191. django_allauth_async-65.16.1.1/allauth/idp/oidc/internal/oauthlib/utils.py +85 -0
  192. django_allauth_async-65.16.1.1/allauth/idp/oidc/internal/scope.py +44 -0
  193. django_allauth_async-65.16.1.1/allauth/idp/oidc/internal/tokens.py +37 -0
  194. django_allauth_async-65.16.1.1/allauth/idp/oidc/migrations/0001_initial.py +167 -0
  195. django_allauth_async-65.16.1.1/allauth/idp/oidc/migrations/0002_client_default_scopes.py +20 -0
  196. django_allauth_async-65.16.1.1/allauth/idp/oidc/migrations/0003_client_allow_uri_wildcards.py +20 -0
  197. django_allauth_async-65.16.1.1/allauth/idp/oidc/migrations/__init__.py +0 -0
  198. django_allauth_async-65.16.1.1/allauth/idp/oidc/models.py +249 -0
  199. django_allauth_async-65.16.1.1/allauth/idp/oidc/urls.py +85 -0
  200. django_allauth_async-65.16.1.1/allauth/idp/oidc/views.py +541 -0
  201. django_allauth_async-65.16.1.1/allauth/idp/urls.py +7 -0
  202. django_allauth_async-65.16.1.1/allauth/locale/ar/LC_MESSAGES/django.mo +0 -0
  203. django_allauth_async-65.16.1.1/allauth/locale/ar/LC_MESSAGES/django.po +2010 -0
  204. django_allauth_async-65.16.1.1/allauth/locale/az/LC_MESSAGES/django.mo +0 -0
  205. django_allauth_async-65.16.1.1/allauth/locale/az/LC_MESSAGES/django.po +1968 -0
  206. django_allauth_async-65.16.1.1/allauth/locale/bg/LC_MESSAGES/django.mo +0 -0
  207. django_allauth_async-65.16.1.1/allauth/locale/bg/LC_MESSAGES/django.po +1985 -0
  208. django_allauth_async-65.16.1.1/allauth/locale/ca/LC_MESSAGES/django.mo +0 -0
  209. django_allauth_async-65.16.1.1/allauth/locale/ca/LC_MESSAGES/django.po +2020 -0
  210. django_allauth_async-65.16.1.1/allauth/locale/cs/LC_MESSAGES/django.mo +0 -0
  211. django_allauth_async-65.16.1.1/allauth/locale/cs/LC_MESSAGES/django.po +2043 -0
  212. django_allauth_async-65.16.1.1/allauth/locale/da/LC_MESSAGES/django.mo +0 -0
  213. django_allauth_async-65.16.1.1/allauth/locale/da/LC_MESSAGES/django.po +1990 -0
  214. django_allauth_async-65.16.1.1/allauth/locale/de/LC_MESSAGES/django.mo +0 -0
  215. django_allauth_async-65.16.1.1/allauth/locale/de/LC_MESSAGES/django.po +2045 -0
  216. django_allauth_async-65.16.1.1/allauth/locale/el/LC_MESSAGES/django.mo +0 -0
  217. django_allauth_async-65.16.1.1/allauth/locale/el/LC_MESSAGES/django.po +2044 -0
  218. django_allauth_async-65.16.1.1/allauth/locale/en/LC_MESSAGES/django.mo +0 -0
  219. django_allauth_async-65.16.1.1/allauth/locale/en/LC_MESSAGES/django.po +1799 -0
  220. django_allauth_async-65.16.1.1/allauth/locale/es/LC_MESSAGES/django.mo +0 -0
  221. django_allauth_async-65.16.1.1/allauth/locale/es/LC_MESSAGES/django.po +2086 -0
  222. django_allauth_async-65.16.1.1/allauth/locale/et/LC_MESSAGES/django.mo +0 -0
  223. django_allauth_async-65.16.1.1/allauth/locale/et/LC_MESSAGES/django.po +1921 -0
  224. django_allauth_async-65.16.1.1/allauth/locale/eu/LC_MESSAGES/django.mo +0 -0
  225. django_allauth_async-65.16.1.1/allauth/locale/eu/LC_MESSAGES/django.po +1994 -0
  226. django_allauth_async-65.16.1.1/allauth/locale/fa/LC_MESSAGES/django.mo +0 -0
  227. django_allauth_async-65.16.1.1/allauth/locale/fa/LC_MESSAGES/django.po +1985 -0
  228. django_allauth_async-65.16.1.1/allauth/locale/fi/LC_MESSAGES/django.mo +0 -0
  229. django_allauth_async-65.16.1.1/allauth/locale/fi/LC_MESSAGES/django.po +2012 -0
  230. django_allauth_async-65.16.1.1/allauth/locale/fr/LC_MESSAGES/django.mo +0 -0
  231. django_allauth_async-65.16.1.1/allauth/locale/fr/LC_MESSAGES/django.po +2082 -0
  232. django_allauth_async-65.16.1.1/allauth/locale/he/LC_MESSAGES/django.mo +0 -0
  233. django_allauth_async-65.16.1.1/allauth/locale/he/LC_MESSAGES/django.po +1963 -0
  234. django_allauth_async-65.16.1.1/allauth/locale/hr/LC_MESSAGES/django.mo +0 -0
  235. django_allauth_async-65.16.1.1/allauth/locale/hr/LC_MESSAGES/django.po +2013 -0
  236. django_allauth_async-65.16.1.1/allauth/locale/ht/LC_MESSAGES/django.mo +0 -0
  237. django_allauth_async-65.16.1.1/allauth/locale/ht/LC_MESSAGES/django.po +1908 -0
  238. django_allauth_async-65.16.1.1/allauth/locale/hu/LC_MESSAGES/django.mo +0 -0
  239. django_allauth_async-65.16.1.1/allauth/locale/hu/LC_MESSAGES/django.po +1988 -0
  240. django_allauth_async-65.16.1.1/allauth/locale/id/LC_MESSAGES/django.mo +0 -0
  241. django_allauth_async-65.16.1.1/allauth/locale/id/LC_MESSAGES/django.po +1988 -0
  242. django_allauth_async-65.16.1.1/allauth/locale/it/LC_MESSAGES/django.mo +0 -0
  243. django_allauth_async-65.16.1.1/allauth/locale/it/LC_MESSAGES/django.po +2035 -0
  244. django_allauth_async-65.16.1.1/allauth/locale/ja/LC_MESSAGES/django.mo +0 -0
  245. django_allauth_async-65.16.1.1/allauth/locale/ja/LC_MESSAGES/django.po +1985 -0
  246. django_allauth_async-65.16.1.1/allauth/locale/ka/LC_MESSAGES/django.mo +0 -0
  247. django_allauth_async-65.16.1.1/allauth/locale/ka/LC_MESSAGES/django.po +1994 -0
  248. django_allauth_async-65.16.1.1/allauth/locale/ko/LC_MESSAGES/django.mo +0 -0
  249. django_allauth_async-65.16.1.1/allauth/locale/ko/LC_MESSAGES/django.po +1892 -0
  250. django_allauth_async-65.16.1.1/allauth/locale/ky/LC_MESSAGES/django.mo +0 -0
  251. django_allauth_async-65.16.1.1/allauth/locale/ky/LC_MESSAGES/django.po +1986 -0
  252. django_allauth_async-65.16.1.1/allauth/locale/lt/LC_MESSAGES/django.mo +0 -0
  253. django_allauth_async-65.16.1.1/allauth/locale/lt/LC_MESSAGES/django.po +2014 -0
  254. django_allauth_async-65.16.1.1/allauth/locale/lv/LC_MESSAGES/django.mo +0 -0
  255. django_allauth_async-65.16.1.1/allauth/locale/lv/LC_MESSAGES/django.po +1995 -0
  256. django_allauth_async-65.16.1.1/allauth/locale/mn/LC_MESSAGES/django.mo +0 -0
  257. django_allauth_async-65.16.1.1/allauth/locale/mn/LC_MESSAGES/django.po +1976 -0
  258. django_allauth_async-65.16.1.1/allauth/locale/nb/LC_MESSAGES/django.mo +0 -0
  259. django_allauth_async-65.16.1.1/allauth/locale/nb/LC_MESSAGES/django.po +1988 -0
  260. django_allauth_async-65.16.1.1/allauth/locale/nl/LC_MESSAGES/django.mo +0 -0
  261. django_allauth_async-65.16.1.1/allauth/locale/nl/LC_MESSAGES/django.po +2061 -0
  262. django_allauth_async-65.16.1.1/allauth/locale/pl/LC_MESSAGES/django.mo +0 -0
  263. django_allauth_async-65.16.1.1/allauth/locale/pl/LC_MESSAGES/django.po +2044 -0
  264. django_allauth_async-65.16.1.1/allauth/locale/pt_BR/LC_MESSAGES/django.mo +0 -0
  265. django_allauth_async-65.16.1.1/allauth/locale/pt_BR/LC_MESSAGES/django.po +1946 -0
  266. django_allauth_async-65.16.1.1/allauth/locale/pt_PT/LC_MESSAGES/django.mo +0 -0
  267. django_allauth_async-65.16.1.1/allauth/locale/pt_PT/LC_MESSAGES/django.po +1997 -0
  268. django_allauth_async-65.16.1.1/allauth/locale/ro/LC_MESSAGES/django.mo +0 -0
  269. django_allauth_async-65.16.1.1/allauth/locale/ro/LC_MESSAGES/django.po +2032 -0
  270. django_allauth_async-65.16.1.1/allauth/locale/ru/LC_MESSAGES/django.mo +0 -0
  271. django_allauth_async-65.16.1.1/allauth/locale/ru/LC_MESSAGES/django.po +2061 -0
  272. django_allauth_async-65.16.1.1/allauth/locale/sk/LC_MESSAGES/django.mo +0 -0
  273. django_allauth_async-65.16.1.1/allauth/locale/sk/LC_MESSAGES/django.po +1994 -0
  274. django_allauth_async-65.16.1.1/allauth/locale/sl/LC_MESSAGES/django.mo +0 -0
  275. django_allauth_async-65.16.1.1/allauth/locale/sl/LC_MESSAGES/django.po +1986 -0
  276. django_allauth_async-65.16.1.1/allauth/locale/sr/LC_MESSAGES/django.mo +0 -0
  277. django_allauth_async-65.16.1.1/allauth/locale/sr/LC_MESSAGES/django.po +1998 -0
  278. django_allauth_async-65.16.1.1/allauth/locale/sr_Latn/LC_MESSAGES/django.mo +0 -0
  279. django_allauth_async-65.16.1.1/allauth/locale/sr_Latn/LC_MESSAGES/django.po +1998 -0
  280. django_allauth_async-65.16.1.1/allauth/locale/sv/LC_MESSAGES/django.mo +0 -0
  281. django_allauth_async-65.16.1.1/allauth/locale/sv/LC_MESSAGES/django.po +2020 -0
  282. django_allauth_async-65.16.1.1/allauth/locale/th/LC_MESSAGES/django.mo +0 -0
  283. django_allauth_async-65.16.1.1/allauth/locale/th/LC_MESSAGES/django.po +1950 -0
  284. django_allauth_async-65.16.1.1/allauth/locale/tr/LC_MESSAGES/django.mo +0 -0
  285. django_allauth_async-65.16.1.1/allauth/locale/tr/LC_MESSAGES/django.po +2048 -0
  286. django_allauth_async-65.16.1.1/allauth/locale/uk/LC_MESSAGES/django.mo +0 -0
  287. django_allauth_async-65.16.1.1/allauth/locale/uk/LC_MESSAGES/django.po +1972 -0
  288. django_allauth_async-65.16.1.1/allauth/locale/uz/LC_MESSAGES/django.mo +0 -0
  289. django_allauth_async-65.16.1.1/allauth/locale/uz/LC_MESSAGES/django.po +1946 -0
  290. django_allauth_async-65.16.1.1/allauth/locale/zh_Hans/LC_MESSAGES/django.mo +0 -0
  291. django_allauth_async-65.16.1.1/allauth/locale/zh_Hans/LC_MESSAGES/django.po +1883 -0
  292. django_allauth_async-65.16.1.1/allauth/locale/zh_Hant/LC_MESSAGES/django.mo +0 -0
  293. django_allauth_async-65.16.1.1/allauth/locale/zh_Hant/LC_MESSAGES/django.po +2067 -0
  294. django_allauth_async-65.16.1.1/allauth/mfa/__init__.py +0 -0
  295. django_allauth_async-65.16.1.1/allauth/mfa/adapter.py +165 -0
  296. django_allauth_async-65.16.1.1/allauth/mfa/admin.py +10 -0
  297. django_allauth_async-65.16.1.1/allauth/mfa/app_settings.py +170 -0
  298. django_allauth_async-65.16.1.1/allauth/mfa/apps.py +19 -0
  299. django_allauth_async-65.16.1.1/allauth/mfa/base/__init__.py +0 -0
  300. django_allauth_async-65.16.1.1/allauth/mfa/base/forms.py +73 -0
  301. django_allauth_async-65.16.1.1/allauth/mfa/base/internal/__init__.py +0 -0
  302. django_allauth_async-65.16.1.1/allauth/mfa/base/internal/flows.py +71 -0
  303. django_allauth_async-65.16.1.1/allauth/mfa/base/urls.py +14 -0
  304. django_allauth_async-65.16.1.1/allauth/mfa/base/views.py +200 -0
  305. django_allauth_async-65.16.1.1/allauth/mfa/checks.py +44 -0
  306. django_allauth_async-65.16.1.1/allauth/mfa/internal/__init__.py +0 -0
  307. django_allauth_async-65.16.1.1/allauth/mfa/internal/constants.py +7 -0
  308. django_allauth_async-65.16.1.1/allauth/mfa/internal/flows/__init__.py +0 -0
  309. django_allauth_async-65.16.1.1/allauth/mfa/internal/flows/add.py +50 -0
  310. django_allauth_async-65.16.1.1/allauth/mfa/internal/flows/trust.py +86 -0
  311. django_allauth_async-65.16.1.1/allauth/mfa/migrations/0001_initial.py +51 -0
  312. django_allauth_async-65.16.1.1/allauth/mfa/migrations/0002_authenticator_timestamps.py +23 -0
  313. django_allauth_async-65.16.1.1/allauth/mfa/migrations/0003_authenticator_type_uniq.py +36 -0
  314. django_allauth_async-65.16.1.1/allauth/mfa/migrations/__init__.py +0 -0
  315. django_allauth_async-65.16.1.1/allauth/mfa/models.py +70 -0
  316. django_allauth_async-65.16.1.1/allauth/mfa/recovery_codes/__init__.py +0 -0
  317. django_allauth_async-65.16.1.1/allauth/mfa/recovery_codes/forms.py +20 -0
  318. django_allauth_async-65.16.1.1/allauth/mfa/recovery_codes/internal/__init__.py +0 -0
  319. django_allauth_async-65.16.1.1/allauth/mfa/recovery_codes/internal/auth.py +126 -0
  320. django_allauth_async-65.16.1.1/allauth/mfa/recovery_codes/internal/flows.py +96 -0
  321. django_allauth_async-65.16.1.1/allauth/mfa/recovery_codes/urls.py +18 -0
  322. django_allauth_async-65.16.1.1/allauth/mfa/recovery_codes/views.py +122 -0
  323. django_allauth_async-65.16.1.1/allauth/mfa/signals.py +58 -0
  324. django_allauth_async-65.16.1.1/allauth/mfa/stages.py +65 -0
  325. django_allauth_async-65.16.1.1/allauth/mfa/static/mfa/js/recovery_codes.js +34 -0
  326. django_allauth_async-65.16.1.1/allauth/mfa/static/mfa/js/webauthn-json.js +261 -0
  327. django_allauth_async-65.16.1.1/allauth/mfa/static/mfa/js/webauthn.js +108 -0
  328. django_allauth_async-65.16.1.1/allauth/mfa/totp/__init__.py +0 -0
  329. django_allauth_async-65.16.1.1/allauth/mfa/totp/forms.py +44 -0
  330. django_allauth_async-65.16.1.1/allauth/mfa/totp/internal/__init__.py +0 -0
  331. django_allauth_async-65.16.1.1/allauth/mfa/totp/internal/auth.py +114 -0
  332. django_allauth_async-65.16.1.1/allauth/mfa/totp/internal/flows.py +44 -0
  333. django_allauth_async-65.16.1.1/allauth/mfa/totp/urls.py +9 -0
  334. django_allauth_async-65.16.1.1/allauth/mfa/totp/views.py +132 -0
  335. django_allauth_async-65.16.1.1/allauth/mfa/urls.py +19 -0
  336. django_allauth_async-65.16.1.1/allauth/mfa/utils.py +17 -0
  337. django_allauth_async-65.16.1.1/allauth/mfa/webauthn/__init__.py +0 -0
  338. django_allauth_async-65.16.1.1/allauth/mfa/webauthn/forms.py +129 -0
  339. django_allauth_async-65.16.1.1/allauth/mfa/webauthn/internal/__init__.py +0 -0
  340. django_allauth_async-65.16.1.1/allauth/mfa/webauthn/internal/auth.py +221 -0
  341. django_allauth_async-65.16.1.1/allauth/mfa/webauthn/internal/flows.py +126 -0
  342. django_allauth_async-65.16.1.1/allauth/mfa/webauthn/stages.py +18 -0
  343. django_allauth_async-65.16.1.1/allauth/mfa/webauthn/urls.py +39 -0
  344. django_allauth_async-65.16.1.1/allauth/mfa/webauthn/views.py +249 -0
  345. django_allauth_async-65.16.1.1/allauth/models.py +0 -0
  346. django_allauth_async-65.16.1.1/allauth/ratelimit.py +7 -0
  347. django_allauth_async-65.16.1.1/allauth/socialaccount/__init__.py +0 -0
  348. django_allauth_async-65.16.1.1/allauth/socialaccount/adapter.py +394 -0
  349. django_allauth_async-65.16.1.1/allauth/socialaccount/admin.py +73 -0
  350. django_allauth_async-65.16.1.1/allauth/socialaccount/app_settings.py +171 -0
  351. django_allauth_async-65.16.1.1/allauth/socialaccount/apps.py +18 -0
  352. django_allauth_async-65.16.1.1/allauth/socialaccount/checks.py +23 -0
  353. django_allauth_async-65.16.1.1/allauth/socialaccount/forms.py +67 -0
  354. django_allauth_async-65.16.1.1/allauth/socialaccount/helpers.py +85 -0
  355. django_allauth_async-65.16.1.1/allauth/socialaccount/internal/__init__.py +0 -0
  356. django_allauth_async-65.16.1.1/allauth/socialaccount/internal/flows/__init__.py +9 -0
  357. django_allauth_async-65.16.1.1/allauth/socialaccount/internal/flows/connect.py +132 -0
  358. django_allauth_async-65.16.1.1/allauth/socialaccount/internal/flows/email_authentication.py +37 -0
  359. django_allauth_async-65.16.1.1/allauth/socialaccount/internal/flows/login.py +98 -0
  360. django_allauth_async-65.16.1.1/allauth/socialaccount/internal/flows/signup.py +147 -0
  361. django_allauth_async-65.16.1.1/allauth/socialaccount/internal/jwtkit.py +108 -0
  362. django_allauth_async-65.16.1.1/allauth/socialaccount/internal/statekit.py +75 -0
  363. django_allauth_async-65.16.1.1/allauth/socialaccount/migrations/0001_initial.py +192 -0
  364. django_allauth_async-65.16.1.1/allauth/socialaccount/migrations/0002_token_max_lengths.py +45 -0
  365. django_allauth_async-65.16.1.1/allauth/socialaccount/migrations/0003_extra_data_default_dict.py +16 -0
  366. django_allauth_async-65.16.1.1/allauth/socialaccount/migrations/0004_app_provider_id_settings.py +29 -0
  367. django_allauth_async-65.16.1.1/allauth/socialaccount/migrations/0005_socialtoken_nullable_app.py +23 -0
  368. django_allauth_async-65.16.1.1/allauth/socialaccount/migrations/0006_alter_socialaccount_extra_data.py +17 -0
  369. django_allauth_async-65.16.1.1/allauth/socialaccount/migrations/__init__.py +0 -0
  370. django_allauth_async-65.16.1.1/allauth/socialaccount/models.py +444 -0
  371. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/__init__.py +59 -0
  372. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/agave/__init__.py +0 -0
  373. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/agave/provider.py +37 -0
  374. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/agave/urls.py +5 -0
  375. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/agave/views.py +37 -0
  376. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/amazon/__init__.py +0 -0
  377. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/amazon/provider.py +36 -0
  378. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/amazon/urls.py +5 -0
  379. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/amazon/views.py +34 -0
  380. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/amazon_cognito/__init__.py +0 -0
  381. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/amazon_cognito/provider.py +71 -0
  382. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/amazon_cognito/urls.py +7 -0
  383. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/amazon_cognito/utils.py +10 -0
  384. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/amazon_cognito/views.py +59 -0
  385. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/apple/__init__.py +0 -0
  386. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/apple/apple_session.py +10 -0
  387. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/apple/client.py +100 -0
  388. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/apple/provider.py +94 -0
  389. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/apple/urls.py +15 -0
  390. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/apple/views.py +155 -0
  391. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/asana/__init__.py +0 -0
  392. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/asana/models.py +0 -0
  393. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/asana/provider.py +28 -0
  394. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/asana/urls.py +5 -0
  395. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/asana/views.py +27 -0
  396. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/atlassian/__init__.py +0 -0
  397. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/atlassian/provider.py +39 -0
  398. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/atlassian/urls.py +5 -0
  399. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/atlassian/views.py +33 -0
  400. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/auth0/__init__.py +0 -0
  401. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/auth0/provider.py +33 -0
  402. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/auth0/urls.py +5 -0
  403. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/auth0/views.py +32 -0
  404. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/authentiq/__init__.py +0 -0
  405. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/authentiq/provider.py +112 -0
  406. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/authentiq/urls.py +5 -0
  407. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/authentiq/views.py +39 -0
  408. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/baidu/__init__.py +0 -0
  409. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/baidu/provider.py +34 -0
  410. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/baidu/urls.py +5 -0
  411. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/baidu/views.py +29 -0
  412. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/base/__init__.py +5 -0
  413. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/base/constants.py +16 -0
  414. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/base/provider.py +430 -0
  415. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/base/utils.py +19 -0
  416. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/base/views.py +27 -0
  417. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/basecamp/__init__.py +0 -0
  418. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/basecamp/provider.py +44 -0
  419. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/basecamp/urls.py +5 -0
  420. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/basecamp/views.py +30 -0
  421. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/battlenet/__init__.py +0 -0
  422. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/battlenet/models.py +0 -0
  423. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/battlenet/provider.py +35 -0
  424. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/battlenet/urls.py +5 -0
  425. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/battlenet/validators.py +4 -0
  426. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/battlenet/views.py +157 -0
  427. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/bitbucket_oauth2/__init__.py +0 -0
  428. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/bitbucket_oauth2/provider.py +35 -0
  429. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/bitbucket_oauth2/urls.py +7 -0
  430. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/bitbucket_oauth2/views.py +46 -0
  431. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/bitly/__init__.py +0 -0
  432. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/bitly/provider.py +29 -0
  433. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/bitly/urls.py +5 -0
  434. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/bitly/views.py +27 -0
  435. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/box/__init__.py +0 -0
  436. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/box/provider.py +25 -0
  437. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/box/urls.py +5 -0
  438. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/box/views.py +34 -0
  439. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/cilogon/__init__.py +0 -0
  440. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/cilogon/provider.py +60 -0
  441. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/cilogon/urls.py +5 -0
  442. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/cilogon/views.py +31 -0
  443. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/clever/__init__.py +0 -0
  444. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/clever/provider.py +57 -0
  445. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/clever/urls.py +5 -0
  446. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/clever/views.py +44 -0
  447. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/coinbase/__init__.py +0 -0
  448. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/coinbase/provider.py +31 -0
  449. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/coinbase/urls.py +5 -0
  450. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/coinbase/views.py +36 -0
  451. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dataporten/__init__.py +0 -0
  452. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dataporten/models.py +0 -0
  453. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dataporten/provider.py +87 -0
  454. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dataporten/urls.py +5 -0
  455. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dataporten/views.py +58 -0
  456. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/daum/__init__.py +0 -0
  457. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/daum/models.py +0 -0
  458. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/daum/provider.py +23 -0
  459. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/daum/urls.py +5 -0
  460. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/daum/views.py +27 -0
  461. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/digitalocean/__init__.py +0 -0
  462. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/digitalocean/provider.py +26 -0
  463. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/digitalocean/urls.py +5 -0
  464. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/digitalocean/views.py +28 -0
  465. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dingtalk/__init__.py +0 -0
  466. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dingtalk/client.py +33 -0
  467. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dingtalk/provider.py +32 -0
  468. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dingtalk/urls.py +5 -0
  469. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dingtalk/views.py +41 -0
  470. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/discogs/__init__.py +0 -0
  471. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/discogs/provider.py +26 -0
  472. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/discogs/urls.py +5 -0
  473. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/discogs/views.py +34 -0
  474. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/discord/__init__.py +0 -0
  475. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/discord/provider.py +110 -0
  476. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/discord/urls.py +5 -0
  477. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/discord/views.py +31 -0
  478. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/disqus/__init__.py +0 -0
  479. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/disqus/provider.py +48 -0
  480. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/disqus/urls.py +5 -0
  481. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/disqus/views.py +36 -0
  482. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/douban/__init__.py +0 -0
  483. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/douban/provider.py +45 -0
  484. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/douban/urls.py +5 -0
  485. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/douban/views.py +44 -0
  486. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/doximity/__init__.py +0 -0
  487. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/doximity/provider.py +38 -0
  488. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/doximity/urls.py +5 -0
  489. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/doximity/views.py +28 -0
  490. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/draugiem/__init__.py +0 -0
  491. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/draugiem/provider.py +56 -0
  492. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/draugiem/urls.py +9 -0
  493. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/draugiem/views.py +90 -0
  494. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/drip/__init__.py +0 -0
  495. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/drip/provider.py +35 -0
  496. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/drip/urls.py +5 -0
  497. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/drip/views.py +35 -0
  498. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dropbox/__init__.py +0 -0
  499. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dropbox/provider.py +26 -0
  500. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dropbox/urls.py +5 -0
  501. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dropbox/views.py +29 -0
  502. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dummy/__init__.py +0 -0
  503. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dummy/forms.py +14 -0
  504. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dummy/provider.py +94 -0
  505. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dummy/templates/dummy/authenticate_form.html +27 -0
  506. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dummy/urls.py +9 -0
  507. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dummy/views.py +69 -0
  508. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dwolla/__init__.py +0 -0
  509. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dwolla/models.py +0 -0
  510. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dwolla/provider.py +31 -0
  511. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dwolla/urls.py +5 -0
  512. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/dwolla/views.py +60 -0
  513. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/edmodo/__init__.py +0 -0
  514. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/edmodo/provider.py +45 -0
  515. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/edmodo/urls.py +5 -0
  516. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/edmodo/views.py +27 -0
  517. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/edx/__init__.py +0 -0
  518. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/edx/provider.py +36 -0
  519. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/edx/urls.py +5 -0
  520. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/edx/views.py +44 -0
  521. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/eventbrite/__init__.py +0 -0
  522. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/eventbrite/provider.py +71 -0
  523. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/eventbrite/urls.py +7 -0
  524. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/eventbrite/views.py +33 -0
  525. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/eveonline/__init__.py +0 -0
  526. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/eveonline/provider.py +52 -0
  527. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/eveonline/urls.py +5 -0
  528. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/eveonline/views.py +28 -0
  529. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/evernote/__init__.py +0 -0
  530. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/evernote/provider.py +29 -0
  531. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/evernote/urls.py +5 -0
  532. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/evernote/views.py +34 -0
  533. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/exist/__init__.py +0 -0
  534. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/exist/provider.py +41 -0
  535. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/exist/urls.py +5 -0
  536. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/exist/views.py +28 -0
  537. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/facebook/__init__.py +0 -0
  538. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/facebook/constants.py +17 -0
  539. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/facebook/data/FacebookLocales.xml +850 -0
  540. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/facebook/flows.py +161 -0
  541. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/facebook/forms.py +5 -0
  542. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/facebook/locale.py +74 -0
  543. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/facebook/provider.py +226 -0
  544. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/facebook/static/facebook/js/fbconnect.js +124 -0
  545. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/facebook/templates/facebook/fbconnect.html +4 -0
  546. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/facebook/urls.py +17 -0
  547. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/facebook/views.py +98 -0
  548. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/feedly/__init__.py +0 -0
  549. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/feedly/provider.py +33 -0
  550. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/feedly/urls.py +5 -0
  551. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/feedly/views.py +30 -0
  552. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/feishu/__init__.py +0 -0
  553. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/feishu/client.py +82 -0
  554. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/feishu/provider.py +26 -0
  555. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/feishu/urls.py +5 -0
  556. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/feishu/views.py +68 -0
  557. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/figma/__init__.py +0 -0
  558. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/figma/provider.py +39 -0
  559. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/figma/urls.py +5 -0
  560. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/figma/views.py +30 -0
  561. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/fivehundredpx/__init__.py +0 -0
  562. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/fivehundredpx/models.py +0 -0
  563. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/fivehundredpx/provider.py +40 -0
  564. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/fivehundredpx/urls.py +5 -0
  565. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/fivehundredpx/views.py +42 -0
  566. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/flickr/__init__.py +0 -0
  567. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/flickr/provider.py +73 -0
  568. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/flickr/urls.py +5 -0
  569. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/flickr/views.py +43 -0
  570. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/foursquare/__init__.py +0 -0
  571. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/foursquare/provider.py +37 -0
  572. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/foursquare/urls.py +5 -0
  573. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/foursquare/views.py +33 -0
  574. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/frontier/__init__.py +0 -0
  575. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/frontier/provider.py +51 -0
  576. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/frontier/urls.py +5 -0
  577. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/frontier/views.py +30 -0
  578. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/fxa/__init__.py +0 -0
  579. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/fxa/constants.py +11 -0
  580. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/fxa/models.py +0 -0
  581. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/fxa/provider.py +29 -0
  582. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/fxa/urls.py +5 -0
  583. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/fxa/views.py +30 -0
  584. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/gitea/__init__.py +0 -0
  585. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/gitea/provider.py +49 -0
  586. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/gitea/urls.py +5 -0
  587. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/gitea/views.py +38 -0
  588. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/github/__init__.py +0 -0
  589. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/github/provider.py +59 -0
  590. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/github/urls.py +5 -0
  591. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/github/views.py +54 -0
  592. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/gitlab/__init__.py +0 -0
  593. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/gitlab/provider.py +36 -0
  594. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/gitlab/urls.py +5 -0
  595. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/gitlab/views.py +81 -0
  596. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/globus/__init__.py +0 -0
  597. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/globus/provider.py +42 -0
  598. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/globus/urls.py +5 -0
  599. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/globus/views.py +37 -0
  600. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/google/__init__.py +0 -0
  601. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/google/provider.py +113 -0
  602. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/google/urls.py +16 -0
  603. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/google/views.py +165 -0
  604. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/gumroad/__init__.py +0 -0
  605. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/gumroad/provider.py +39 -0
  606. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/gumroad/urls.py +5 -0
  607. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/gumroad/views.py +35 -0
  608. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/hubic/__init__.py +0 -0
  609. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/hubic/provider.py +30 -0
  610. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/hubic/urls.py +5 -0
  611. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/hubic/views.py +30 -0
  612. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/hubspot/__init__.py +0 -0
  613. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/hubspot/provider.py +37 -0
  614. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/hubspot/urls.py +5 -0
  615. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/hubspot/views.py +34 -0
  616. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/instagram/__init__.py +0 -0
  617. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/instagram/provider.py +35 -0
  618. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/instagram/urls.py +5 -0
  619. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/instagram/views.py +29 -0
  620. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/jupyterhub/__init__.py +0 -0
  621. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/jupyterhub/provider.py +25 -0
  622. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/jupyterhub/urls.py +5 -0
  623. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/jupyterhub/views.py +35 -0
  624. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/kakao/__init__.py +0 -0
  625. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/kakao/models.py +0 -0
  626. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/kakao/provider.py +55 -0
  627. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/kakao/urls.py +5 -0
  628. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/kakao/views.py +29 -0
  629. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/lemonldap/__init__.py +0 -0
  630. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/lemonldap/provider.py +34 -0
  631. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/lemonldap/urls.py +5 -0
  632. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/lemonldap/views.py +38 -0
  633. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/lichess/__init__.py +0 -0
  634. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/lichess/provider.py +59 -0
  635. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/lichess/urls.py +5 -0
  636. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/lichess/views.py +60 -0
  637. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/line/__init__.py +0 -0
  638. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/line/models.py +0 -0
  639. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/line/provider.py +37 -0
  640. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/line/urls.py +5 -0
  641. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/line/views.py +57 -0
  642. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/linkedin_oauth2/__init__.py +0 -0
  643. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/linkedin_oauth2/provider.py +150 -0
  644. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/linkedin_oauth2/urls.py +7 -0
  645. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/linkedin_oauth2/views.py +52 -0
  646. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mailchimp/__init__.py +0 -0
  647. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mailchimp/provider.py +56 -0
  648. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mailchimp/urls.py +7 -0
  649. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mailchimp/views.py +33 -0
  650. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mailcow/__init__.py +0 -0
  651. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mailcow/provider.py +34 -0
  652. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mailcow/urls.py +5 -0
  653. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mailcow/views.py +37 -0
  654. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mailru/__init__.py +0 -0
  655. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mailru/provider.py +43 -0
  656. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mailru/urls.py +5 -0
  657. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mailru/views.py +41 -0
  658. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mediawiki/__init__.py +0 -0
  659. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mediawiki/provider.py +64 -0
  660. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mediawiki/urls.py +5 -0
  661. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/mediawiki/views.py +34 -0
  662. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/meetup/__init__.py +0 -0
  663. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/meetup/models.py +0 -0
  664. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/meetup/provider.py +25 -0
  665. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/meetup/urls.py +5 -0
  666. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/meetup/views.py +27 -0
  667. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/microsoft/__init__.py +0 -0
  668. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/microsoft/provider.py +46 -0
  669. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/microsoft/urls.py +5 -0
  670. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/microsoft/views.py +89 -0
  671. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/miro/__init__.py +0 -0
  672. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/miro/provider.py +36 -0
  673. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/miro/urls.py +5 -0
  674. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/miro/views.py +32 -0
  675. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/naver/__init__.py +0 -0
  676. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/naver/models.py +0 -0
  677. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/naver/provider.py +35 -0
  678. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/naver/urls.py +5 -0
  679. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/naver/views.py +29 -0
  680. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/netiq/__init__.py +0 -0
  681. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/netiq/provider.py +36 -0
  682. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/netiq/urls.py +5 -0
  683. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/netiq/views.py +51 -0
  684. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/nextcloud/__init__.py +0 -0
  685. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/nextcloud/provider.py +32 -0
  686. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/nextcloud/urls.py +5 -0
  687. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/nextcloud/views.py +58 -0
  688. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/notion/__init__.py +0 -0
  689. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/notion/client.py +43 -0
  690. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/notion/provider.py +57 -0
  691. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/notion/urls.py +5 -0
  692. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/notion/views.py +29 -0
  693. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/oauth/__init__.py +0 -0
  694. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/oauth/client.py +227 -0
  695. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/oauth/oauth1_auth.py +140 -0
  696. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/oauth/provider.py +92 -0
  697. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/oauth/urls.py +17 -0
  698. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/oauth/views.py +124 -0
  699. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/oauth2/__init__.py +0 -0
  700. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/oauth2/client.py +112 -0
  701. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/oauth2/provider.py +135 -0
  702. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/oauth2/urls.py +17 -0
  703. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/oauth2/utils.py +18 -0
  704. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/oauth2/views.py +219 -0
  705. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/odnoklassniki/__init__.py +0 -0
  706. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/odnoklassniki/provider.py +46 -0
  707. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/odnoklassniki/urls.py +5 -0
  708. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/odnoklassniki/views.py +73 -0
  709. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/okta/__init__.py +0 -0
  710. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/okta/provider.py +48 -0
  711. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/okta/urls.py +5 -0
  712. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/okta/views.py +57 -0
  713. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid/__init__.py +0 -0
  714. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid/admin.py +15 -0
  715. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid/forms.py +13 -0
  716. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid/migrations/0001_initial.py +50 -0
  717. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid/migrations/__init__.py +0 -0
  718. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid/models.py +23 -0
  719. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid/provider.py +108 -0
  720. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid/urls.py +9 -0
  721. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid/utils.py +184 -0
  722. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid/views.py +184 -0
  723. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid_connect/__init__.py +0 -0
  724. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid_connect/provider.py +131 -0
  725. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid_connect/urls.py +31 -0
  726. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openid_connect/views.py +116 -0
  727. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openstreetmap/__init__.py +0 -0
  728. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openstreetmap/provider.py +41 -0
  729. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openstreetmap/urls.py +5 -0
  730. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/openstreetmap/views.py +36 -0
  731. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/orcid/__init__.py +0 -0
  732. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/orcid/provider.py +56 -0
  733. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/orcid/urls.py +5 -0
  734. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/orcid/views.py +44 -0
  735. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/patreon/__init__.py +0 -0
  736. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/patreon/constants.py +11 -0
  737. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/patreon/models.py +0 -0
  738. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/patreon/provider.py +52 -0
  739. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/patreon/urls.py +7 -0
  740. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/patreon/views.py +62 -0
  741. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/paypal/__init__.py +0 -0
  742. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/paypal/provider.py +35 -0
  743. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/paypal/urls.py +5 -0
  744. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/paypal/views.py +49 -0
  745. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/pinterest/__init__.py +0 -0
  746. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/pinterest/provider.py +61 -0
  747. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/pinterest/urls.py +5 -0
  748. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/pinterest/views.py +47 -0
  749. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/pocket/__init__.py +0 -0
  750. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/pocket/client.py +96 -0
  751. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/pocket/models.py +0 -0
  752. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/pocket/provider.py +37 -0
  753. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/pocket/urls.py +5 -0
  754. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/pocket/views.py +22 -0
  755. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/questrade/__init__.py +0 -0
  756. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/questrade/provider.py +22 -0
  757. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/questrade/urls.py +5 -0
  758. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/questrade/views.py +32 -0
  759. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/quickbooks/__init__.py +0 -0
  760. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/quickbooks/models.py +0 -0
  761. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/quickbooks/provider.py +61 -0
  762. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/quickbooks/urls.py +5 -0
  763. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/quickbooks/views.py +47 -0
  764. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/reddit/__init__.py +0 -0
  765. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/reddit/provider.py +29 -0
  766. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/reddit/urls.py +5 -0
  767. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/reddit/views.py +39 -0
  768. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/robinhood/__init__.py +0 -0
  769. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/robinhood/provider.py +29 -0
  770. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/robinhood/urls.py +5 -0
  771. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/robinhood/views.py +37 -0
  772. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/salesforce/__init__.py +0 -0
  773. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/salesforce/provider.py +57 -0
  774. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/salesforce/urls.py +5 -0
  775. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/salesforce/views.py +41 -0
  776. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/saml/__init__.py +0 -0
  777. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/saml/provider.py +141 -0
  778. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/saml/urls.py +39 -0
  779. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/saml/utils.py +182 -0
  780. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/saml/views.py +209 -0
  781. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/sharefile/__init__.py +0 -0
  782. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/sharefile/provider.py +29 -0
  783. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/sharefile/urls.py +5 -0
  784. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/sharefile/views.py +38 -0
  785. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/shopify/__init__.py +0 -0
  786. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/shopify/provider.py +88 -0
  787. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/shopify/urls.py +5 -0
  788. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/shopify/views.py +97 -0
  789. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/slack/__init__.py +0 -0
  790. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/slack/models.py +0 -0
  791. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/slack/provider.py +44 -0
  792. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/slack/urls.py +5 -0
  793. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/slack/views.py +37 -0
  794. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/snapchat/__init__.py +0 -0
  795. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/snapchat/constants.py +7 -0
  796. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/snapchat/models.py +0 -0
  797. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/snapchat/provider.py +32 -0
  798. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/snapchat/urls.py +5 -0
  799. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/snapchat/views.py +55 -0
  800. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/soundcloud/__init__.py +0 -0
  801. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/soundcloud/provider.py +33 -0
  802. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/soundcloud/urls.py +5 -0
  803. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/soundcloud/views.py +27 -0
  804. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/spotify/__init__.py +0 -0
  805. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/spotify/provider.py +39 -0
  806. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/spotify/urls.py +5 -0
  807. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/spotify/views.py +27 -0
  808. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/stackexchange/__init__.py +0 -0
  809. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/stackexchange/provider.py +39 -0
  810. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/stackexchange/urls.py +5 -0
  811. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/stackexchange/views.py +31 -0
  812. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/steam/__init__.py +0 -0
  813. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/steam/models.py +0 -0
  814. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/steam/provider.py +134 -0
  815. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/steam/urls.py +9 -0
  816. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/steam/views.py +34 -0
  817. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/stocktwits/__init__.py +0 -0
  818. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/stocktwits/provider.py +31 -0
  819. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/stocktwits/urls.py +5 -0
  820. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/stocktwits/views.py +31 -0
  821. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/strava/__init__.py +0 -0
  822. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/strava/provider.py +49 -0
  823. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/strava/urls.py +5 -0
  824. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/strava/views.py +28 -0
  825. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/stripe/__init__.py +0 -0
  826. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/stripe/provider.py +35 -0
  827. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/stripe/urls.py +5 -0
  828. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/stripe/views.py +30 -0
  829. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/telegram/__init__.py +0 -0
  830. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/telegram/provider.py +70 -0
  831. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/telegram/static/telegram/js/telegram.js +19 -0
  832. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/telegram/templates/telegram/callback.html +6 -0
  833. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/telegram/urls.py +9 -0
  834. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/telegram/views.py +88 -0
  835. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tiktok/__init__.py +0 -0
  836. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tiktok/client.py +7 -0
  837. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tiktok/provider.py +45 -0
  838. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tiktok/scope.py +6 -0
  839. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tiktok/urls.py +5 -0
  840. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tiktok/views.py +48 -0
  841. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/trainingpeaks/__init__.py +0 -0
  842. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/trainingpeaks/provider.py +47 -0
  843. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/trainingpeaks/urls.py +5 -0
  844. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/trainingpeaks/views.py +60 -0
  845. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/trello/__init__.py +0 -0
  846. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/trello/provider.py +47 -0
  847. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/trello/urls.py +5 -0
  848. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/trello/views.py +35 -0
  849. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tumblr/__init__.py +0 -0
  850. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tumblr/provider.py +28 -0
  851. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tumblr/urls.py +5 -0
  852. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tumblr/views.py +34 -0
  853. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tumblr_oauth2/__init__.py +0 -0
  854. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tumblr_oauth2/provider.py +31 -0
  855. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tumblr_oauth2/urls.py +5 -0
  856. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/tumblr_oauth2/views.py +32 -0
  857. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twentythreeandme/__init__.py +0 -0
  858. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twentythreeandme/provider.py +34 -0
  859. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twentythreeandme/urls.py +7 -0
  860. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twentythreeandme/views.py +28 -0
  861. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twitch/__init__.py +0 -0
  862. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twitch/provider.py +43 -0
  863. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twitch/urls.py +5 -0
  864. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twitch/views.py +47 -0
  865. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twitter/__init__.py +0 -0
  866. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twitter/provider.py +60 -0
  867. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twitter/urls.py +5 -0
  868. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twitter/views.py +42 -0
  869. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twitter_oauth2/__init__.py +0 -0
  870. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twitter_oauth2/provider.py +54 -0
  871. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twitter_oauth2/urls.py +7 -0
  872. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/twitter_oauth2/views.py +41 -0
  873. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/untappd/__init__.py +0 -0
  874. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/untappd/client.py +53 -0
  875. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/untappd/provider.py +58 -0
  876. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/untappd/urls.py +5 -0
  877. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/untappd/views.py +32 -0
  878. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vimeo/__init__.py +0 -0
  879. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vimeo/provider.py +29 -0
  880. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vimeo/urls.py +5 -0
  881. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vimeo/views.py +35 -0
  882. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vimeo_oauth2/__init__.py +0 -0
  883. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vimeo_oauth2/models.py +0 -0
  884. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vimeo_oauth2/provider.py +34 -0
  885. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vimeo_oauth2/urls.py +7 -0
  886. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vimeo_oauth2/views.py +28 -0
  887. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vk/__init__.py +0 -0
  888. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vk/provider.py +51 -0
  889. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vk/urls.py +5 -0
  890. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/vk/views.py +58 -0
  891. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/wahoo/__init__.py +0 -0
  892. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/wahoo/provider.py +51 -0
  893. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/wahoo/urls.py +5 -0
  894. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/wahoo/views.py +29 -0
  895. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/weibo/__init__.py +0 -0
  896. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/weibo/provider.py +33 -0
  897. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/weibo/urls.py +5 -0
  898. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/weibo/views.py +29 -0
  899. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/weixin/__init__.py +0 -0
  900. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/weixin/client.py +52 -0
  901. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/weixin/provider.py +32 -0
  902. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/weixin/urls.py +5 -0
  903. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/weixin/views.py +45 -0
  904. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/windowslive/__init__.py +0 -0
  905. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/windowslive/provider.py +41 -0
  906. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/windowslive/urls.py +5 -0
  907. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/windowslive/views.py +38 -0
  908. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/xing/__init__.py +0 -0
  909. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/xing/provider.py +38 -0
  910. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/xing/urls.py +5 -0
  911. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/xing/views.py +34 -0
  912. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/yahoo/__init__.py +0 -0
  913. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/yahoo/models.py +1 -0
  914. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/yahoo/provider.py +44 -0
  915. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/yahoo/urls.py +5 -0
  916. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/yahoo/views.py +29 -0
  917. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/yandex/__init__.py +0 -0
  918. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/yandex/provider.py +57 -0
  919. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/yandex/urls.py +5 -0
  920. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/yandex/views.py +30 -0
  921. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/ynab/__init__.py +0 -0
  922. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/ynab/provider.py +38 -0
  923. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/ynab/urls.py +5 -0
  924. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/ynab/views.py +29 -0
  925. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/zoho/__init__.py +0 -0
  926. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/zoho/provider.py +47 -0
  927. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/zoho/urls.py +5 -0
  928. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/zoho/views.py +29 -0
  929. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/zoom/__init__.py +0 -0
  930. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/zoom/provider.py +41 -0
  931. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/zoom/urls.py +5 -0
  932. django_allauth_async-65.16.1.1/allauth/socialaccount/providers/zoom/views.py +29 -0
  933. django_allauth_async-65.16.1.1/allauth/socialaccount/sessions.py +63 -0
  934. django_allauth_async-65.16.1.1/allauth/socialaccount/signals.py +32 -0
  935. django_allauth_async-65.16.1.1/allauth/socialaccount/templatetags/__init__.py +0 -0
  936. django_allauth_async-65.16.1.1/allauth/socialaccount/templatetags/socialaccount.py +90 -0
  937. django_allauth_async-65.16.1.1/allauth/socialaccount/urls.py +15 -0
  938. django_allauth_async-65.16.1.1/allauth/socialaccount/views.py +151 -0
  939. django_allauth_async-65.16.1.1/allauth/templates/account/account_inactive.html +14 -0
  940. django_allauth_async-65.16.1.1/allauth/templates/account/base_confirm_code.html +96 -0
  941. django_allauth_async-65.16.1.1/allauth/templates/account/base_entrance.html +1 -0
  942. django_allauth_async-65.16.1.1/allauth/templates/account/base_manage.html +1 -0
  943. django_allauth_async-65.16.1.1/allauth/templates/account/base_manage_email.html +1 -0
  944. django_allauth_async-65.16.1.1/allauth/templates/account/base_manage_password.html +1 -0
  945. django_allauth_async-65.16.1.1/allauth/templates/account/base_manage_phone.html +1 -0
  946. django_allauth_async-65.16.1.1/allauth/templates/account/base_reauthenticate.html +29 -0
  947. django_allauth_async-65.16.1.1/allauth/templates/account/confirm_email_verification_code.html +17 -0
  948. django_allauth_async-65.16.1.1/allauth/templates/account/confirm_login_code.html +20 -0
  949. django_allauth_async-65.16.1.1/allauth/templates/account/confirm_password_reset_code.html +14 -0
  950. django_allauth_async-65.16.1.1/allauth/templates/account/confirm_phone_verification_code.html +17 -0
  951. django_allauth_async-65.16.1.1/allauth/templates/account/email/account_already_exists_message.txt +13 -0
  952. django_allauth_async-65.16.1.1/allauth/templates/account/email/account_already_exists_subject.txt +4 -0
  953. django_allauth_async-65.16.1.1/allauth/templates/account/email/base_message.txt +7 -0
  954. django_allauth_async-65.16.1.1/allauth/templates/account/email/base_notification.txt +14 -0
  955. django_allauth_async-65.16.1.1/allauth/templates/account/email/email_changed_message.txt +4 -0
  956. django_allauth_async-65.16.1.1/allauth/templates/account/email/email_changed_subject.txt +4 -0
  957. django_allauth_async-65.16.1.1/allauth/templates/account/email/email_confirm_message.txt +4 -0
  958. django_allauth_async-65.16.1.1/allauth/templates/account/email/email_confirm_subject.txt +4 -0
  959. django_allauth_async-65.16.1.1/allauth/templates/account/email/email_confirmation_message.txt +9 -0
  960. django_allauth_async-65.16.1.1/allauth/templates/account/email/email_confirmation_signup_message.txt +1 -0
  961. django_allauth_async-65.16.1.1/allauth/templates/account/email/email_confirmation_signup_subject.txt +1 -0
  962. django_allauth_async-65.16.1.1/allauth/templates/account/email/email_confirmation_subject.txt +4 -0
  963. django_allauth_async-65.16.1.1/allauth/templates/account/email/email_deleted_message.txt +4 -0
  964. django_allauth_async-65.16.1.1/allauth/templates/account/email/email_deleted_subject.txt +4 -0
  965. django_allauth_async-65.16.1.1/allauth/templates/account/email/login_code_message.txt +9 -0
  966. django_allauth_async-65.16.1.1/allauth/templates/account/email/login_code_subject.txt +4 -0
  967. django_allauth_async-65.16.1.1/allauth/templates/account/email/password_changed_message.txt +4 -0
  968. django_allauth_async-65.16.1.1/allauth/templates/account/email/password_changed_subject.txt +4 -0
  969. django_allauth_async-65.16.1.1/allauth/templates/account/email/password_reset_code_message.txt +9 -0
  970. django_allauth_async-65.16.1.1/allauth/templates/account/email/password_reset_code_subject.txt +4 -0
  971. django_allauth_async-65.16.1.1/allauth/templates/account/email/password_reset_key_message.txt +9 -0
  972. django_allauth_async-65.16.1.1/allauth/templates/account/email/password_reset_key_subject.txt +4 -0
  973. django_allauth_async-65.16.1.1/allauth/templates/account/email/password_reset_message.txt +4 -0
  974. django_allauth_async-65.16.1.1/allauth/templates/account/email/password_reset_subject.txt +4 -0
  975. django_allauth_async-65.16.1.1/allauth/templates/account/email/password_set_message.txt +4 -0
  976. django_allauth_async-65.16.1.1/allauth/templates/account/email/password_set_subject.txt +4 -0
  977. django_allauth_async-65.16.1.1/allauth/templates/account/email/unknown_account_message.txt +10 -0
  978. django_allauth_async-65.16.1.1/allauth/templates/account/email/unknown_account_subject.txt +4 -0
  979. django_allauth_async-65.16.1.1/allauth/templates/account/email.html +83 -0
  980. django_allauth_async-65.16.1.1/allauth/templates/account/email_change.html +68 -0
  981. django_allauth_async-65.16.1.1/allauth/templates/account/email_confirm.html +39 -0
  982. django_allauth_async-65.16.1.1/allauth/templates/account/login.html +61 -0
  983. django_allauth_async-65.16.1.1/allauth/templates/account/logout.html +25 -0
  984. django_allauth_async-65.16.1.1/allauth/templates/account/messages/cannot_delete_primary_email.txt +2 -0
  985. django_allauth_async-65.16.1.1/allauth/templates/account/messages/email_confirmation_failed.txt +2 -0
  986. django_allauth_async-65.16.1.1/allauth/templates/account/messages/email_confirmation_sent.txt +2 -0
  987. django_allauth_async-65.16.1.1/allauth/templates/account/messages/email_confirmed.txt +2 -0
  988. django_allauth_async-65.16.1.1/allauth/templates/account/messages/email_deleted.txt +2 -0
  989. django_allauth_async-65.16.1.1/allauth/templates/account/messages/logged_in.txt +4 -0
  990. django_allauth_async-65.16.1.1/allauth/templates/account/messages/logged_out.txt +2 -0
  991. django_allauth_async-65.16.1.1/allauth/templates/account/messages/login_code_sent.txt +2 -0
  992. django_allauth_async-65.16.1.1/allauth/templates/account/messages/password_changed.txt +2 -0
  993. django_allauth_async-65.16.1.1/allauth/templates/account/messages/password_set.txt +2 -0
  994. django_allauth_async-65.16.1.1/allauth/templates/account/messages/phone_verification_sent.txt +2 -0
  995. django_allauth_async-65.16.1.1/allauth/templates/account/messages/phone_verified.txt +2 -0
  996. django_allauth_async-65.16.1.1/allauth/templates/account/messages/primary_email_set.txt +2 -0
  997. django_allauth_async-65.16.1.1/allauth/templates/account/messages/unverified_primary_email.txt +2 -0
  998. django_allauth_async-65.16.1.1/allauth/templates/account/password_change.html +25 -0
  999. django_allauth_async-65.16.1.1/allauth/templates/account/password_reset.html +33 -0
  1000. django_allauth_async-65.16.1.1/allauth/templates/account/password_reset_done.html +18 -0
  1001. django_allauth_async-65.16.1.1/allauth/templates/account/password_reset_from_key.html +46 -0
  1002. django_allauth_async-65.16.1.1/allauth/templates/account/password_reset_from_key_done.html +14 -0
  1003. django_allauth_async-65.16.1.1/allauth/templates/account/password_set.html +25 -0
  1004. django_allauth_async-65.16.1.1/allauth/templates/account/phone_change.html +51 -0
  1005. django_allauth_async-65.16.1.1/allauth/templates/account/reauthenticate.html +22 -0
  1006. django_allauth_async-65.16.1.1/allauth/templates/account/request_login_code.html +30 -0
  1007. django_allauth_async-65.16.1.1/allauth/templates/account/signup.html +45 -0
  1008. django_allauth_async-65.16.1.1/allauth/templates/account/signup_by_passkey.html +38 -0
  1009. django_allauth_async-65.16.1.1/allauth/templates/account/signup_closed.html +14 -0
  1010. django_allauth_async-65.16.1.1/allauth/templates/account/snippets/already_logged_in.html +9 -0
  1011. django_allauth_async-65.16.1.1/allauth/templates/account/snippets/warn_no_email.html +4 -0
  1012. django_allauth_async-65.16.1.1/allauth/templates/account/verification_sent.html +14 -0
  1013. django_allauth_async-65.16.1.1/allauth/templates/account/verified_email_required.html +25 -0
  1014. django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/alert.html +5 -0
  1015. django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/badge.html +5 -0
  1016. django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/button.html +12 -0
  1017. django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/button_group.html +5 -0
  1018. django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/details.html +9 -0
  1019. django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/field.html +47 -0
  1020. django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/fields.html +1 -0
  1021. django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/form.html +8 -0
  1022. django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/h1.html +1 -0
  1023. django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/h2.html +1 -0
  1024. django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/hr.html +1 -0
  1025. django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/img.html +2 -0
  1026. django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/p.html +1 -0
  1027. django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/panel.html +14 -0
  1028. django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/provider.html +3 -0
  1029. django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/provider_list.html +5 -0
  1030. django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/table.html +5 -0
  1031. django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/tbody.html +5 -0
  1032. django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/td.html +5 -0
  1033. django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/th.html +5 -0
  1034. django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/thead.html +5 -0
  1035. django_allauth_async-65.16.1.1/allauth/templates/allauth/elements/tr.html +5 -0
  1036. django_allauth_async-65.16.1.1/allauth/templates/allauth/layouts/base.html +86 -0
  1037. django_allauth_async-65.16.1.1/allauth/templates/allauth/layouts/entrance.html +2 -0
  1038. django_allauth_async-65.16.1.1/allauth/templates/allauth/layouts/manage.html +2 -0
  1039. django_allauth_async-65.16.1.1/allauth/templates/idp/oidc/authorization_form.html +31 -0
  1040. django_allauth_async-65.16.1.1/allauth/templates/idp/oidc/base.html +1 -0
  1041. django_allauth_async-65.16.1.1/allauth/templates/idp/oidc/device_authorization_code_form.html +25 -0
  1042. django_allauth_async-65.16.1.1/allauth/templates/idp/oidc/device_authorization_confirm_form.html +34 -0
  1043. django_allauth_async-65.16.1.1/allauth/templates/idp/oidc/device_authorization_confirmed.html +14 -0
  1044. django_allauth_async-65.16.1.1/allauth/templates/idp/oidc/device_authorization_denied.html +14 -0
  1045. django_allauth_async-65.16.1.1/allauth/templates/idp/oidc/error.html +18 -0
  1046. django_allauth_async-65.16.1.1/allauth/templates/idp/oidc/logout.html +28 -0
  1047. django_allauth_async-65.16.1.1/allauth/templates/mfa/authenticate.html +73 -0
  1048. django_allauth_async-65.16.1.1/allauth/templates/mfa/base_entrance.html +1 -0
  1049. django_allauth_async-65.16.1.1/allauth/templates/mfa/base_manage.html +1 -0
  1050. django_allauth_async-65.16.1.1/allauth/templates/mfa/email/recovery_codes_generated_message.txt +4 -0
  1051. django_allauth_async-65.16.1.1/allauth/templates/mfa/email/recovery_codes_generated_subject.txt +4 -0
  1052. django_allauth_async-65.16.1.1/allauth/templates/mfa/email/totp_activated_message.txt +4 -0
  1053. django_allauth_async-65.16.1.1/allauth/templates/mfa/email/totp_activated_subject.txt +4 -0
  1054. django_allauth_async-65.16.1.1/allauth/templates/mfa/email/totp_deactivated_message.txt +4 -0
  1055. django_allauth_async-65.16.1.1/allauth/templates/mfa/email/totp_deactivated_subject.txt +4 -0
  1056. django_allauth_async-65.16.1.1/allauth/templates/mfa/email/webauthn_added_message.txt +4 -0
  1057. django_allauth_async-65.16.1.1/allauth/templates/mfa/email/webauthn_added_subject.txt +4 -0
  1058. django_allauth_async-65.16.1.1/allauth/templates/mfa/email/webauthn_removed_message.txt +4 -0
  1059. django_allauth_async-65.16.1.1/allauth/templates/mfa/email/webauthn_removed_subject.txt +4 -0
  1060. django_allauth_async-65.16.1.1/allauth/templates/mfa/index.html +117 -0
  1061. django_allauth_async-65.16.1.1/allauth/templates/mfa/messages/recovery_codes_generated.txt +5 -0
  1062. django_allauth_async-65.16.1.1/allauth/templates/mfa/messages/totp_activated.txt +2 -0
  1063. django_allauth_async-65.16.1.1/allauth/templates/mfa/messages/totp_deactivated.txt +2 -0
  1064. django_allauth_async-65.16.1.1/allauth/templates/mfa/messages/webauthn_added.txt +2 -0
  1065. django_allauth_async-65.16.1.1/allauth/templates/mfa/messages/webauthn_removed.txt +2 -0
  1066. django_allauth_async-65.16.1.1/allauth/templates/mfa/reauthenticate.html +22 -0
  1067. django_allauth_async-65.16.1.1/allauth/templates/mfa/recovery_codes/base.html +5 -0
  1068. django_allauth_async-65.16.1.1/allauth/templates/mfa/recovery_codes/download.txt +2 -0
  1069. django_allauth_async-65.16.1.1/allauth/templates/mfa/recovery_codes/generate.html +33 -0
  1070. django_allauth_async-65.16.1.1/allauth/templates/mfa/recovery_codes/index.html +52 -0
  1071. django_allauth_async-65.16.1.1/allauth/templates/mfa/totp/activate_form.html +36 -0
  1072. django_allauth_async-65.16.1.1/allauth/templates/mfa/totp/base.html +5 -0
  1073. django_allauth_async-65.16.1.1/allauth/templates/mfa/totp/deactivate_form.html +28 -0
  1074. django_allauth_async-65.16.1.1/allauth/templates/mfa/trust.html +40 -0
  1075. django_allauth_async-65.16.1.1/allauth/templates/mfa/webauthn/add_form.html +33 -0
  1076. django_allauth_async-65.16.1.1/allauth/templates/mfa/webauthn/authenticator_confirm_delete.html +20 -0
  1077. django_allauth_async-65.16.1.1/allauth/templates/mfa/webauthn/authenticator_list.html +74 -0
  1078. django_allauth_async-65.16.1.1/allauth/templates/mfa/webauthn/base.html +5 -0
  1079. django_allauth_async-65.16.1.1/allauth/templates/mfa/webauthn/edit_form.html +22 -0
  1080. django_allauth_async-65.16.1.1/allauth/templates/mfa/webauthn/reauthenticate.html +29 -0
  1081. django_allauth_async-65.16.1.1/allauth/templates/mfa/webauthn/signup_form.html +44 -0
  1082. django_allauth_async-65.16.1.1/allauth/templates/mfa/webauthn/snippets/login_script.html +13 -0
  1083. django_allauth_async-65.16.1.1/allauth/templates/mfa/webauthn/snippets/scripts.html +5 -0
  1084. django_allauth_async-65.16.1.1/allauth/templates/openid/base.html +1 -0
  1085. django_allauth_async-65.16.1.1/allauth/templates/openid/login.html +24 -0
  1086. django_allauth_async-65.16.1.1/allauth/templates/socialaccount/authentication_error.html +14 -0
  1087. django_allauth_async-65.16.1.1/allauth/templates/socialaccount/base_entrance.html +1 -0
  1088. django_allauth_async-65.16.1.1/allauth/templates/socialaccount/base_manage.html +1 -0
  1089. django_allauth_async-65.16.1.1/allauth/templates/socialaccount/connections.html +54 -0
  1090. django_allauth_async-65.16.1.1/allauth/templates/socialaccount/email/account_connected_message.txt +4 -0
  1091. django_allauth_async-65.16.1.1/allauth/templates/socialaccount/email/account_connected_subject.txt +4 -0
  1092. django_allauth_async-65.16.1.1/allauth/templates/socialaccount/email/account_disconnected_message.txt +4 -0
  1093. django_allauth_async-65.16.1.1/allauth/templates/socialaccount/email/account_disconnected_subject.txt +4 -0
  1094. django_allauth_async-65.16.1.1/allauth/templates/socialaccount/login.html +31 -0
  1095. django_allauth_async-65.16.1.1/allauth/templates/socialaccount/login_cancelled.html +15 -0
  1096. django_allauth_async-65.16.1.1/allauth/templates/socialaccount/login_redirect.html +13 -0
  1097. django_allauth_async-65.16.1.1/allauth/templates/socialaccount/messages/account_connected.txt +2 -0
  1098. django_allauth_async-65.16.1.1/allauth/templates/socialaccount/messages/account_connected_other.txt +2 -0
  1099. django_allauth_async-65.16.1.1/allauth/templates/socialaccount/messages/account_connected_updated.txt +1 -0
  1100. django_allauth_async-65.16.1.1/allauth/templates/socialaccount/messages/account_disconnected.txt +2 -0
  1101. django_allauth_async-65.16.1.1/allauth/templates/socialaccount/signup.html +29 -0
  1102. django_allauth_async-65.16.1.1/allauth/templates/socialaccount/snippets/login.html +15 -0
  1103. django_allauth_async-65.16.1.1/allauth/templates/socialaccount/snippets/login_extra.html +2 -0
  1104. django_allauth_async-65.16.1.1/allauth/templates/socialaccount/snippets/provider_list.html +18 -0
  1105. django_allauth_async-65.16.1.1/allauth/templates/usersessions/base_manage.html +1 -0
  1106. django_allauth_async-65.16.1.1/allauth/templates/usersessions/messages/sessions_logged_out.txt +2 -0
  1107. django_allauth_async-65.16.1.1/allauth/templates/usersessions/usersession_list.html +81 -0
  1108. django_allauth_async-65.16.1.1/allauth/templatetags/__init__.py +0 -0
  1109. django_allauth_async-65.16.1.1/allauth/templatetags/allauth.py +145 -0
  1110. django_allauth_async-65.16.1.1/allauth/urls.py +71 -0
  1111. django_allauth_async-65.16.1.1/allauth/usersessions/__init__.py +0 -0
  1112. django_allauth_async-65.16.1.1/allauth/usersessions/adapter.py +22 -0
  1113. django_allauth_async-65.16.1.1/allauth/usersessions/admin.py +14 -0
  1114. django_allauth_async-65.16.1.1/allauth/usersessions/app_settings.py +38 -0
  1115. django_allauth_async-65.16.1.1/allauth/usersessions/apps.py +24 -0
  1116. django_allauth_async-65.16.1.1/allauth/usersessions/forms.py +14 -0
  1117. django_allauth_async-65.16.1.1/allauth/usersessions/internal/__init__.py +0 -0
  1118. django_allauth_async-65.16.1.1/allauth/usersessions/internal/flows/__init__.py +4 -0
  1119. django_allauth_async-65.16.1.1/allauth/usersessions/internal/flows/sessions.py +22 -0
  1120. django_allauth_async-65.16.1.1/allauth/usersessions/middleware.py +21 -0
  1121. django_allauth_async-65.16.1.1/allauth/usersessions/migrations/0001_initial.py +55 -0
  1122. django_allauth_async-65.16.1.1/allauth/usersessions/migrations/__init__.py +0 -0
  1123. django_allauth_async-65.16.1.1/allauth/usersessions/models.py +131 -0
  1124. django_allauth_async-65.16.1.1/allauth/usersessions/signals.py +25 -0
  1125. django_allauth_async-65.16.1.1/allauth/usersessions/urls.py +8 -0
  1126. django_allauth_async-65.16.1.1/allauth/usersessions/views.py +52 -0
  1127. django_allauth_async-65.16.1.1/allauth/utils.py +220 -0
  1128. django_allauth_async-65.16.1.1/allauth_async/__init__.py +35 -0
  1129. django_allauth_async-65.16.1.1/allauth_async/_upstream_manifest.json +691 -0
  1130. django_allauth_async-65.16.1.1/allauth_async/account/__init__.py +1 -0
  1131. django_allauth_async-65.16.1.1/allauth_async/account/adapter.py +569 -0
  1132. django_allauth_async-65.16.1.1/allauth_async/account/auth_backends.py +197 -0
  1133. django_allauth_async-65.16.1.1/allauth_async/account/authentication.py +17 -0
  1134. django_allauth_async-65.16.1.1/allauth_async/account/internal/__init__.py +1 -0
  1135. django_allauth_async-65.16.1.1/allauth_async/account/internal/flows/__init__.py +34 -0
  1136. django_allauth_async-65.16.1.1/allauth_async/account/internal/flows/email_verification.py +432 -0
  1137. django_allauth_async-65.16.1.1/allauth_async/account/internal/flows/login.py +102 -0
  1138. django_allauth_async-65.16.1.1/allauth_async/account/internal/flows/login_by_code.py +244 -0
  1139. django_allauth_async-65.16.1.1/allauth_async/account/internal/flows/logout.py +32 -0
  1140. django_allauth_async-65.16.1.1/allauth_async/account/internal/flows/manage_email.py +147 -0
  1141. django_allauth_async-65.16.1.1/allauth_async/account/internal/flows/password_change.py +66 -0
  1142. django_allauth_async-65.16.1.1/allauth_async/account/internal/flows/password_reset.py +105 -0
  1143. django_allauth_async-65.16.1.1/allauth_async/account/internal/flows/reauthentication.py +149 -0
  1144. django_allauth_async-65.16.1.1/allauth_async/account/internal/flows/signup.py +64 -0
  1145. django_allauth_async-65.16.1.1/allauth_async/account/internal/stagekit.py +70 -0
  1146. django_allauth_async-65.16.1.1/allauth_async/account/managers.py +58 -0
  1147. django_allauth_async-65.16.1.1/allauth_async/account/middleware.py +77 -0
  1148. django_allauth_async-65.16.1.1/allauth_async/account/models.py +152 -0
  1149. django_allauth_async-65.16.1.1/allauth_async/account/stages.py +257 -0
  1150. django_allauth_async-65.16.1.1/allauth_async/account/utils.py +216 -0
  1151. django_allauth_async-65.16.1.1/allauth_async/core/__init__.py +1 -0
  1152. django_allauth_async-65.16.1.1/allauth_async/core/httpkit.py +126 -0
  1153. django_allauth_async-65.16.1.1/allauth_async/core/internal/__init__.py +1 -0
  1154. django_allauth_async-65.16.1.1/allauth_async/core/internal/adapterkit.py +50 -0
  1155. django_allauth_async-65.16.1.1/allauth_async/core/internal/ratelimit.py +154 -0
  1156. django_allauth_async-65.16.1.1/allauth_async/core/ratelimit.py +65 -0
  1157. django_allauth_async-65.16.1.1/allauth_async/decorators.py +31 -0
  1158. django_allauth_async-65.16.1.1/allauth_async/headless/__init__.py +0 -0
  1159. django_allauth_async-65.16.1.1/allauth_async/headless/account/__init__.py +0 -0
  1160. django_allauth_async-65.16.1.1/allauth_async/headless/account/inputs.py +462 -0
  1161. django_allauth_async-65.16.1.1/allauth_async/headless/account/response.py +44 -0
  1162. django_allauth_async-65.16.1.1/allauth_async/headless/account/urls.py +140 -0
  1163. django_allauth_async-65.16.1.1/allauth_async/headless/account/views.py +267 -0
  1164. django_allauth_async-65.16.1.1/allauth_async/headless/adapter.py +107 -0
  1165. django_allauth_async-65.16.1.1/allauth_async/headless/base/__init__.py +0 -0
  1166. django_allauth_async-65.16.1.1/allauth_async/headless/base/response.py +211 -0
  1167. django_allauth_async-65.16.1.1/allauth_async/headless/base/urls.py +21 -0
  1168. django_allauth_async-65.16.1.1/allauth_async/headless/base/views.py +91 -0
  1169. django_allauth_async-65.16.1.1/allauth_async/headless/internal/__init__.py +0 -0
  1170. django_allauth_async-65.16.1.1/allauth_async/headless/internal/authkit.py +49 -0
  1171. django_allauth_async-65.16.1.1/allauth_async/headless/internal/decorators.py +46 -0
  1172. django_allauth_async-65.16.1.1/allauth_async/headless/internal/restkit/__init__.py +0 -0
  1173. django_allauth_async-65.16.1.1/allauth_async/headless/internal/restkit/inputs.py +70 -0
  1174. django_allauth_async-65.16.1.1/allauth_async/headless/internal/restkit/views.py +60 -0
  1175. django_allauth_async-65.16.1.1/allauth_async/headless/mfa/__init__.py +0 -0
  1176. django_allauth_async-65.16.1.1/allauth_async/headless/mfa/inputs.py +341 -0
  1177. django_allauth_async-65.16.1.1/allauth_async/headless/mfa/urls.py +120 -0
  1178. django_allauth_async-65.16.1.1/allauth_async/headless/mfa/views.py +380 -0
  1179. django_allauth_async-65.16.1.1/allauth_async/headless/socialaccount/__init__.py +0 -0
  1180. django_allauth_async-65.16.1.1/allauth_async/headless/socialaccount/forms.py +68 -0
  1181. django_allauth_async-65.16.1.1/allauth_async/headless/socialaccount/inputs.py +201 -0
  1182. django_allauth_async-65.16.1.1/allauth_async/headless/socialaccount/internal.py +94 -0
  1183. django_allauth_async-65.16.1.1/allauth_async/headless/socialaccount/response.py +130 -0
  1184. django_allauth_async-65.16.1.1/allauth_async/headless/socialaccount/urls.py +68 -0
  1185. django_allauth_async-65.16.1.1/allauth_async/headless/socialaccount/views.py +136 -0
  1186. django_allauth_async-65.16.1.1/allauth_async/headless/urls.py +113 -0
  1187. django_allauth_async-65.16.1.1/allauth_async/mfa/__init__.py +0 -0
  1188. django_allauth_async-65.16.1.1/allauth_async/mfa/adapter.py +154 -0
  1189. django_allauth_async-65.16.1.1/allauth_async/mfa/base/__init__.py +0 -0
  1190. django_allauth_async-65.16.1.1/allauth_async/mfa/base/internal/__init__.py +0 -0
  1191. django_allauth_async-65.16.1.1/allauth_async/mfa/base/internal/flows.py +152 -0
  1192. django_allauth_async-65.16.1.1/allauth_async/mfa/internal/__init__.py +0 -0
  1193. django_allauth_async-65.16.1.1/allauth_async/mfa/internal/flows/__init__.py +0 -0
  1194. django_allauth_async-65.16.1.1/allauth_async/mfa/internal/flows/add.py +27 -0
  1195. django_allauth_async-65.16.1.1/allauth_async/mfa/internal/flows/trust.py +70 -0
  1196. django_allauth_async-65.16.1.1/allauth_async/mfa/models.py +48 -0
  1197. django_allauth_async-65.16.1.1/allauth_async/mfa/recovery_codes/__init__.py +0 -0
  1198. django_allauth_async-65.16.1.1/allauth_async/mfa/recovery_codes/internal/__init__.py +0 -0
  1199. django_allauth_async-65.16.1.1/allauth_async/mfa/recovery_codes/internal/auth.py +119 -0
  1200. django_allauth_async-65.16.1.1/allauth_async/mfa/recovery_codes/internal/flows.py +106 -0
  1201. django_allauth_async-65.16.1.1/allauth_async/mfa/stages.py +77 -0
  1202. django_allauth_async-65.16.1.1/allauth_async/mfa/totp/__init__.py +0 -0
  1203. django_allauth_async-65.16.1.1/allauth_async/mfa/totp/internal/__init__.py +0 -0
  1204. django_allauth_async-65.16.1.1/allauth_async/mfa/totp/internal/auth.py +74 -0
  1205. django_allauth_async-65.16.1.1/allauth_async/mfa/totp/internal/flows.py +58 -0
  1206. django_allauth_async-65.16.1.1/allauth_async/mfa/utils.py +16 -0
  1207. django_allauth_async-65.16.1.1/allauth_async/mfa/webauthn/__init__.py +0 -0
  1208. django_allauth_async-65.16.1.1/allauth_async/mfa/webauthn/internal/__init__.py +0 -0
  1209. django_allauth_async-65.16.1.1/allauth_async/mfa/webauthn/internal/auth.py +225 -0
  1210. django_allauth_async-65.16.1.1/allauth_async/mfa/webauthn/internal/flows.py +151 -0
  1211. django_allauth_async-65.16.1.1/allauth_async/mfa/webauthn/stages.py +26 -0
  1212. django_allauth_async-65.16.1.1/allauth_async/socialaccount/__init__.py +0 -0
  1213. django_allauth_async-65.16.1.1/allauth_async/socialaccount/adapter.py +275 -0
  1214. django_allauth_async-65.16.1.1/allauth_async/socialaccount/helpers.py +84 -0
  1215. django_allauth_async-65.16.1.1/allauth_async/socialaccount/internal/__init__.py +0 -0
  1216. django_allauth_async-65.16.1.1/allauth_async/socialaccount/internal/flows/__init__.py +15 -0
  1217. django_allauth_async-65.16.1.1/allauth_async/socialaccount/internal/flows/connect.py +170 -0
  1218. django_allauth_async-65.16.1.1/allauth_async/socialaccount/internal/flows/email_authentication.py +38 -0
  1219. django_allauth_async-65.16.1.1/allauth_async/socialaccount/internal/flows/login.py +124 -0
  1220. django_allauth_async-65.16.1.1/allauth_async/socialaccount/internal/flows/signup.py +191 -0
  1221. django_allauth_async-65.16.1.1/allauth_async/socialaccount/internal/jwtkit.py +80 -0
  1222. django_allauth_async-65.16.1.1/allauth_async/socialaccount/internal/statekit.py +66 -0
  1223. django_allauth_async-65.16.1.1/allauth_async/socialaccount/models.py +243 -0
  1224. django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/__init__.py +71 -0
  1225. django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/digitalocean.py +25 -0
  1226. django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/gitea.py +27 -0
  1227. django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/github.py +42 -0
  1228. django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/gitlab.py +86 -0
  1229. django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/google.py +73 -0
  1230. django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/microsoft.py +82 -0
  1231. django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/nextcloud.py +63 -0
  1232. django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/oauth2/__init__.py +0 -0
  1233. django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/oauth2/client.py +84 -0
  1234. django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/oauth2/provider.py +113 -0
  1235. django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/oauth2/views.py +241 -0
  1236. django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/okta.py +29 -0
  1237. django_allauth_async-65.16.1.1/allauth_async/socialaccount/providers/openid_connect.py +139 -0
  1238. django_allauth_async-65.16.1.1/allauth_async/tests/__init__.py +0 -0
  1239. django_allauth_async-65.16.1.1/allauth_async/tests/conftest.py +106 -0
  1240. django_allauth_async-65.16.1.1/allauth_async/tests/headless/__init__.py +0 -0
  1241. django_allauth_async-65.16.1.1/allauth_async/tests/headless/conftest.py +5 -0
  1242. django_allauth_async-65.16.1.1/allauth_async/tests/headless/test_account_endpoints.py +308 -0
  1243. django_allauth_async-65.16.1.1/allauth_async/tests/headless/test_fail_closed_gates.py +110 -0
  1244. django_allauth_async-65.16.1.1/allauth_async/tests/headless/test_parity.py +510 -0
  1245. django_allauth_async-65.16.1.1/allauth_async/tests/headless/test_ratelimit_placement.py +198 -0
  1246. django_allauth_async-65.16.1.1/allauth_async/tests/headless/urls.py +18 -0
  1247. django_allauth_async-65.16.1.1/allauth_async/tests/headless/utils.py +83 -0
  1248. django_allauth_async-65.16.1.1/allauth_async/tests/mfa/__init__.py +0 -0
  1249. django_allauth_async-65.16.1.1/allauth_async/tests/mfa/conftest.py +162 -0
  1250. django_allauth_async-65.16.1.1/allauth_async/tests/mfa/test_adapter_contract.py +52 -0
  1251. django_allauth_async-65.16.1.1/allauth_async/tests/mfa/test_parity.py +231 -0
  1252. django_allauth_async-65.16.1.1/allauth_async/tests/mfa/test_reauthentication.py +116 -0
  1253. django_allauth_async-65.16.1.1/allauth_async/tests/mfa/test_recovery_codes.py +147 -0
  1254. django_allauth_async-65.16.1.1/allauth_async/tests/mfa/test_totp.py +189 -0
  1255. django_allauth_async-65.16.1.1/allauth_async/tests/mfa/test_trust.py +169 -0
  1256. django_allauth_async-65.16.1.1/allauth_async/tests/mfa/test_webauthn.py +244 -0
  1257. django_allauth_async-65.16.1.1/allauth_async/tests/socialaccount/__init__.py +0 -0
  1258. django_allauth_async-65.16.1.1/allauth_async/tests/socialaccount/conftest.py +145 -0
  1259. django_allauth_async-65.16.1.1/allauth_async/tests/socialaccount/test_github_e2e.py +231 -0
  1260. django_allauth_async-65.16.1.1/allauth_async/tests/socialaccount/test_headless.py +292 -0
  1261. django_allauth_async-65.16.1.1/allauth_async/tests/socialaccount/test_lookup_save_parity.py +164 -0
  1262. django_allauth_async-65.16.1.1/allauth_async/tests/socialaccount/test_oauth2_client.py +146 -0
  1263. django_allauth_async-65.16.1.1/allauth_async/tests/socialaccount/test_openid_connect.py +199 -0
  1264. django_allauth_async-65.16.1.1/allauth_async/tests/socialaccount/test_urls.py +44 -0
  1265. django_allauth_async-65.16.1.1/allauth_async/tests/socialaccount/urls.py +15 -0
  1266. django_allauth_async-65.16.1.1/allauth_async/tests/test_adapter.py +199 -0
  1267. django_allauth_async-65.16.1.1/allauth_async/tests/test_auth_backends.py +121 -0
  1268. django_allauth_async-65.16.1.1/allauth_async/tests/test_email_verification.py +137 -0
  1269. django_allauth_async-65.16.1.1/allauth_async/tests/test_flows_login.py +121 -0
  1270. django_allauth_async-65.16.1.1/allauth_async/tests/test_flows_signup.py +74 -0
  1271. django_allauth_async-65.16.1.1/allauth_async/tests/test_login_by_code.py +62 -0
  1272. django_allauth_async-65.16.1.1/allauth_async/tests/test_middleware.py +84 -0
  1273. django_allauth_async-65.16.1.1/allauth_async/tests/test_models.py +93 -0
  1274. django_allauth_async-65.16.1.1/allauth_async/tests/test_ratelimit.py +79 -0
  1275. django_allauth_async-65.16.1.1/allauth_async/tests/test_reauthentication_resume.py +53 -0
  1276. django_allauth_async-65.16.1.1/allauth_async/tests/test_stages.py +267 -0
  1277. django_allauth_async-65.16.1.1/allauth_async/tests/test_twin_override_guard.py +226 -0
  1278. django_allauth_async-65.16.1.1/allauth_async/urls.py +211 -0
  1279. django_allauth_async-65.16.1.1/devenv.lock +103 -0
  1280. django_allauth_async-65.16.1.1/devenv.nix +32 -0
  1281. django_allauth_async-65.16.1.1/devenv.yaml +15 -0
  1282. django_allauth_async-65.16.1.1/django_allauth_async.egg-info/PKG-INFO +285 -0
  1283. django_allauth_async-65.16.1.1/django_allauth_async.egg-info/SOURCES.txt +2060 -0
  1284. django_allauth_async-65.16.1.1/django_allauth_async.egg-info/dependency_links.txt +1 -0
  1285. django_allauth_async-65.16.1.1/django_allauth_async.egg-info/requires.txt +31 -0
  1286. django_allauth_async-65.16.1.1/django_allauth_async.egg-info/top_level.txt +2 -0
  1287. django_allauth_async-65.16.1.1/docs/Makefile +153 -0
  1288. django_allauth_async-65.16.1.1/docs/account/adapter.rst +5 -0
  1289. django_allauth_async-65.16.1.1/docs/account/advanced.rst +115 -0
  1290. django_allauth_async-65.16.1.1/docs/account/configuration.rst +410 -0
  1291. django_allauth_async-65.16.1.1/docs/account/decorators.rst +26 -0
  1292. django_allauth_async-65.16.1.1/docs/account/email.rst +40 -0
  1293. django_allauth_async-65.16.1.1/docs/account/forms.rst +218 -0
  1294. django_allauth_async-65.16.1.1/docs/account/index.rst +17 -0
  1295. django_allauth_async-65.16.1.1/docs/account/introduction.rst +20 -0
  1296. django_allauth_async-65.16.1.1/docs/account/phone.rst +95 -0
  1297. django_allauth_async-65.16.1.1/docs/account/rate_limits.rst +52 -0
  1298. django_allauth_async-65.16.1.1/docs/account/signals.rst +59 -0
  1299. django_allauth_async-65.16.1.1/docs/account/templates.rst +25 -0
  1300. django_allauth_async-65.16.1.1/docs/account/views.rst +103 -0
  1301. django_allauth_async-65.16.1.1/docs/common/admin.rst +29 -0
  1302. django_allauth_async-65.16.1.1/docs/common/configuration.rst +12 -0
  1303. django_allauth_async-65.16.1.1/docs/common/email.rst +27 -0
  1304. django_allauth_async-65.16.1.1/docs/common/index.rst +12 -0
  1305. django_allauth_async-65.16.1.1/docs/common/messages.rst +8 -0
  1306. django_allauth_async-65.16.1.1/docs/common/rate_limits.rst +86 -0
  1307. django_allauth_async-65.16.1.1/docs/common/templates.rst +195 -0
  1308. django_allauth_async-65.16.1.1/docs/conf.py +294 -0
  1309. django_allauth_async-65.16.1.1/docs/faq.rst +103 -0
  1310. django_allauth_async-65.16.1.1/docs/headless/adapter.rst +5 -0
  1311. django_allauth_async-65.16.1.1/docs/headless/api.rst +16 -0
  1312. django_allauth_async-65.16.1.1/docs/headless/configuration.rst +52 -0
  1313. django_allauth_async-65.16.1.1/docs/headless/cors.rst +33 -0
  1314. django_allauth_async-65.16.1.1/docs/headless/faq.rst +17 -0
  1315. django_allauth_async-65.16.1.1/docs/headless/index.rst +13 -0
  1316. django_allauth_async-65.16.1.1/docs/headless/installation.rst +45 -0
  1317. django_allauth_async-65.16.1.1/docs/headless/introduction.rst +7 -0
  1318. django_allauth_async-65.16.1.1/docs/headless/openapi-specification/index.html +11 -0
  1319. django_allauth_async-65.16.1.1/docs/headless/token-strategies/abstract-strategy.rst +9 -0
  1320. django_allauth_async-65.16.1.1/docs/headless/token-strategies/index.rst +9 -0
  1321. django_allauth_async-65.16.1.1/docs/headless/token-strategies/introduction.rst +21 -0
  1322. django_allauth_async-65.16.1.1/docs/headless/token-strategies/jwt-tokens.rst +152 -0
  1323. django_allauth_async-65.16.1.1/docs/headless/token-strategies/session-tokens.rst +69 -0
  1324. django_allauth_async-65.16.1.1/docs/idp/index.rst +11 -0
  1325. django_allauth_async-65.16.1.1/docs/idp/openid-connect/adapter.rst +5 -0
  1326. django_allauth_async-65.16.1.1/docs/idp/openid-connect/clients.rst +62 -0
  1327. django_allauth_async-65.16.1.1/docs/idp/openid-connect/configuration.rst +52 -0
  1328. django_allauth_async-65.16.1.1/docs/idp/openid-connect/index.rst +13 -0
  1329. django_allauth_async-65.16.1.1/docs/idp/openid-connect/installation.rst +44 -0
  1330. django_allauth_async-65.16.1.1/docs/idp/openid-connect/integrations.rst +59 -0
  1331. django_allauth_async-65.16.1.1/docs/idp/openid-connect/introduction.rst +21 -0
  1332. django_allauth_async-65.16.1.1/docs/idp/openid-connect/views.rst +43 -0
  1333. django_allauth_async-65.16.1.1/docs/index.rst +31 -0
  1334. django_allauth_async-65.16.1.1/docs/installation/examples.rst +28 -0
  1335. django_allauth_async-65.16.1.1/docs/installation/index.rst +10 -0
  1336. django_allauth_async-65.16.1.1/docs/installation/quickstart.rst +234 -0
  1337. django_allauth_async-65.16.1.1/docs/installation/requirements.rst +18 -0
  1338. django_allauth_async-65.16.1.1/docs/introduction/index.rst +32 -0
  1339. django_allauth_async-65.16.1.1/docs/mfa/adapter.rst +5 -0
  1340. django_allauth_async-65.16.1.1/docs/mfa/configuration.rst +100 -0
  1341. django_allauth_async-65.16.1.1/docs/mfa/django-allauth-2fa.rst +40 -0
  1342. django_allauth_async-65.16.1.1/docs/mfa/forms.rst +101 -0
  1343. django_allauth_async-65.16.1.1/docs/mfa/index.rst +12 -0
  1344. django_allauth_async-65.16.1.1/docs/mfa/introduction.rst +35 -0
  1345. django_allauth_async-65.16.1.1/docs/mfa/signals.rst +22 -0
  1346. django_allauth_async-65.16.1.1/docs/mfa/webauthn.rst +22 -0
  1347. django_allauth_async-65.16.1.1/docs/project/contributing.rst +6 -0
  1348. django_allauth_async-65.16.1.1/docs/project/funding.rst +7 -0
  1349. django_allauth_async-65.16.1.1/docs/project/index.rst +8 -0
  1350. django_allauth_async-65.16.1.1/docs/project/support.rst +6 -0
  1351. django_allauth_async-65.16.1.1/docs/release-notes/2012.rst +358 -0
  1352. django_allauth_async-65.16.1.1/docs/release-notes/2013.rst +427 -0
  1353. django_allauth_async-65.16.1.1/docs/release-notes/2014.rst +124 -0
  1354. django_allauth_async-65.16.1.1/docs/release-notes/2015.rst +211 -0
  1355. django_allauth_async-65.16.1.1/docs/release-notes/2016.rst +162 -0
  1356. django_allauth_async-65.16.1.1/docs/release-notes/2017.rst +149 -0
  1357. django_allauth_async-65.16.1.1/docs/release-notes/2018.rst +92 -0
  1358. django_allauth_async-65.16.1.1/docs/release-notes/2019.rst +93 -0
  1359. django_allauth_async-65.16.1.1/docs/release-notes/2020.rst +66 -0
  1360. django_allauth_async-65.16.1.1/docs/release-notes/2021.rst +54 -0
  1361. django_allauth_async-65.16.1.1/docs/release-notes/2022.rst +129 -0
  1362. django_allauth_async-65.16.1.1/docs/release-notes/2023.rst +386 -0
  1363. django_allauth_async-65.16.1.1/docs/release-notes/2024.rst +599 -0
  1364. django_allauth_async-65.16.1.1/docs/release-notes/history.rst +115 -0
  1365. django_allauth_async-65.16.1.1/docs/release-notes/index.rst +20 -0
  1366. django_allauth_async-65.16.1.1/docs/release-notes/recent.rst +1 -0
  1367. django_allauth_async-65.16.1.1/docs/requirements.txt +2 -0
  1368. django_allauth_async-65.16.1.1/docs/settings.py +36 -0
  1369. django_allauth_async-65.16.1.1/docs/socialaccount/adapter.rst +5 -0
  1370. django_allauth_async-65.16.1.1/docs/socialaccount/advanced.rst +108 -0
  1371. django_allauth_async-65.16.1.1/docs/socialaccount/configuration.rst +99 -0
  1372. django_allauth_async-65.16.1.1/docs/socialaccount/forms.rst +73 -0
  1373. django_allauth_async-65.16.1.1/docs/socialaccount/index.rst +16 -0
  1374. django_allauth_async-65.16.1.1/docs/socialaccount/introduction.rst +18 -0
  1375. django_allauth_async-65.16.1.1/docs/socialaccount/provider_configuration.rst +78 -0
  1376. django_allauth_async-65.16.1.1/docs/socialaccount/providers/23andme.rst +8 -0
  1377. django_allauth_async-65.16.1.1/docs/socialaccount/providers/500px.rst +8 -0
  1378. django_allauth_async-65.16.1.1/docs/socialaccount/providers/agave.rst +23 -0
  1379. django_allauth_async-65.16.1.1/docs/socialaccount/providers/amazon.rst +11 -0
  1380. django_allauth_async-65.16.1.1/docs/socialaccount/providers/amazon_cognito.rst +30 -0
  1381. django_allauth_async-65.16.1.1/docs/socialaccount/providers/apple.rst +60 -0
  1382. django_allauth_async-65.16.1.1/docs/socialaccount/providers/atlassian.rst +56 -0
  1383. django_allauth_async-65.16.1.1/docs/socialaccount/providers/auth0.rst +20 -0
  1384. django_allauth_async-65.16.1.1/docs/socialaccount/providers/authelia.rst +27 -0
  1385. django_allauth_async-65.16.1.1/docs/socialaccount/providers/authentiq.rst +24 -0
  1386. django_allauth_async-65.16.1.1/docs/socialaccount/providers/baidu.rst +6 -0
  1387. django_allauth_async-65.16.1.1/docs/socialaccount/providers/basecamp.rst +11 -0
  1388. django_allauth_async-65.16.1.1/docs/socialaccount/providers/battlenet.rst +39 -0
  1389. django_allauth_async-65.16.1.1/docs/socialaccount/providers/bitbucket.rst +13 -0
  1390. django_allauth_async-65.16.1.1/docs/socialaccount/providers/box.rst +8 -0
  1391. django_allauth_async-65.16.1.1/docs/socialaccount/providers/cern.rst +30 -0
  1392. django_allauth_async-65.16.1.1/docs/socialaccount/providers/cilogon.rst +10 -0
  1393. django_allauth_async-65.16.1.1/docs/socialaccount/providers/clever.rst +7 -0
  1394. django_allauth_async-65.16.1.1/docs/socialaccount/providers/dataporten.rst +7 -0
  1395. django_allauth_async-65.16.1.1/docs/socialaccount/providers/daum.rst +8 -0
  1396. django_allauth_async-65.16.1.1/docs/socialaccount/providers/digitalocean.rst +22 -0
  1397. django_allauth_async-65.16.1.1/docs/socialaccount/providers/dingtalk.rst +21 -0
  1398. django_allauth_async-65.16.1.1/docs/socialaccount/providers/discogs.rst +29 -0
  1399. django_allauth_async-65.16.1.1/docs/socialaccount/providers/discord.rst +12 -0
  1400. django_allauth_async-65.16.1.1/docs/socialaccount/providers/doximity.rst +11 -0
  1401. django_allauth_async-65.16.1.1/docs/socialaccount/providers/draugiem.rst +11 -0
  1402. django_allauth_async-65.16.1.1/docs/socialaccount/providers/drip.rst +13 -0
  1403. django_allauth_async-65.16.1.1/docs/socialaccount/providers/dropbox.rst +8 -0
  1404. django_allauth_async-65.16.1.1/docs/socialaccount/providers/dwolla.rst +23 -0
  1405. django_allauth_async-65.16.1.1/docs/socialaccount/providers/edmodo.rst +23 -0
  1406. django_allauth_async-65.16.1.1/docs/socialaccount/providers/edx.rst +16 -0
  1407. django_allauth_async-65.16.1.1/docs/socialaccount/providers/eventbrite.rst +17 -0
  1408. django_allauth_async-65.16.1.1/docs/socialaccount/providers/eveonline.rst +8 -0
  1409. django_allauth_async-65.16.1.1/docs/socialaccount/providers/evernote.rst +12 -0
  1410. django_allauth_async-65.16.1.1/docs/socialaccount/providers/exist.rst +35 -0
  1411. django_allauth_async-65.16.1.1/docs/socialaccount/providers/facebook.rst +136 -0
  1412. django_allauth_async-65.16.1.1/docs/socialaccount/providers/feishu.rst +13 -0
  1413. django_allauth_async-65.16.1.1/docs/socialaccount/providers/figma.rst +8 -0
  1414. django_allauth_async-65.16.1.1/docs/socialaccount/providers/flickr.rst +21 -0
  1415. django_allauth_async-65.16.1.1/docs/socialaccount/providers/frontier.rst +43 -0
  1416. django_allauth_async-65.16.1.1/docs/socialaccount/providers/fxa.rst +34 -0
  1417. django_allauth_async-65.16.1.1/docs/socialaccount/providers/gitea.rst +23 -0
  1418. django_allauth_async-65.16.1.1/docs/socialaccount/providers/github.rst +37 -0
  1419. django_allauth_async-65.16.1.1/docs/socialaccount/providers/gitlab.rst +37 -0
  1420. django_allauth_async-65.16.1.1/docs/socialaccount/providers/globus.rst +24 -0
  1421. django_allauth_async-65.16.1.1/docs/socialaccount/providers/google.rst +119 -0
  1422. django_allauth_async-65.16.1.1/docs/socialaccount/providers/gumroad.rst +8 -0
  1423. django_allauth_async-65.16.1.1/docs/socialaccount/providers/hubspot.rst +11 -0
  1424. django_allauth_async-65.16.1.1/docs/socialaccount/providers/index.rst +156 -0
  1425. django_allauth_async-65.16.1.1/docs/socialaccount/providers/instagram.rst +8 -0
  1426. django_allauth_async-65.16.1.1/docs/socialaccount/providers/jupyterhub.rst +18 -0
  1427. django_allauth_async-65.16.1.1/docs/socialaccount/providers/kakao.rst +8 -0
  1428. django_allauth_async-65.16.1.1/docs/socialaccount/providers/keycloak.rst +28 -0
  1429. django_allauth_async-65.16.1.1/docs/socialaccount/providers/lemonldap.rst +29 -0
  1430. django_allauth_async-65.16.1.1/docs/socialaccount/providers/lichess.rst +19 -0
  1431. django_allauth_async-65.16.1.1/docs/socialaccount/providers/line.rst +23 -0
  1432. django_allauth_async-65.16.1.1/docs/socialaccount/providers/linkedin.rst +29 -0
  1433. django_allauth_async-65.16.1.1/docs/socialaccount/providers/mailchimp.rst +58 -0
  1434. django_allauth_async-65.16.1.1/docs/socialaccount/providers/mailcow.rst +22 -0
  1435. django_allauth_async-65.16.1.1/docs/socialaccount/providers/mediawiki.rst +46 -0
  1436. django_allauth_async-65.16.1.1/docs/socialaccount/providers/microsoft.rst +61 -0
  1437. django_allauth_async-65.16.1.1/docs/socialaccount/providers/miro.rst +8 -0
  1438. django_allauth_async-65.16.1.1/docs/socialaccount/providers/naver.rst +8 -0
  1439. django_allauth_async-65.16.1.1/docs/socialaccount/providers/netiq.rst +15 -0
  1440. django_allauth_async-65.16.1.1/docs/socialaccount/providers/nextcloud.rst +25 -0
  1441. django_allauth_async-65.16.1.1/docs/socialaccount/providers/notion.rst +14 -0
  1442. django_allauth_async-65.16.1.1/docs/socialaccount/providers/oauth2.rst +47 -0
  1443. django_allauth_async-65.16.1.1/docs/socialaccount/providers/odnoklassniki.rst +8 -0
  1444. django_allauth_async-65.16.1.1/docs/socialaccount/providers/okta.rst +14 -0
  1445. django_allauth_async-65.16.1.1/docs/socialaccount/providers/openid.rst +83 -0
  1446. django_allauth_async-65.16.1.1/docs/socialaccount/providers/openid_connect.rst +62 -0
  1447. django_allauth_async-65.16.1.1/docs/socialaccount/providers/openstreetmap.rst +34 -0
  1448. django_allauth_async-65.16.1.1/docs/socialaccount/providers/orcid.rst +17 -0
  1449. django_allauth_async-65.16.1.1/docs/socialaccount/providers/patreon.rst +28 -0
  1450. django_allauth_async-65.16.1.1/docs/socialaccount/providers/paypal.rst +27 -0
  1451. django_allauth_async-65.16.1.1/docs/socialaccount/providers/pinterest.rst +37 -0
  1452. django_allauth_async-65.16.1.1/docs/socialaccount/providers/pocket.rst +5 -0
  1453. django_allauth_async-65.16.1.1/docs/socialaccount/providers/questrade.rst +9 -0
  1454. django_allauth_async-65.16.1.1/docs/socialaccount/providers/quickbooks.rst +26 -0
  1455. django_allauth_async-65.16.1.1/docs/socialaccount/providers/reddit.rst +29 -0
  1456. django_allauth_async-65.16.1.1/docs/socialaccount/providers/salesforce.rst +22 -0
  1457. django_allauth_async-65.16.1.1/docs/socialaccount/providers/saml.rst +205 -0
  1458. django_allauth_async-65.16.1.1/docs/socialaccount/providers/sharefile.rst +32 -0
  1459. django_allauth_async-65.16.1.1/docs/socialaccount/providers/shopify.rst +46 -0
  1460. django_allauth_async-65.16.1.1/docs/socialaccount/providers/slack.rst +11 -0
  1461. django_allauth_async-65.16.1.1/docs/socialaccount/providers/snapchat.rst +11 -0
  1462. django_allauth_async-65.16.1.1/docs/socialaccount/providers/soundcloud.rst +37 -0
  1463. django_allauth_async-65.16.1.1/docs/socialaccount/providers/stackexchange.rst +19 -0
  1464. django_allauth_async-65.16.1.1/docs/socialaccount/providers/steam.rst +16 -0
  1465. django_allauth_async-65.16.1.1/docs/socialaccount/providers/stocktwits.rst +9 -0
  1466. django_allauth_async-65.16.1.1/docs/socialaccount/providers/strava.rst +16 -0
  1467. django_allauth_async-65.16.1.1/docs/socialaccount/providers/stripe.rst +23 -0
  1468. django_allauth_async-65.16.1.1/docs/socialaccount/providers/telegram.rst +31 -0
  1469. django_allauth_async-65.16.1.1/docs/socialaccount/providers/tiktok.rst +21 -0
  1470. django_allauth_async-65.16.1.1/docs/socialaccount/providers/trainingpeaks.rst +25 -0
  1471. django_allauth_async-65.16.1.1/docs/socialaccount/providers/trello.rst +28 -0
  1472. django_allauth_async-65.16.1.1/docs/socialaccount/providers/tumblr_oauth2.rst +61 -0
  1473. django_allauth_async-65.16.1.1/docs/socialaccount/providers/twitch.rst +8 -0
  1474. django_allauth_async-65.16.1.1/docs/socialaccount/providers/twitter.rst +48 -0
  1475. django_allauth_async-65.16.1.1/docs/socialaccount/providers/twitter_oauth2.rst +43 -0
  1476. django_allauth_async-65.16.1.1/docs/socialaccount/providers/untappd.rst +41 -0
  1477. django_allauth_async-65.16.1.1/docs/socialaccount/providers/vimeo.rst +8 -0
  1478. django_allauth_async-65.16.1.1/docs/socialaccount/providers/vimeo_oauth2.rst +8 -0
  1479. django_allauth_async-65.16.1.1/docs/socialaccount/providers/vk.rst +46 -0
  1480. django_allauth_async-65.16.1.1/docs/socialaccount/providers/wahoo.rst +27 -0
  1481. django_allauth_async-65.16.1.1/docs/socialaccount/providers/weibo.rst +8 -0
  1482. django_allauth_async-65.16.1.1/docs/socialaccount/providers/weixin.rst +25 -0
  1483. django_allauth_async-65.16.1.1/docs/socialaccount/providers/windowslive.rst +15 -0
  1484. django_allauth_async-65.16.1.1/docs/socialaccount/providers/xing.rst +8 -0
  1485. django_allauth_async-65.16.1.1/docs/socialaccount/providers/yahoo.rst +17 -0
  1486. django_allauth_async-65.16.1.1/docs/socialaccount/providers/yandex.rst +12 -0
  1487. django_allauth_async-65.16.1.1/docs/socialaccount/providers/ynab.rst +21 -0
  1488. django_allauth_async-65.16.1.1/docs/socialaccount/providers/zoho.rst +10 -0
  1489. django_allauth_async-65.16.1.1/docs/socialaccount/providers/zoom.rst +10 -0
  1490. django_allauth_async-65.16.1.1/docs/socialaccount/signals.rst +28 -0
  1491. django_allauth_async-65.16.1.1/docs/socialaccount/templates.rst +48 -0
  1492. django_allauth_async-65.16.1.1/docs/socialaccount/views.rst +12 -0
  1493. django_allauth_async-65.16.1.1/docs/usersessions/adapter.rst +5 -0
  1494. django_allauth_async-65.16.1.1/docs/usersessions/configuration.rst +16 -0
  1495. django_allauth_async-65.16.1.1/docs/usersessions/index.rst +10 -0
  1496. django_allauth_async-65.16.1.1/docs/usersessions/installation.rst +18 -0
  1497. django_allauth_async-65.16.1.1/docs/usersessions/introduction.rst +6 -0
  1498. django_allauth_async-65.16.1.1/docs/usersessions/signals.rst +8 -0
  1499. django_allauth_async-65.16.1.1/examples/react-spa/Makefile +7 -0
  1500. django_allauth_async-65.16.1.1/examples/react-spa/README.org +99 -0
  1501. django_allauth_async-65.16.1.1/examples/react-spa/backend/Dockerfile +10 -0
  1502. django_allauth_async-65.16.1.1/examples/react-spa/backend/backend/__init__.py +0 -0
  1503. django_allauth_async-65.16.1.1/examples/react-spa/backend/backend/asgi.py +17 -0
  1504. django_allauth_async-65.16.1.1/examples/react-spa/backend/backend/drf_demo/__init__.py +0 -0
  1505. django_allauth_async-65.16.1.1/examples/react-spa/backend/backend/drf_demo/serializers.py +6 -0
  1506. django_allauth_async-65.16.1.1/examples/react-spa/backend/backend/drf_demo/urls.py +25 -0
  1507. django_allauth_async-65.16.1.1/examples/react-spa/backend/backend/drf_demo/views.py +27 -0
  1508. django_allauth_async-65.16.1.1/examples/react-spa/backend/backend/ninja_demo/__init__.py +0 -0
  1509. django_allauth_async-65.16.1.1/examples/react-spa/backend/backend/ninja_demo/urls.py +8 -0
  1510. django_allauth_async-65.16.1.1/examples/react-spa/backend/backend/ninja_demo/views.py +12 -0
  1511. django_allauth_async-65.16.1.1/examples/react-spa/backend/backend/settings.py +162 -0
  1512. django_allauth_async-65.16.1.1/examples/react-spa/backend/backend/urls.py +11 -0
  1513. django_allauth_async-65.16.1.1/examples/react-spa/backend/backend/wsgi.py +8 -0
  1514. django_allauth_async-65.16.1.1/examples/react-spa/backend/manage.py +22 -0
  1515. django_allauth_async-65.16.1.1/examples/react-spa/backend/requirements.txt +5 -0
  1516. django_allauth_async-65.16.1.1/examples/react-spa/docker-compose.dev.yml +4 -0
  1517. django_allauth_async-65.16.1.1/examples/react-spa/docker-compose.yml +36 -0
  1518. django_allauth_async-65.16.1.1/examples/react-spa/e2e.spec.js +146 -0
  1519. django_allauth_async-65.16.1.1/examples/react-spa/frontend/Dockerfile +10 -0
  1520. django_allauth_async-65.16.1.1/examples/react-spa/frontend/package-lock.json +18584 -0
  1521. django_allauth_async-65.16.1.1/examples/react-spa/frontend/package.json +41 -0
  1522. django_allauth_async-65.16.1.1/examples/react-spa/frontend/public/css/style.css +25 -0
  1523. django_allauth_async-65.16.1.1/examples/react-spa/frontend/public/img/allauth.svg +966 -0
  1524. django_allauth_async-65.16.1.1/examples/react-spa/frontend/public/img/app.svg +78 -0
  1525. django_allauth_async-65.16.1.1/examples/react-spa/frontend/public/img/react.svg +9 -0
  1526. django_allauth_async-65.16.1.1/examples/react-spa/frontend/public/index.html +23 -0
  1527. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/App.js +12 -0
  1528. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/Calculator.js +81 -0
  1529. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/Home.js +47 -0
  1530. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/NavBar.js +61 -0
  1531. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/Root.js +23 -0
  1532. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/Router.js +218 -0
  1533. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/AuthenticateFlow.js +61 -0
  1534. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/ChangeEmail.js +143 -0
  1535. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/ChangePassword.js +56 -0
  1536. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/ConfirmLoginCode.js +43 -0
  1537. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/ConfirmPasswordResetCode.js +45 -0
  1538. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/Login.js +57 -0
  1539. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/Logout.js +33 -0
  1540. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/Reauthenticate.js +34 -0
  1541. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/ReauthenticateFlow.js +62 -0
  1542. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/RequestLoginCode.js +41 -0
  1543. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/RequestPasswordReset.js +49 -0
  1544. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/ResetPassword.js +81 -0
  1545. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/Signup.js +64 -0
  1546. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/VerificationEmailSent.js +8 -0
  1547. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/VerifyEmail.js +54 -0
  1548. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/account/VerifyEmailByCode.js +40 -0
  1549. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/auth/AuthContext.js +53 -0
  1550. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/auth/hooks.js +104 -0
  1551. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/auth/index.js +3 -0
  1552. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/auth/routing.js +109 -0
  1553. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/components/Button.js +3 -0
  1554. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/components/FormErrors.js +10 -0
  1555. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/index.js +11 -0
  1556. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/init.js +9 -0
  1557. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/lib/allauth.js +373 -0
  1558. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/lib/django.js +18 -0
  1559. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/ActivateTOTP.js +53 -0
  1560. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/AddWebAuthn.js +60 -0
  1561. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/AuthenticateCode.js +40 -0
  1562. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/AuthenticateFlow.js +43 -0
  1563. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/AuthenticateRecoveryCodes.js +10 -0
  1564. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/AuthenticateTOTP.js +10 -0
  1565. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/AuthenticateWebAuthn.js +34 -0
  1566. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/CreateSignupPasskey.js +56 -0
  1567. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/DeactivateTOTP.js +32 -0
  1568. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/GenerateRecoveryCodes.js +47 -0
  1569. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/ListWebAuthn.js +117 -0
  1570. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/MFAOverview.js +53 -0
  1571. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/ReauthenticateCode.js +34 -0
  1572. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/ReauthenticateRecoveryCodes.js +9 -0
  1573. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/ReauthenticateTOTP.js +9 -0
  1574. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/ReauthenticateWebAuthn.js +35 -0
  1575. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/RecoveryCodes.js +24 -0
  1576. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/SignupByPasskey.js +39 -0
  1577. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/Trust.js +36 -0
  1578. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/mfa/WebAuthnLoginButton.js +29 -0
  1579. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/socialaccount/GoogleOneTap.js +58 -0
  1580. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/socialaccount/ManageProviders.js +72 -0
  1581. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/socialaccount/ProviderCallback.js +30 -0
  1582. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/socialaccount/ProviderList.js +26 -0
  1583. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/socialaccount/ProviderSignup.js +38 -0
  1584. django_allauth_async-65.16.1.1/examples/react-spa/frontend/src/usersessions/Sessions.js +73 -0
  1585. django_allauth_async-65.16.1.1/examples/react-spa/traefik.toml +43 -0
  1586. django_allauth_async-65.16.1.1/examples/regular-django/.dockerignore +10 -0
  1587. django_allauth_async-65.16.1.1/examples/regular-django/Dockerfile +15 -0
  1588. django_allauth_async-65.16.1.1/examples/regular-django/Makefile +15 -0
  1589. django_allauth_async-65.16.1.1/examples/regular-django/README.org +43 -0
  1590. django_allauth_async-65.16.1.1/examples/regular-django/db/.gitignore +1 -0
  1591. django_allauth_async-65.16.1.1/examples/regular-django/docker-compose.yml +18 -0
  1592. django_allauth_async-65.16.1.1/examples/regular-django/example/__init__.py +0 -0
  1593. django_allauth_async-65.16.1.1/examples/regular-django/example/asgi.py +8 -0
  1594. django_allauth_async-65.16.1.1/examples/regular-django/example/settings.py +252 -0
  1595. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/429.html +11 -0
  1596. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/account/base_manage_email.html +2 -0
  1597. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/account/base_manage_password.html +2 -0
  1598. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/account/base_manage_phone.html +2 -0
  1599. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/alert.html +6 -0
  1600. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/badge.html +19 -0
  1601. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/button.html +31 -0
  1602. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/button__entrance.html +6 -0
  1603. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/button_group.html +5 -0
  1604. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/field.html +99 -0
  1605. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/fields.html +13 -0
  1606. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/form.html +14 -0
  1607. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/form__entrance.html +2 -0
  1608. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/h1.html +5 -0
  1609. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/h1__entrance.html +5 -0
  1610. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/h2__entrance.html +5 -0
  1611. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/img.html +5 -0
  1612. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/panel.html +17 -0
  1613. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/provider.html +6 -0
  1614. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/provider_list.html +5 -0
  1615. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/elements/table.html +5 -0
  1616. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/layouts/base.html +91 -0
  1617. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/layouts/entrance.html +26 -0
  1618. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/allauth/layouts/manage.html +68 -0
  1619. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/index.html +9 -0
  1620. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/mfa/base_manage.html +2 -0
  1621. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/profile.html +9 -0
  1622. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/socialaccount/base_manage.html +2 -0
  1623. django_allauth_async-65.16.1.1/examples/regular-django/example/templates/usersessions/base_manage.html +2 -0
  1624. django_allauth_async-65.16.1.1/examples/regular-django/example/urls.py +18 -0
  1625. django_allauth_async-65.16.1.1/examples/regular-django/example/users/__init__.py +0 -0
  1626. django_allauth_async-65.16.1.1/examples/regular-django/example/users/allauth.py +47 -0
  1627. django_allauth_async-65.16.1.1/examples/regular-django/example/users/apps.py +8 -0
  1628. django_allauth_async-65.16.1.1/examples/regular-django/example/users/migrations/0001_initial.py +134 -0
  1629. django_allauth_async-65.16.1.1/examples/regular-django/example/users/migrations/__init__.py +0 -0
  1630. django_allauth_async-65.16.1.1/examples/regular-django/example/users/models.py +10 -0
  1631. django_allauth_async-65.16.1.1/examples/regular-django/example/wsgi.py +8 -0
  1632. django_allauth_async-65.16.1.1/examples/regular-django/manage.py +11 -0
  1633. django_allauth_async-65.16.1.1/examples/regular-django/requirements.txt +1 -0
  1634. django_allauth_async-65.16.1.1/manage.py +10 -0
  1635. django_allauth_async-65.16.1.1/mise.toml +9 -0
  1636. django_allauth_async-65.16.1.1/noxfile.py +125 -0
  1637. django_allauth_async-65.16.1.1/package-lock.json +4803 -0
  1638. django_allauth_async-65.16.1.1/package.json +11 -0
  1639. django_allauth_async-65.16.1.1/pyproject.toml +131 -0
  1640. django_allauth_async-65.16.1.1/pytest.ini +3 -0
  1641. django_allauth_async-65.16.1.1/requirements-dev.txt +38 -0
  1642. django_allauth_async-65.16.1.1/scripts/ack_drift.py +80 -0
  1643. django_allauth_async-65.16.1.1/scripts/check_drift.py +63 -0
  1644. django_allauth_async-65.16.1.1/setup.cfg +8 -0
  1645. django_allauth_async-65.16.1.1/tests/__init__.py +0 -0
  1646. django_allauth_async-65.16.1.1/tests/apps/__init__.py +0 -0
  1647. django_allauth_async-65.16.1.1/tests/apps/account/__init__.py +0 -0
  1648. django_allauth_async-65.16.1.1/tests/apps/account/internal/__init__.py +0 -0
  1649. django_allauth_async-65.16.1.1/tests/apps/account/internal/test_emailkit.py +25 -0
  1650. django_allauth_async-65.16.1.1/tests/apps/account/test_adapter.py +96 -0
  1651. django_allauth_async-65.16.1.1/tests/apps/account/test_ajax.py +75 -0
  1652. django_allauth_async-65.16.1.1/tests/apps/account/test_auth_backends.py +110 -0
  1653. django_allauth_async-65.16.1.1/tests/apps/account/test_change_email.py +576 -0
  1654. django_allauth_async-65.16.1.1/tests/apps/account/test_change_password.py +104 -0
  1655. django_allauth_async-65.16.1.1/tests/apps/account/test_commands.py +7 -0
  1656. django_allauth_async-65.16.1.1/tests/apps/account/test_decorators.py +41 -0
  1657. django_allauth_async-65.16.1.1/tests/apps/account/test_email_verification.py +375 -0
  1658. django_allauth_async-65.16.1.1/tests/apps/account/test_email_verification_by_code.py +340 -0
  1659. django_allauth_async-65.16.1.1/tests/apps/account/test_login.py +349 -0
  1660. django_allauth_async-65.16.1.1/tests/apps/account/test_login_by_code.py +262 -0
  1661. django_allauth_async-65.16.1.1/tests/apps/account/test_logout.py +64 -0
  1662. django_allauth_async-65.16.1.1/tests/apps/account/test_middleware.py +39 -0
  1663. django_allauth_async-65.16.1.1/tests/apps/account/test_models.py +32 -0
  1664. django_allauth_async-65.16.1.1/tests/apps/account/test_phone.py +299 -0
  1665. django_allauth_async-65.16.1.1/tests/apps/account/test_ratelimit.py +12 -0
  1666. django_allauth_async-65.16.1.1/tests/apps/account/test_reauthentication.py +63 -0
  1667. django_allauth_async-65.16.1.1/tests/apps/account/test_reset_password.py +360 -0
  1668. django_allauth_async-65.16.1.1/tests/apps/account/test_reset_password_by_code.py +96 -0
  1669. django_allauth_async-65.16.1.1/tests/apps/account/test_security.py +41 -0
  1670. django_allauth_async-65.16.1.1/tests/apps/account/test_signup.py +470 -0
  1671. django_allauth_async-65.16.1.1/tests/apps/account/test_utils.py +154 -0
  1672. django_allauth_async-65.16.1.1/tests/apps/core/__init__.py +0 -0
  1673. django_allauth_async-65.16.1.1/tests/apps/core/internal/__init__.py +0 -0
  1674. django_allauth_async-65.16.1.1/tests/apps/core/internal/test_cryptokit.py +37 -0
  1675. django_allauth_async-65.16.1.1/tests/apps/core/internal/test_httpkit.py +46 -0
  1676. django_allauth_async-65.16.1.1/tests/apps/core/internal/test_modelkit.py +97 -0
  1677. django_allauth_async-65.16.1.1/tests/apps/core/internal/test_ratelimit.py +40 -0
  1678. django_allauth_async-65.16.1.1/tests/apps/headless/__init__.py +0 -0
  1679. django_allauth_async-65.16.1.1/tests/apps/headless/account/__init__.py +0 -0
  1680. django_allauth_async-65.16.1.1/tests/apps/headless/account/test_change_email.py +241 -0
  1681. django_allauth_async-65.16.1.1/tests/apps/headless/account/test_change_password.py +223 -0
  1682. django_allauth_async-65.16.1.1/tests/apps/headless/account/test_email_verification.py +107 -0
  1683. django_allauth_async-65.16.1.1/tests/apps/headless/account/test_email_verification_by_code.py +385 -0
  1684. django_allauth_async-65.16.1.1/tests/apps/headless/account/test_login.py +218 -0
  1685. django_allauth_async-65.16.1.1/tests/apps/headless/account/test_login_by_code.py +219 -0
  1686. django_allauth_async-65.16.1.1/tests/apps/headless/account/test_phone.py +382 -0
  1687. django_allauth_async-65.16.1.1/tests/apps/headless/account/test_reauthentication.py +55 -0
  1688. django_allauth_async-65.16.1.1/tests/apps/headless/account/test_reset_password.py +158 -0
  1689. django_allauth_async-65.16.1.1/tests/apps/headless/account/test_reset_password_by_code.py +210 -0
  1690. django_allauth_async-65.16.1.1/tests/apps/headless/account/test_session.py +35 -0
  1691. django_allauth_async-65.16.1.1/tests/apps/headless/account/test_signup.py +244 -0
  1692. django_allauth_async-65.16.1.1/tests/apps/headless/base/__init__.py +0 -0
  1693. django_allauth_async-65.16.1.1/tests/apps/headless/base/test_views.py +13 -0
  1694. django_allauth_async-65.16.1.1/tests/apps/headless/conftest.py +63 -0
  1695. django_allauth_async-65.16.1.1/tests/apps/headless/contrib/__init__.py +0 -0
  1696. django_allauth_async-65.16.1.1/tests/apps/headless/contrib/ninja/__init__.py +0 -0
  1697. django_allauth_async-65.16.1.1/tests/apps/headless/contrib/ninja/test_security.py +18 -0
  1698. django_allauth_async-65.16.1.1/tests/apps/headless/contrib/rest_framework/__init__.py +0 -0
  1699. django_allauth_async-65.16.1.1/tests/apps/headless/contrib/rest_framework/test_authentication.py +20 -0
  1700. django_allauth_async-65.16.1.1/tests/apps/headless/internal/__init__.py +0 -0
  1701. django_allauth_async-65.16.1.1/tests/apps/headless/internal/test_authkit.py +24 -0
  1702. django_allauth_async-65.16.1.1/tests/apps/headless/mfa/__init__.py +0 -0
  1703. django_allauth_async-65.16.1.1/tests/apps/headless/mfa/test_recovery_codes.py +74 -0
  1704. django_allauth_async-65.16.1.1/tests/apps/headless/mfa/test_totp.py +118 -0
  1705. django_allauth_async-65.16.1.1/tests/apps/headless/mfa/test_trust.py +86 -0
  1706. django_allauth_async-65.16.1.1/tests/apps/headless/mfa/test_views.py +123 -0
  1707. django_allauth_async-65.16.1.1/tests/apps/headless/mfa/test_webauthn.py +284 -0
  1708. django_allauth_async-65.16.1.1/tests/apps/headless/socialaccount/__init__.py +0 -0
  1709. django_allauth_async-65.16.1.1/tests/apps/headless/socialaccount/test_inputs.py +37 -0
  1710. django_allauth_async-65.16.1.1/tests/apps/headless/socialaccount/test_views.py +527 -0
  1711. django_allauth_async-65.16.1.1/tests/apps/headless/spec/__init__.py +0 -0
  1712. django_allauth_async-65.16.1.1/tests/apps/headless/spec/internal/__init__.py +0 -0
  1713. django_allauth_async-65.16.1.1/tests/apps/headless/spec/internal/test_openapikit.py +85 -0
  1714. django_allauth_async-65.16.1.1/tests/apps/headless/spec/test_views.py +11 -0
  1715. django_allauth_async-65.16.1.1/tests/apps/headless/tokens/test_jwttokenstrategy.py +329 -0
  1716. django_allauth_async-65.16.1.1/tests/apps/headless/tokens/test_tokens.py +35 -0
  1717. django_allauth_async-65.16.1.1/tests/apps/headless/usersessions/__init__.py +0 -0
  1718. django_allauth_async-65.16.1.1/tests/apps/headless/usersessions/test_views.py +29 -0
  1719. django_allauth_async-65.16.1.1/tests/apps/idp/__init__.py +0 -0
  1720. django_allauth_async-65.16.1.1/tests/apps/idp/oidc/__init__.py +0 -0
  1721. django_allauth_async-65.16.1.1/tests/apps/idp/oidc/conftest.py +102 -0
  1722. django_allauth_async-65.16.1.1/tests/apps/idp/oidc/contrib/__init__.py +0 -0
  1723. django_allauth_async-65.16.1.1/tests/apps/idp/oidc/contrib/ninja/__init__.py +0 -0
  1724. django_allauth_async-65.16.1.1/tests/apps/idp/oidc/contrib/ninja/test_views.py +34 -0
  1725. django_allauth_async-65.16.1.1/tests/apps/idp/oidc/contrib/rest_framework/__init__.py +0 -0
  1726. django_allauth_async-65.16.1.1/tests/apps/idp/oidc/contrib/rest_framework/test_views.py +35 -0
  1727. django_allauth_async-65.16.1.1/tests/apps/idp/oidc/internal/__init__.py +0 -0
  1728. django_allauth_async-65.16.1.1/tests/apps/idp/oidc/internal/oauthlib/__init__.py +0 -0
  1729. django_allauth_async-65.16.1.1/tests/apps/idp/oidc/internal/oauthlib/test_request_validator.py +26 -0
  1730. django_allauth_async-65.16.1.1/tests/apps/idp/oidc/internal/oauthlib/test_utils.py +18 -0
  1731. django_allauth_async-65.16.1.1/tests/apps/idp/oidc/test_authorization.py +459 -0
  1732. django_allauth_async-65.16.1.1/tests/apps/idp/oidc/test_device.py +210 -0
  1733. django_allauth_async-65.16.1.1/tests/apps/idp/oidc/test_rp_initiated_logout.py +114 -0
  1734. django_allauth_async-65.16.1.1/tests/apps/idp/oidc/test_tokens.py +105 -0
  1735. django_allauth_async-65.16.1.1/tests/apps/idp/oidc/test_views.py +226 -0
  1736. django_allauth_async-65.16.1.1/tests/apps/idp/oidc/test_wildcards.py +127 -0
  1737. django_allauth_async-65.16.1.1/tests/apps/mfa/__init__.py +0 -0
  1738. django_allauth_async-65.16.1.1/tests/apps/mfa/base/__init__.py +0 -0
  1739. django_allauth_async-65.16.1.1/tests/apps/mfa/base/test_adapter.py +14 -0
  1740. django_allauth_async-65.16.1.1/tests/apps/mfa/base/test_trust.py +84 -0
  1741. django_allauth_async-65.16.1.1/tests/apps/mfa/base/test_trust_fingerprint.py +52 -0
  1742. django_allauth_async-65.16.1.1/tests/apps/mfa/base/test_views.py +91 -0
  1743. django_allauth_async-65.16.1.1/tests/apps/mfa/recovery_codes/__init__.py +0 -0
  1744. django_allauth_async-65.16.1.1/tests/apps/mfa/recovery_codes/test_auth.py +37 -0
  1745. django_allauth_async-65.16.1.1/tests/apps/mfa/recovery_codes/test_views.py +122 -0
  1746. django_allauth_async-65.16.1.1/tests/apps/mfa/totp/__init__.py +0 -0
  1747. django_allauth_async-65.16.1.1/tests/apps/mfa/totp/test_unit.py +44 -0
  1748. django_allauth_async-65.16.1.1/tests/apps/mfa/totp/test_views.py +249 -0
  1749. django_allauth_async-65.16.1.1/tests/apps/mfa/webauthn/__init__.py +0 -0
  1750. django_allauth_async-65.16.1.1/tests/apps/mfa/webauthn/test_views.py +222 -0
  1751. django_allauth_async-65.16.1.1/tests/apps/socialaccount/__init__.py +0 -0
  1752. django_allauth_async-65.16.1.1/tests/apps/socialaccount/base.py +499 -0
  1753. django_allauth_async-65.16.1.1/tests/apps/socialaccount/conftest.py +106 -0
  1754. django_allauth_async-65.16.1.1/tests/apps/socialaccount/internal/__init__.py +0 -0
  1755. django_allauth_async-65.16.1.1/tests/apps/socialaccount/internal/test_jwtkit.py +36 -0
  1756. django_allauth_async-65.16.1.1/tests/apps/socialaccount/internal/test_statekit.py +57 -0
  1757. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/__init__.py +0 -0
  1758. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/agave/__init__.py +0 -0
  1759. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/agave/tests.py +37 -0
  1760. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/amazon/__init__.py +0 -0
  1761. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/amazon/tests.py +27 -0
  1762. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/amazon_cognito/__init__.py +0 -0
  1763. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/amazon_cognito/tests.py +92 -0
  1764. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/apple/__init__.py +0 -0
  1765. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/apple/tests.py +266 -0
  1766. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/asana/__init__.py +0 -0
  1767. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/asana/tests.py +23 -0
  1768. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/atlassian/__init__.py +0 -0
  1769. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/atlassian/tests.py +36 -0
  1770. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/auth0/__init__.py +0 -0
  1771. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/auth0/tests.py +29 -0
  1772. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/authentiq/__init__.py +0 -0
  1773. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/authentiq/tests.py +106 -0
  1774. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/baidu/__init__.py +0 -0
  1775. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/baidu/tests.py +22 -0
  1776. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/base/__init__.py +0 -0
  1777. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/base/test_provider.py +71 -0
  1778. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/basecamp/__init__.py +0 -0
  1779. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/basecamp/tests.py +49 -0
  1780. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/battlenet/__init__.py +0 -0
  1781. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/battlenet/tests.py +74 -0
  1782. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/bitbucket_oauth2/__init__.py +0 -0
  1783. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/bitbucket_oauth2/tests.py +110 -0
  1784. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/bitly/__init__.py +0 -0
  1785. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/bitly/tests.py +36 -0
  1786. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/box/__init__.py +0 -0
  1787. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/box/tests.py +39 -0
  1788. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/cilogon/__init__.py +0 -0
  1789. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/cilogon/tests.py +28 -0
  1790. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/clever/__init__.py +0 -0
  1791. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/clever/tests.py +56 -0
  1792. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/coinbase/__init__.py +0 -0
  1793. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/coinbase/tests.py +31 -0
  1794. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/dataporten/__init__.py +0 -0
  1795. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/dataporten/tests.py +77 -0
  1796. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/daum/__init__.py +0 -0
  1797. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/daum/tests.py +28 -0
  1798. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/digitalocean/__init__.py +0 -0
  1799. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/digitalocean/tests.py +47 -0
  1800. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/dingtalk/__init__.py +0 -0
  1801. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/dingtalk/tests.py +32 -0
  1802. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/discogs/__init__.py +0 -0
  1803. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/discogs/tests.py +37 -0
  1804. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/discord/__init__.py +0 -0
  1805. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/discord/tests.py +100 -0
  1806. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/disqus/__init__.py +0 -0
  1807. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/disqus/tests.py +57 -0
  1808. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/douban/__init__.py +0 -0
  1809. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/douban/tests.py +33 -0
  1810. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/doximity/__init__.py +0 -0
  1811. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/doximity/tests.py +71 -0
  1812. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/draugiem/__init__.py +0 -0
  1813. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/draugiem/tests.py +145 -0
  1814. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/drip/__init__.py +0 -0
  1815. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/drip/tests.py +26 -0
  1816. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/dropbox/__init__.py +0 -0
  1817. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/dropbox/tests.py +41 -0
  1818. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/dummy/__init__.py +0 -0
  1819. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/dummy/tests.py +23 -0
  1820. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/dwolla/__init__.py +0 -0
  1821. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/dwolla/tests.py +37 -0
  1822. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/edmodo/__init__.py +0 -0
  1823. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/edmodo/tests.py +50 -0
  1824. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/edx/__init__.py +0 -0
  1825. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/edx/tests.py +52 -0
  1826. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/eventbrite/__init__.py +0 -0
  1827. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/eventbrite/tests.py +35 -0
  1828. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/eveonline/__init__.py +0 -0
  1829. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/eveonline/tests.py +28 -0
  1830. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/evernote/__init__.py +0 -0
  1831. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/evernote/tests.py +24 -0
  1832. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/exist/__init__.py +0 -0
  1833. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/exist/tests.py +40 -0
  1834. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/facebook/__init__.py +0 -0
  1835. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/facebook/tests.py +193 -0
  1836. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/feedly/__init__.py +0 -0
  1837. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/feedly/tests.py +34 -0
  1838. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/feishu/__init__.py +0 -0
  1839. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/feishu/tests.py +48 -0
  1840. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/figma/__init__.py +0 -0
  1841. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/figma/tests.py +27 -0
  1842. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/fivehundredpx/__init__.py +0 -0
  1843. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/fivehundredpx/tests.py +86 -0
  1844. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/flickr/__init__.py +0 -0
  1845. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/flickr/tests.py +120 -0
  1846. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/foursquare/__init__.py +0 -0
  1847. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/foursquare/tests.py +74 -0
  1848. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/frontier/__init__.py +0 -0
  1849. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/frontier/tests.py +29 -0
  1850. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/fxa/__init__.py +0 -0
  1851. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/fxa/tests.py +24 -0
  1852. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/gitea/__init__.py +0 -0
  1853. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/gitea/tests.py +57 -0
  1854. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/github/__init__.py +0 -0
  1855. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/github/tests.py +122 -0
  1856. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/gitlab/__init__.py +0 -0
  1857. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/gitlab/tests.py +107 -0
  1858. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/globus/__init__.py +0 -0
  1859. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/globus/tests.py +32 -0
  1860. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/google/__init__.py +0 -0
  1861. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/google/tests.py +354 -0
  1862. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/gumroad/__init__.py +0 -0
  1863. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/gumroad/tests.py +30 -0
  1864. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/hubic/__init__.py +0 -0
  1865. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/hubic/tests.py +39 -0
  1866. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/hubspot/__init__.py +0 -0
  1867. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/hubspot/tests.py +33 -0
  1868. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/instagram/__init__.py +0 -0
  1869. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/instagram/tests.py +34 -0
  1870. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/jupyterhub/__init__.py +0 -0
  1871. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/jupyterhub/tests.py +31 -0
  1872. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/kakao/__init__.py +0 -0
  1873. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/kakao/tests.py +63 -0
  1874. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/lemonldap/__init__.py +0 -0
  1875. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/lemonldap/tests.py +27 -0
  1876. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/lichess/__init__.py +0 -0
  1877. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/lichess/tests.py +91 -0
  1878. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/line/__init__.py +0 -0
  1879. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/line/tests.py +26 -0
  1880. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/linkedin_oauth2/__init__.py +0 -0
  1881. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/linkedin_oauth2/tests.py +553 -0
  1882. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/mailchimp/__init__.py +0 -0
  1883. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/mailchimp/tests.py +39 -0
  1884. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/mailcow/__init__.py +0 -0
  1885. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/mailcow/tests.py +33 -0
  1886. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/mailru/__init__.py +0 -0
  1887. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/mailru/tests.py +27 -0
  1888. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/mediawiki/__init__.py +0 -0
  1889. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/mediawiki/tests.py +37 -0
  1890. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/meetup/__init__.py +0 -0
  1891. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/meetup/tests.py +42 -0
  1892. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/microsoft/__init__.py +0 -0
  1893. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/microsoft/tests.py +62 -0
  1894. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/miro/__init__.py +0 -0
  1895. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/miro/tests.py +33 -0
  1896. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/naver/__init__.py +0 -0
  1897. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/naver/tests.py +38 -0
  1898. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/netiq/__init__.py +0 -0
  1899. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/netiq/tests.py +31 -0
  1900. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/nextcloud/__init__.py +0 -0
  1901. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/nextcloud/tests.py +69 -0
  1902. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/notion/__init__.py +0 -0
  1903. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/notion/tests.py +94 -0
  1904. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/oauth2/__init__.py +0 -0
  1905. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/oauth2/tests/test_views.py +72 -0
  1906. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/odnoklassniki/__init__.py +0 -0
  1907. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/odnoklassniki/tests.py +30 -0
  1908. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/okta/__init__.py +0 -0
  1909. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/okta/tests.py +34 -0
  1910. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/openid/__init__.py +0 -0
  1911. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/openid/tests.py +194 -0
  1912. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/openid_connect/__init__.py +0 -0
  1913. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/openid_connect/tests.py +37 -0
  1914. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/openstreetmap/__init__.py +0 -0
  1915. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/openstreetmap/tests.py +85 -0
  1916. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/orcid/__init__.py +0 -0
  1917. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/orcid/tests.py +391 -0
  1918. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/patreon/__init__.py +0 -0
  1919. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/patreon/tests.py +65 -0
  1920. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/paypal/__init__.py +0 -0
  1921. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/paypal/tests.py +29 -0
  1922. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/pinterest/__init__.py +0 -0
  1923. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/pinterest/tests.py +55 -0
  1924. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/pocket/__init__.py +0 -0
  1925. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/pocket/tests.py +51 -0
  1926. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/questrade/__init__.py +0 -0
  1927. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/questrade/tests.py +20 -0
  1928. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/quickbooks/__init__.py +0 -0
  1929. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/quickbooks/tests.py +28 -0
  1930. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/reddit/__init__.py +0 -0
  1931. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/reddit/tests.py +23 -0
  1932. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/robinhood/__init__.py +0 -0
  1933. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/robinhood/tests.py +25 -0
  1934. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/salesforce/__init__.py +0 -0
  1935. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/salesforce/tests.py +70 -0
  1936. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/saml/__init__.py +0 -0
  1937. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/saml/conftest.py +183 -0
  1938. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/saml/tests.py +272 -0
  1939. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/sharefile/__init__.py +0 -0
  1940. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/sharefile/tests.py +31 -0
  1941. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/shopify/__init__.py +0 -0
  1942. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/shopify/tests.py +170 -0
  1943. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/slack/__init__.py +0 -0
  1944. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/slack/tests.py +35 -0
  1945. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/snapchat/__init__.py +0 -0
  1946. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/snapchat/tests.py +32 -0
  1947. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/soundcloud/__init__.py +0 -0
  1948. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/soundcloud/tests.py +48 -0
  1949. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/spotify/__init__.py +0 -0
  1950. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/spotify/tests.py +45 -0
  1951. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/stackexchange/__init__.py +0 -0
  1952. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/stackexchange/tests.py +51 -0
  1953. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/steam/__init__.py +0 -0
  1954. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/steam/tests.py +61 -0
  1955. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/stocktwits/__init__.py +0 -0
  1956. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/stocktwits/tests.py +37 -0
  1957. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/strava/__init__.py +0 -0
  1958. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/strava/tests.py +101 -0
  1959. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/stripe/__init__.py +0 -0
  1960. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/stripe/tests.py +60 -0
  1961. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/telegram/__init__.py +0 -0
  1962. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/telegram/tests.py +60 -0
  1963. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/tiktok/__init__.py +0 -0
  1964. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/tiktok/tests.py +32 -0
  1965. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/trainingpeaks/__init__.py +0 -0
  1966. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/trainingpeaks/tests.py +85 -0
  1967. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/trello/__init__.py +0 -0
  1968. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/trello/tests.py +24 -0
  1969. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/tumblr/__init__.py +0 -0
  1970. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/tumblr/tests.py +50 -0
  1971. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/tumblr_oauth2/__init__.py +0 -0
  1972. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/tumblr_oauth2/tests.py +50 -0
  1973. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/twentythreeandme/__init__.py +0 -0
  1974. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/twentythreeandme/tests.py +39 -0
  1975. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/twitch/__init__.py +0 -0
  1976. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/twitch/tests.py +90 -0
  1977. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/twitter/__init__.py +0 -0
  1978. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/twitter/tests.py +47 -0
  1979. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/twitter_oauth2/__init__.py +0 -0
  1980. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/twitter_oauth2/tests.py +32 -0
  1981. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/untappd/__init__.py +0 -0
  1982. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/untappd/tests.py +105 -0
  1983. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/vimeo/__init__.py +0 -0
  1984. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/vimeo/tests.py +45 -0
  1985. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/vimeo_oauth2/__init__.py +0 -0
  1986. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/vimeo_oauth2/tests.py +38 -0
  1987. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/vk/__init__.py +0 -0
  1988. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/vk/tests.py +46 -0
  1989. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/wahoo/__init__.py +0 -0
  1990. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/wahoo/tests.py +34 -0
  1991. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/weibo/__init__.py +0 -0
  1992. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/weibo/tests.py +36 -0
  1993. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/weixin/__init__.py +0 -0
  1994. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/weixin/tests.py +41 -0
  1995. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/windowslive/__init__.py +0 -0
  1996. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/windowslive/tests.py +37 -0
  1997. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/xing/__init__.py +0 -0
  1998. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/xing/tests.py +48 -0
  1999. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/yahoo/__init__.py +0 -0
  2000. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/yahoo/tests.py +29 -0
  2001. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/yandex/__init__.py +0 -0
  2002. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/yandex/tests.py +45 -0
  2003. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/ynab/__init__.py +0 -0
  2004. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/ynab/tests.py +71 -0
  2005. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/zoho/__init__.py +0 -0
  2006. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/zoho/tests.py +23 -0
  2007. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/zoom/__init__.py +0 -0
  2008. django_allauth_async-65.16.1.1/tests/apps/socialaccount/providers/zoom/tests.py +51 -0
  2009. django_allauth_async-65.16.1.1/tests/apps/socialaccount/test_adapter.py +60 -0
  2010. django_allauth_async-65.16.1.1/tests/apps/socialaccount/test_connect.py +99 -0
  2011. django_allauth_async-65.16.1.1/tests/apps/socialaccount/test_login.py +152 -0
  2012. django_allauth_async-65.16.1.1/tests/apps/socialaccount/test_phone.py +64 -0
  2013. django_allauth_async-65.16.1.1/tests/apps/socialaccount/test_registry.py +60 -0
  2014. django_allauth_async-65.16.1.1/tests/apps/socialaccount/test_signup.py +471 -0
  2015. django_allauth_async-65.16.1.1/tests/apps/socialaccount/test_utils.py +25 -0
  2016. django_allauth_async-65.16.1.1/tests/apps/test_utils.py +66 -0
  2017. django_allauth_async-65.16.1.1/tests/apps/usersessions/__init__.py +0 -0
  2018. django_allauth_async-65.16.1.1/tests/apps/usersessions/test_middleware.py +93 -0
  2019. django_allauth_async-65.16.1.1/tests/apps/usersessions/test_views.py +62 -0
  2020. django_allauth_async-65.16.1.1/tests/conftest.py +515 -0
  2021. django_allauth_async-65.16.1.1/tests/mocking.py +66 -0
  2022. django_allauth_async-65.16.1.1/tests/projects/account_only/__init__.py +0 -0
  2023. django_allauth_async-65.16.1.1/tests/projects/account_only/settings.py +103 -0
  2024. django_allauth_async-65.16.1.1/tests/projects/account_only/templates/429.html +1 -0
  2025. django_allauth_async-65.16.1.1/tests/projects/account_only/urls.py +14 -0
  2026. django_allauth_async-65.16.1.1/tests/projects/common/__init__.py +0 -0
  2027. django_allauth_async-65.16.1.1/tests/projects/common/account/__init__.py +0 -0
  2028. django_allauth_async-65.16.1.1/tests/projects/common/account/urls.py +12 -0
  2029. django_allauth_async-65.16.1.1/tests/projects/common/account/views.py +8 -0
  2030. django_allauth_async-65.16.1.1/tests/projects/common/adapters.py +52 -0
  2031. django_allauth_async-65.16.1.1/tests/projects/common/headless/__init__.py +0 -0
  2032. django_allauth_async-65.16.1.1/tests/projects/common/headless/ninja/__init__.py +0 -0
  2033. django_allauth_async-65.16.1.1/tests/projects/common/headless/ninja/urls.py +8 -0
  2034. django_allauth_async-65.16.1.1/tests/projects/common/headless/ninja/views.py +14 -0
  2035. django_allauth_async-65.16.1.1/tests/projects/common/headless/rest_framework/__init__.py +0 -0
  2036. django_allauth_async-65.16.1.1/tests/projects/common/headless/rest_framework/urls.py +8 -0
  2037. django_allauth_async-65.16.1.1/tests/projects/common/headless/rest_framework/views.py +16 -0
  2038. django_allauth_async-65.16.1.1/tests/projects/common/headless/urls.py +7 -0
  2039. django_allauth_async-65.16.1.1/tests/projects/common/idp/__init__.py +0 -0
  2040. django_allauth_async-65.16.1.1/tests/projects/common/idp/ninja/__init__.py +0 -0
  2041. django_allauth_async-65.16.1.1/tests/projects/common/idp/ninja/urls.py +8 -0
  2042. django_allauth_async-65.16.1.1/tests/projects/common/idp/ninja/views.py +11 -0
  2043. django_allauth_async-65.16.1.1/tests/projects/common/idp/rest_framework/__init__.py +0 -0
  2044. django_allauth_async-65.16.1.1/tests/projects/common/idp/rest_framework/urls.py +8 -0
  2045. django_allauth_async-65.16.1.1/tests/projects/common/idp/rest_framework/views.py +22 -0
  2046. django_allauth_async-65.16.1.1/tests/projects/common/idp/urls.py +7 -0
  2047. django_allauth_async-65.16.1.1/tests/projects/common/phone_stub.py +48 -0
  2048. django_allauth_async-65.16.1.1/tests/projects/common/settings.py +191 -0
  2049. django_allauth_async-65.16.1.1/tests/projects/common/templates/test_403_csrf.html +2 -0
  2050. django_allauth_async-65.16.1.1/tests/projects/common/urls.py +8 -0
  2051. django_allauth_async-65.16.1.1/tests/projects/headless_only/__init__.py +0 -0
  2052. django_allauth_async-65.16.1.1/tests/projects/headless_only/settings.py +156 -0
  2053. django_allauth_async-65.16.1.1/tests/projects/headless_only/urls.py +8 -0
  2054. django_allauth_async-65.16.1.1/tests/projects/login_required_mw/__init__.py +0 -0
  2055. django_allauth_async-65.16.1.1/tests/projects/login_required_mw/middleware.py +9 -0
  2056. django_allauth_async-65.16.1.1/tests/projects/login_required_mw/settings.py +127 -0
  2057. django_allauth_async-65.16.1.1/tests/projects/login_required_mw/templates/429.html +1 -0
  2058. django_allauth_async-65.16.1.1/tests/projects/login_required_mw/urls.py +17 -0
  2059. django_allauth_async-65.16.1.1/tests/projects/regular/__init__.py +0 -0
  2060. django_allauth_async-65.16.1.1/tests/projects/regular/settings.py +127 -0
  2061. django_allauth_async-65.16.1.1/tests/projects/regular/urls.py +17 -0
@@ -0,0 +1,2 @@
1
+ ;;; This file contains project-specific emacs configuration
2
+ ((python-mode . ((apheleia-formatter . (black isort)))))
@@ -0,0 +1,3 @@
1
+ {
2
+ "custom_blocks": "element,slot,setvar"
3
+ }
@@ -0,0 +1,27 @@
1
+ # http://editorconfig.org
2
+ root = true
3
+
4
+ [*]
5
+ charset = utf-8
6
+ indent_style = space
7
+ indent_size = 2
8
+ end_of_line = lf
9
+ insert_final_newline = true
10
+ trim_trailing_whitespace = true
11
+
12
+ [*.ini]
13
+ indent_size = 4
14
+
15
+ [*.py]
16
+ indent_size = 4
17
+
18
+ [*.html]
19
+ indent_size = 4
20
+
21
+ [Makefile]
22
+ indent_style = tab
23
+ indent_size = 8
24
+
25
+ [*.md]
26
+ insert_final_newline = false
27
+ trim_trailing_whitespace = false
@@ -0,0 +1,7 @@
1
+ export DIRENV_WARN_TIMEOUT=20s
2
+
3
+ eval "$(devenv direnvrc)"
4
+
5
+ # The use_devenv function supports passing flags to the devenv command
6
+ # For example: use devenv --impure --option services.postgres.enable:bool true
7
+ use devenv
@@ -0,0 +1,9 @@
1
+ ---
2
+ name: "Discussion"
3
+ about: "Overall discussions and general questions"
4
+ title: ""
5
+ assignees: []
6
+ labels:
7
+ - "Discussion"
8
+
9
+ ---
@@ -0,0 +1,8 @@
1
+ ---
2
+ name: "Issue"
3
+ about: "For cases clearly pointing to an issue in django-allauth"
4
+ title: ""
5
+ labels: ""
6
+ assignees: []
7
+
8
+ ---
@@ -0,0 +1,20 @@
1
+ # Submitting Pull Requests
2
+
3
+ ## General
4
+
5
+ - [ ] Make sure you use [semantic commit messages](https://seesparkbox.com/foundry/semantic_commit_messages).
6
+ Examples: `"fix(google): Fixed foobar bug"`, `"feat(accounts): Added foobar feature"`.
7
+ - [ ] All Python code must formatted using Black, and clean from pep8 and isort issues.
8
+ - [ ] JavaScript code should adhere to [StandardJS](https://standardjs.com).
9
+ - [ ] If your changes are significant, please update `ChangeLog.rst`.
10
+ - [ ] If your change is substantial, feel free to add yourself to `AUTHORS`.
11
+
12
+ ## Provider Specifics
13
+
14
+ In case you add a new provider:
15
+
16
+ - [ ] Make sure unit tests are available.
17
+ - [ ] Ensure your provider is tested by adding an entry over at `tests/projects/common/settings.py::INSTALLED_SOCIALACCOUNT_APPS`.
18
+ - [ ] Provide provider specific documentation at `docs/socialaccount/providers/<provider name>.rst`.
19
+ - [ ] Link to your provider specific documentation at `docs/insocialaccount/providers/index.rst`.
20
+ - [ ] Add an entry for your provider in the quickstart, over at `docs/installation/quickstart.rst::INSTALLED_APPS`.
@@ -0,0 +1,12 @@
1
+ # These are supported funding model platforms
2
+
3
+ github: pennersr
4
+ patreon: # Replace with a single Patreon username
5
+ open_collective: # Replace with a single Open Collective username
6
+ ko_fi: # Replace with a single Ko-fi username
7
+ tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8
+ community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9
+ liberapay: # Replace with a single Liberapay username
10
+ issuehunt: # Replace with a single IssueHunt username
11
+ otechie: # Replace with a single Otechie username
12
+ custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
@@ -0,0 +1,13 @@
1
+ ---
2
+ name: "Issue (when not using Codeberg)"
3
+ about: "\U0001F6D1 Please use https://codeberg.org/allauth/django-allauth/issues"
4
+ title: ''
5
+ labels: ''
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ # 🛑 Stop
11
+
12
+ The issue tracker has been moved to https://codeberg.org/allauth/django-allauth/issues.
13
+ Please submit your issue there.
@@ -0,0 +1,3 @@
1
+ # Security Policy
2
+
3
+ Please report security issues only to security@allauth.org.
@@ -0,0 +1,10 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: "github-actions"
4
+ directory: "/"
5
+ groups:
6
+ GitHub_Actions:
7
+ patterns:
8
+ - "*" # Group all Actions updates into a single larger pull request
9
+ schedule:
10
+ interval: weekly
@@ -0,0 +1,4 @@
1
+ # 🛑 Stop
2
+
3
+ The project has been moved to https://codeberg.org/allauth/django-allauth.
4
+ Please submit your pull request there.
@@ -0,0 +1,82 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
+ branches: [ main ]
8
+
9
+ jobs:
10
+ test:
11
+ runs-on: ubuntu-24.04
12
+ strategy:
13
+ matrix:
14
+ include:
15
+ - python-version: "3.10"
16
+ debian-version: trixie
17
+ - python-version: "3.12"
18
+ debian-version: trixie
19
+ - python-version: "3.13"
20
+ debian-version: trixie
21
+ - python-version: "3.14"
22
+ debian-version: trixie
23
+ container:
24
+ image: python:${{ matrix.python-version }}-${{ matrix.debian-version }}
25
+ steps:
26
+ - uses: actions/checkout@v6
27
+ - name: Install dependencies
28
+ run: |
29
+ apt-get update
30
+ apt-get install -y --no-install-recommends gettext make
31
+ git config --global --add safe.directory "$GITHUB_WORKSPACE"
32
+ - name: Install nox
33
+ run: pip install nox
34
+ - name: Run tests
35
+ run: nox -x --session "test-${{ matrix.python-version }}"
36
+ env:
37
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38
+
39
+ docs:
40
+ runs-on: ubuntu-22.04
41
+ needs: []
42
+ strategy:
43
+ matrix:
44
+ python-version: [3.14]
45
+ container:
46
+ image: python:3.14-trixie
47
+ steps:
48
+ - uses: actions/checkout@v6
49
+ - name: Install nox
50
+ run: pip install nox
51
+ - name: Build docs
52
+ run: nox -x --session "docs"
53
+
54
+ lint:
55
+ runs-on: ubuntu-22.04
56
+ needs: []
57
+ strategy:
58
+ matrix:
59
+ python-version: [3.14]
60
+ container:
61
+ image: python:3.14-trixie
62
+ steps:
63
+ - uses: actions/checkout@v6
64
+ - name: Install nox
65
+ run: pip install nox
66
+ - name: Run linter
67
+ run: nox -x -t lint
68
+
69
+ standardjs:
70
+ runs-on: ubuntu-24.04
71
+ needs: []
72
+ strategy:
73
+ matrix:
74
+ python-version: [3.14]
75
+ container:
76
+ image: node:22-trixie
77
+ steps:
78
+ - uses: actions/checkout@v6
79
+ - name: Install standardjs dependencies
80
+ run: make ci-install-standardjs
81
+ - name: Run standardjs
82
+ run: make standardjs
@@ -0,0 +1,49 @@
1
+ *.pyc
2
+ *~
3
+ .idea
4
+ .project
5
+ .pydevproject
6
+ *.geany
7
+ docs/_build
8
+ build
9
+ dist
10
+ *.egg*
11
+ examples/**/local_settings.py
12
+ node_modules/
13
+
14
+ # Unit test / coverage reports
15
+ htmlcov/
16
+ .tox/
17
+ .coverage
18
+ .coverage.*
19
+ coverage.xml
20
+ .mypy_cache/
21
+ .nox/
22
+
23
+ .ropeproject/*
24
+ pep8.txt
25
+ *.bak
26
+ .#*
27
+ \#*
28
+ *.db
29
+ *.tmp
30
+ virtualenv
31
+ .DS_Store
32
+
33
+ *.prefs
34
+ *.mo
35
+ /.stfolder
36
+ .direnv/
37
+ examples/react-spa/docker-compose.override.yml
38
+
39
+ # Devenv
40
+ .devenv*
41
+ devenv.local.nix
42
+
43
+ # direnv
44
+ .direnv
45
+
46
+ # pre-commit
47
+ .pre-commit-config.yaml
48
+ /.agent-shell/
49
+ .venv
@@ -0,0 +1,109 @@
1
+ # CI for the django-allauth-async fork.
2
+ #
3
+ # We deliberately test only the platform matrix GlitchTip runs (see README):
4
+ # Python 3.12/3.14 on the Django version pinned by requirements-dev.txt.
5
+ # Upstream's own CI covers the wider matrix for the pristine allauth package.
6
+
7
+ stages:
8
+ - lint
9
+ - test
10
+ - build
11
+ - publish
12
+
13
+ .python: &python
14
+ image: python:3.14
15
+ before_script:
16
+ - pip install --quiet -r requirements-dev.txt aiohttp
17
+
18
+ lint:
19
+ <<: *python
20
+ stage: lint
21
+ script:
22
+ # Lint only fork code; upstream code is linted upstream.
23
+ - pip install --quiet ruff
24
+ - ruff check allauth_async scripts
25
+ - ruff format --check allauth_async scripts
26
+
27
+ drift-check:
28
+ image: python:3.14
29
+ stage: lint
30
+ script:
31
+ - python scripts/check_drift.py
32
+
33
+ # Upstream's unmodified test suite must stay green: proves the merge state is
34
+ # sound and that allauth_async does not leak into upstream behavior.
35
+ upstream-tests:
36
+ <<: *python
37
+ stage: test
38
+ parallel:
39
+ matrix:
40
+ - PY: ["3.12", "3.14"]
41
+ image: python:$PY
42
+ script:
43
+ - pytest allauth tests
44
+
45
+ async-tests:
46
+ <<: *python
47
+ stage: test
48
+ parallel:
49
+ matrix:
50
+ - PY: ["3.12", "3.14"]
51
+ image: python:$PY
52
+ script:
53
+ # DJANGO_ALLOW_ASYNC_UNSAFE must NOT be set: a stray sync ORM call from an
54
+ # async path must raise SynchronousOnlyOperation, not silently pass.
55
+ - pytest allauth_async
56
+
57
+ build:
58
+ <<: *python
59
+ stage: build
60
+ script:
61
+ # Compile translations like upstream's release Makefile does — .mo files
62
+ # are not in git, and the wheel must ship them.
63
+ - apt-get update -qq && apt-get install -y -qq gettext
64
+ - (cd allauth && python ../manage.py compilemessages)
65
+ - pip install --quiet build
66
+ - python -m build
67
+ - python -c "
68
+ import zipfile, glob;
69
+ w = glob.glob('dist/*.whl')[0];
70
+ names = zipfile.ZipFile(w).namelist();
71
+ assert any(n.startswith('allauth/') for n in names), 'allauth missing';
72
+ assert any(n.startswith('allauth_async/') for n in names), 'allauth_async missing';
73
+ assert any('/templates/' in n for n in names), 'templates missing';
74
+ assert any(n.endswith('.mo') for n in names), 'compiled locales missing';
75
+ assert any('/static/' in n for n in names), 'static missing';
76
+ print(w, 'OK')"
77
+ artifacts:
78
+ paths:
79
+ - dist/
80
+
81
+ # Publishes via PyPI trusted publishing (OIDC) — no stored API token.
82
+ # The PyPI-side trusted publisher is registered for this project with
83
+ # top-level pipeline .gitlab-ci.yml and environment "release".
84
+ publish:
85
+ image: python:3.14
86
+ stage: publish
87
+ rules:
88
+ - if: '$CI_COMMIT_TAG =~ /^v\d+\./'
89
+ dependencies:
90
+ - build
91
+ id_tokens:
92
+ PYPI_ID_TOKEN:
93
+ aud: pypi
94
+ environment:
95
+ name: release
96
+ script:
97
+ - pip install --quiet twine
98
+ - |
99
+ api_token=$(python - <<'EOF'
100
+ import json, os, urllib.request
101
+ req = urllib.request.Request(
102
+ "https://pypi.org/_/oidc/mint-token",
103
+ data=json.dumps({"token": os.environ["PYPI_ID_TOKEN"]}).encode(),
104
+ headers={"Content-Type": "application/json"},
105
+ )
106
+ print(json.load(urllib.request.urlopen(req))["token"])
107
+ EOF
108
+ )
109
+ - twine upload -u __token__ -p "$api_token" dist/*
@@ -0,0 +1,22 @@
1
+ # Read the Docs configuration file for Sphinx projects
2
+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3
+
4
+ # Required
5
+ version: 2
6
+
7
+ # Set the OS, Python version and other tools you might need
8
+ build:
9
+ os: ubuntu-22.04
10
+ tools:
11
+ python: "3.11"
12
+
13
+ # Build documentation in the "docs/" directory with Sphinx
14
+ sphinx:
15
+ configuration: docs/conf.py
16
+
17
+ # Optional but recommended, declare the Python requirements required
18
+ # to build your documentation
19
+ # See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
20
+ python:
21
+ install:
22
+ - requirements: docs/requirements.txt
@@ -0,0 +1,51 @@
1
+ when:
2
+ - event: pull_request
3
+ - event: [push, tag, manual]
4
+ branch: main
5
+
6
+ steps:
7
+ test:
8
+ image: python:${PYTHON_VERSION}-${DEBIAN_VERSION}
9
+ commands:
10
+ - apt-get update
11
+ - apt-get install -y --no-install-recommends gettext make
12
+ - pip install nox
13
+ - nox -x --session "test-${PYTHON_VERSION}"
14
+
15
+ docs:
16
+ image: python:${PYTHON_VERSION}-${DEBIAN_VERSION}
17
+ commands:
18
+ - pip install nox
19
+ - nox -x --session "docs"
20
+ depends_on: []
21
+ when:
22
+ - matrix:
23
+ PYTHON_VERSION: 3.14
24
+
25
+ lint:
26
+ image: python:${PYTHON_VERSION}-${DEBIAN_VERSION}
27
+ commands:
28
+ - pip install nox
29
+ - nox -x -t lint
30
+ depends_on: []
31
+ when:
32
+ - matrix:
33
+ PYTHON_VERSION: 3.14
34
+
35
+ standardjs:
36
+ image: node:22-${DEBIAN_VERSION}
37
+ commands:
38
+ - make ci-install-standardjs
39
+ - make standardjs
40
+ depends_on: []
41
+ when:
42
+ - matrix:
43
+ PYTHON_VERSION: 3.14
44
+
45
+ matrix:
46
+ include:
47
+ # To cut down on CI pipeline duration, test oldest/latest Python only.
48
+ - PYTHON_VERSION: 3.10
49
+ DEBIAN_VERSION: trixie
50
+ - PYTHON_VERSION: 3.14
51
+ DEBIAN_VERSION: trixie
@@ -0,0 +1,193 @@
1
+ django-allauth was started by Raymond Penners
2
+ (<raymond.penners@intenct.nl> or @pennersr) in October 2010, inspired
3
+ by and partly based on existing projects such as Pinax (account app),
4
+ Django-Socialauth, django-socialregistration.
5
+
6
+ # Contributors
7
+
8
+ Aarni Koskela
9
+ Aaron van Derlip
10
+ Abhinav Johri
11
+ Abhishek Kumar Jaiswal
12
+ Adam Johnson
13
+ Adam McKerlie
14
+ Agustin Perez Paladini
15
+ Ahmet Emre Aladağ
16
+ Aiden Lu
17
+ Aldiantoro Nugroho
18
+ Alexander Gaevsky
19
+ Alfredo Altamirano
20
+ Andrean Franc
21
+ Andrei Satsevich
22
+ Andrew Chen Wang
23
+ Andrey Akolpakov
24
+ Andrey Balandin
25
+ Andy Matthews
26
+ Ani Vera
27
+ Anna Sirota
28
+ Anton Goncharov
29
+ Antonin Delpeuch
30
+ Aron Griffis
31
+ Bas ten Berge
32
+ Basil Shubin
33
+ Ben Timby
34
+ Benjamin Howes
35
+ Benjamin Jorand
36
+ Bhavani Ravi
37
+ Biel Massot
38
+ Björn Andersson
39
+ Bojan Mihelac
40
+ Brandon Kong
41
+ Bruno Alla
42
+ Chris Beaven
43
+ Chris Davis
44
+ Christian Carter
45
+ Christopher Grebs
46
+ Dan LaManna
47
+ Dani Hodovic
48
+ Daniel Eriksson
49
+ Daniel Widerin
50
+ David Ascher
51
+ David Cain
52
+ David D. Lowe
53
+ David Evans
54
+ David Friedman
55
+ David Hummel
56
+ Dimitris Tsimpitas
57
+ Dmytro Litvinov
58
+ Egor Poderyagin
59
+ Eran Rundstein
60
+ Eric Amador
61
+ Eric Delord
62
+ Fabio Caritas Barrionuevo da Luz
63
+ Facundo Gaich
64
+ Felipe Faria
65
+ Filip Dobrovolný
66
+ Francis Brito
67
+ Frantisek Malina
68
+ Fred Palmer
69
+ Fábio Santos
70
+ George Whewell
71
+ Griffith Rees
72
+ Guignard Javier
73
+ Guilhem Saurel
74
+ Guillaume Schurck
75
+ Guillaume Vincent
76
+ Guoyu Hao
77
+ Haesung Park
78
+ Hatem Nassrat
79
+ Hyunwoo Shim
80
+ Ian R-P
81
+ Ignacio Ocampo
82
+ Illia Volochii
83
+ J. Erm
84
+ J. Fernando Sánchez
85
+ Jack Shedd
86
+ Jakob Gerhard Martinussen
87
+ James Rivett-Carnac
88
+ James Thompson
89
+ Jannis Leidel
90
+ Jannis Vajen
91
+ Jason Wallace
92
+ Jeff Bowen
93
+ Jeff Triplett
94
+ Jeremy Satterfield
95
+ Jerome Leclanche
96
+ Jesse Gerard Brands
97
+ Jihoon Park
98
+ Jiyoon Ha
99
+ Joe Vanderstelt
100
+ Joel Fernandes
101
+ John Bazik
102
+ John Whitlock
103
+ Jonas Aule
104
+ JoonHwan Kim
105
+ Josh Owen
106
+ Josh Wright
107
+ Joshua Butler
108
+ Joshua Sorenson
109
+ Julen Ruiz Aizpuru
110
+ Justin Michalicek
111
+ Justin Pogrob
112
+ Karthikeyan Singaravelan
113
+ Karun Shrestha
114
+ Kevin Dice
115
+ Kimsia Sim
116
+ Koichi Harakawa
117
+ Kun Liu
118
+ Kyle Harrison
119
+ Lee Semel
120
+ Lev Predan Kowarski
121
+ Luis Diego García
122
+ Luiz Guilherme Pais dos Santos
123
+ Luke Burden
124
+ Luke Crouch
125
+ Maksim Rukomoynikov
126
+ Marcin Skarbek
127
+ Marcin Spoczynski
128
+ Marco Fucci
129
+ Marjori Pomarole
130
+ Markus Kaiserswerth
131
+ Markus Thielen
132
+ Martin Bächtold
133
+ Matt Nishi-Broach
134
+ Mauro Stettler
135
+ Mikhail Mitiaev
136
+ Morgante Pell
137
+ Nariman Gharib
138
+ Nathan Strobbe
139
+ Nicolas Acosta
140
+ Niklas A Emanuelsson
141
+ Oleg Sergeev
142
+ Patrick Paul
143
+ Paul Juergen Fischer
144
+ Paulo Eduardo Neves
145
+ Pavel Oborin
146
+ Pavel Savchenko
147
+ Peter Bittner
148
+ Peter Rowlands
149
+ Peter Stein
150
+ Philip John James
151
+ Rabi Alam
152
+ Radek Czajka
153
+ Rense VanderHoek
154
+ Rick Westera
155
+ Robert Balfre
156
+ Roberto Novaes
157
+ Rod Xavier Bondoc
158
+ Roman Tomjak
159
+ Roumen Antonov
160
+ Ryan Jarvis
161
+ Ryan Verner
162
+ Safwan Rahman
163
+ Sam Solomon
164
+ Sanghyeok Lee
165
+ Seizan Shimazaki
166
+ Serafeim Papastefanos
167
+ Sergey Silaev
168
+ Shane Rice
169
+ Stephen Kent
170
+ Stuart Ross
171
+ Terry Jones
172
+ Tiago Loureiro
173
+ Tim Gates
174
+ Tom Hacohen
175
+ Tomas Babej
176
+ Tomas Marcik
177
+ Trey Corple
178
+ Tuk Bredsdorff
179
+ Udi Oron
180
+ Vadim Meshcheryakov
181
+ Veljko Jovanovic
182
+ Victor Semionov
183
+ Vlad Dmitrievich
184
+ Volodymyr Yatsyk
185
+ Vuong Nguyen
186
+ Wendy Edwards
187
+ Will Gordon
188
+ Will Ross
189
+ William Li
190
+ Yaroslav Muravsky
191
+ Youcef Mammar
192
+ Yuri Kriachko
193
+ Mohamed BEN MAKHLOUF