python-fasthtml 0.12.2__tar.gz → 0.12.3__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.
- {python_fasthtml-0.12.2/python_fasthtml.egg-info → python_fasthtml-0.12.3}/PKG-INFO +1 -1
- python_fasthtml-0.12.3/fasthtml/__init__.py +2 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/fasthtml/oauth.py +2 -2
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3/python_fasthtml.egg-info}/PKG-INFO +1 -1
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/settings.ini +1 -1
- python_fasthtml-0.12.2/fasthtml/__init__.py +0 -2
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/CONTRIBUTING.md +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/LICENSE +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/MANIFEST.in +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/README.md +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/fasthtml/_modidx.py +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/fasthtml/authmw.py +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/fasthtml/basics.py +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/fasthtml/cli.py +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/fasthtml/common.py +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/fasthtml/components.py +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/fasthtml/components.pyi +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/fasthtml/core.py +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/fasthtml/core.pyi +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/fasthtml/fastapp.py +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/fasthtml/ft.py +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/fasthtml/js.py +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/fasthtml/jupyter.py +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/fasthtml/katex.js +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/fasthtml/live_reload.py +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/fasthtml/pico.py +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/fasthtml/starlette.py +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/fasthtml/svg.py +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/fasthtml/toaster.py +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/fasthtml/xtend.py +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/fasthtml/xtend.pyi +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/pyproject.toml +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/python_fasthtml.egg-info/SOURCES.txt +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/python_fasthtml.egg-info/dependency_links.txt +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/python_fasthtml.egg-info/entry_points.txt +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/python_fasthtml.egg-info/not-zip-safe +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/python_fasthtml.egg-info/requires.txt +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/python_fasthtml.egg-info/top_level.txt +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/setup.cfg +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/setup.py +0 -0
- {python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/tests/test_toaster.py +0 -0
|
@@ -107,11 +107,11 @@ class Auth0AppClient(_AppClient):
|
|
|
107
107
|
|
|
108
108
|
# %% ../nbs/api/08_oauth.ipynb
|
|
109
109
|
@patch
|
|
110
|
-
def login_link(self:WebApplicationClient, redirect_uri, scope=None, state=None,
|
|
110
|
+
def login_link(self:WebApplicationClient, redirect_uri, scope=None, state=None, **kwargs):
|
|
111
111
|
"Get a login link for this client"
|
|
112
112
|
if not scope: scope=self.scope
|
|
113
113
|
if not state: state=getattr(self, 'state', None)
|
|
114
|
-
return self.prepare_request_uri(self.base_url, redirect_uri, scope, state=state)
|
|
114
|
+
return self.prepare_request_uri(self.base_url, redirect_uri, scope, state=state, **kwargs)
|
|
115
115
|
|
|
116
116
|
# %% ../nbs/api/08_oauth.ipynb
|
|
117
117
|
def redir_url(request, redir_path, scheme=None):
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[DEFAULT]
|
|
2
2
|
repo = fasthtml
|
|
3
3
|
lib_name = fasthtml
|
|
4
|
-
version = 0.12.
|
|
4
|
+
version = 0.12.3
|
|
5
5
|
min_python = 3.10
|
|
6
6
|
license = apache2
|
|
7
7
|
requirements = fastcore>=1.7.18 python-dateutil starlette>0.33 oauthlib itsdangerous uvicorn[standard]>=0.30 httpx fastlite>=0.1.1 python-multipart beautifulsoup4
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_fasthtml-0.12.2 → python_fasthtml-0.12.3}/python_fasthtml.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|