python-fasthtml 0.0.6__tar.gz → 0.0.8__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.0.6/python_fasthtml.egg-info → python-fasthtml-0.0.8}/PKG-INFO +2 -1
- {python-fasthtml-0.0.6 → python-fasthtml-0.0.8}/fasthtml/__init__.py +1 -1
- {python-fasthtml-0.0.6 → python-fasthtml-0.0.8}/fasthtml/_modidx.py +1 -0
- python-fasthtml-0.0.8/fasthtml/cli.py +8 -0
- {python-fasthtml-0.0.6 → python-fasthtml-0.0.8}/fasthtml/core.py +1 -1
- {python-fasthtml-0.0.6 → python-fasthtml-0.0.8}/fasthtml/fastapp.py +0 -1
- {python-fasthtml-0.0.6 → python-fasthtml-0.0.8/python_fasthtml.egg-info}/PKG-INFO +2 -1
- {python-fasthtml-0.0.6 → python-fasthtml-0.0.8}/python_fasthtml.egg-info/SOURCES.txt +1 -0
- {python-fasthtml-0.0.6 → python-fasthtml-0.0.8}/python_fasthtml.egg-info/requires.txt +1 -0
- {python-fasthtml-0.0.6 → python-fasthtml-0.0.8}/settings.ini +2 -2
- {python-fasthtml-0.0.6 → python-fasthtml-0.0.8}/LICENSE +0 -0
- {python-fasthtml-0.0.6 → python-fasthtml-0.0.8}/MANIFEST.in +0 -0
- {python-fasthtml-0.0.6 → python-fasthtml-0.0.8}/README.md +0 -0
- {python-fasthtml-0.0.6 → python-fasthtml-0.0.8}/fasthtml/all.py +0 -0
- {python-fasthtml-0.0.6 → python-fasthtml-0.0.8}/fasthtml/authmw.py +0 -0
- {python-fasthtml-0.0.6 → python-fasthtml-0.0.8}/fasthtml/components.py +0 -0
- {python-fasthtml-0.0.6 → python-fasthtml-0.0.8}/fasthtml/oauth.py +0 -0
- {python-fasthtml-0.0.6 → python-fasthtml-0.0.8}/fasthtml/starlette.py +0 -0
- {python-fasthtml-0.0.6 → python-fasthtml-0.0.8}/fasthtml/xtend.py +0 -0
- {python-fasthtml-0.0.6 → python-fasthtml-0.0.8}/python_fasthtml.egg-info/dependency_links.txt +0 -0
- {python-fasthtml-0.0.6 → python-fasthtml-0.0.8}/python_fasthtml.egg-info/entry_points.txt +0 -0
- {python-fasthtml-0.0.6 → python-fasthtml-0.0.8}/python_fasthtml.egg-info/not-zip-safe +0 -0
- {python-fasthtml-0.0.6 → python-fasthtml-0.0.8}/python_fasthtml.egg-info/top_level.txt +0 -0
- {python-fasthtml-0.0.6 → python-fasthtml-0.0.8}/setup.cfg +0 -0
- {python-fasthtml-0.0.6 → python-fasthtml-0.0.8}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python-fasthtml
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.8
|
|
4
4
|
Summary: The fastest way to create an HTML app
|
|
5
5
|
Home-page: https://github.com/AnswerDotAI/fasthtml
|
|
6
6
|
Author: Jeremy Howard
|
|
@@ -23,6 +23,7 @@ Requires-Dist: itsdangerous
|
|
|
23
23
|
Requires-Dist: uvicorn
|
|
24
24
|
Requires-Dist: httpx
|
|
25
25
|
Requires-Dist: fastlite
|
|
26
|
+
Requires-Dist: python-multipart
|
|
26
27
|
Provides-Extra: dev
|
|
27
28
|
Requires-Dist: ipython; extra == "dev"
|
|
28
29
|
Requires-Dist: lxml; extra == "dev"
|
|
@@ -7,6 +7,7 @@ d = { 'settings': { 'branch': 'main',
|
|
|
7
7
|
'lib_path': 'fasthtml'},
|
|
8
8
|
'syms': { 'fasthtml.all': {},
|
|
9
9
|
'fasthtml.authmw': {},
|
|
10
|
+
'fasthtml.cli': {},
|
|
10
11
|
'fasthtml.components': { 'fasthtml.components._FindElems': ('components.html#_findelems', 'fasthtml/components.py'),
|
|
11
12
|
'fasthtml.components._FindElems.__init__': ( 'components.html#_findelems.__init__',
|
|
12
13
|
'fasthtml/components.py'),
|
|
@@ -95,7 +95,7 @@ async def _from_body(req, arg, p):
|
|
|
95
95
|
|
|
96
96
|
async def _find_p(req, arg:str, p):
|
|
97
97
|
anno = p.annotation
|
|
98
|
-
if arg.lower()=='auth': return req.scope
|
|
98
|
+
if arg.lower()=='auth': return req.scope.get('auth', None)
|
|
99
99
|
if isinstance(anno, type):
|
|
100
100
|
if issubclass(anno, Request): return req
|
|
101
101
|
if issubclass(anno, HtmxHeaders): return _get_htmx(req)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python-fasthtml
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.8
|
|
4
4
|
Summary: The fastest way to create an HTML app
|
|
5
5
|
Home-page: https://github.com/AnswerDotAI/fasthtml
|
|
6
6
|
Author: Jeremy Howard
|
|
@@ -23,6 +23,7 @@ Requires-Dist: itsdangerous
|
|
|
23
23
|
Requires-Dist: uvicorn
|
|
24
24
|
Requires-Dist: httpx
|
|
25
25
|
Requires-Dist: fastlite
|
|
26
|
+
Requires-Dist: python-multipart
|
|
26
27
|
Provides-Extra: dev
|
|
27
28
|
Requires-Dist: ipython; extra == "dev"
|
|
28
29
|
Requires-Dist: lxml; extra == "dev"
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
[DEFAULT]
|
|
2
2
|
repo = fasthtml
|
|
3
3
|
lib_name = fasthtml
|
|
4
|
-
version = 0.0.
|
|
4
|
+
version = 0.0.8
|
|
5
5
|
min_python = 3.10
|
|
6
6
|
license = apache2
|
|
7
|
-
requirements = fastcore python-dateutil starlette oauthlib itsdangerous uvicorn httpx fastlite
|
|
7
|
+
requirements = fastcore python-dateutil starlette oauthlib itsdangerous uvicorn httpx fastlite python-multipart
|
|
8
8
|
dev_requirements = ipython lxml
|
|
9
9
|
black_formatting = False
|
|
10
10
|
conda_user = fastai
|
|
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.0.6 → python-fasthtml-0.0.8}/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
|