python-fasthtml 0.13.1__tar.gz → 0.13.2__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 (39) hide show
  1. {python_fasthtml-0.13.1/python_fasthtml.egg-info → python_fasthtml-0.13.2}/PKG-INFO +1 -1
  2. python_fasthtml-0.13.2/fasthtml/__init__.py +2 -0
  3. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/fasthtml/core.py +1 -1
  4. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2/python_fasthtml.egg-info}/PKG-INFO +1 -1
  5. python_fasthtml-0.13.1/fasthtml/__init__.py +0 -2
  6. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/CONTRIBUTING.md +0 -0
  7. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/LICENSE +0 -0
  8. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/MANIFEST.in +0 -0
  9. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/README.md +0 -0
  10. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/fasthtml/_modidx.py +0 -0
  11. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/fasthtml/authmw.py +0 -0
  12. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/fasthtml/basics.py +0 -0
  13. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/fasthtml/cli.py +0 -0
  14. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/fasthtml/common.py +0 -0
  15. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/fasthtml/components.py +0 -0
  16. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/fasthtml/components.pyi +0 -0
  17. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/fasthtml/core.pyi +0 -0
  18. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/fasthtml/fastapp.py +0 -0
  19. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/fasthtml/ft.py +0 -0
  20. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/fasthtml/js.py +0 -0
  21. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/fasthtml/jupyter.py +0 -0
  22. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/fasthtml/katex.js +0 -0
  23. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/fasthtml/live_reload.py +0 -0
  24. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/fasthtml/oauth.py +0 -0
  25. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/fasthtml/pico.py +0 -0
  26. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/fasthtml/starlette.py +0 -0
  27. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/fasthtml/stripe_otp.py +0 -0
  28. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/fasthtml/svg.py +0 -0
  29. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/fasthtml/toaster.py +0 -0
  30. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/fasthtml/xtend.py +0 -0
  31. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/fasthtml/xtend.pyi +0 -0
  32. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/pyproject.toml +0 -0
  33. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/python_fasthtml.egg-info/SOURCES.txt +0 -0
  34. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/python_fasthtml.egg-info/dependency_links.txt +0 -0
  35. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/python_fasthtml.egg-info/entry_points.txt +0 -0
  36. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/python_fasthtml.egg-info/requires.txt +0 -0
  37. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/python_fasthtml.egg-info/top_level.txt +0 -0
  38. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/setup.cfg +0 -0
  39. {python_fasthtml-0.13.1 → python_fasthtml-0.13.2}/tests/test_toaster.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-fasthtml
3
- Version: 0.13.1
3
+ Version: 0.13.2
4
4
  Summary: The fastest way to create an HTML app
5
5
  Author-email: Jeremy Howard and contributors <github@jhoward.fastmail.fm>
6
6
  License: Apache-2.0
@@ -0,0 +1,2 @@
1
+ __version__ = "0.13.2"
2
+ from .core import *
@@ -267,7 +267,7 @@ async def _handle(f, *args, **kwargs):
267
267
 
268
268
  # %% ../nbs/api/00_core.ipynb #ad0f0e87
269
269
  async def _wrap_ws(ws, data, params):
270
- hdrs = {k.lower().replace('-','_'):v for k,v in data.pop('HEADERS', {}).items()}
270
+ hdrs = Headers({k.lower():v for k,v in data.pop('HEADERS', {}).items()})
271
271
  return await _find_ps(ws, data, hdrs, params)
272
272
 
273
273
  # %% ../nbs/api/00_core.ipynb #dcc15129
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-fasthtml
3
- Version: 0.13.1
3
+ Version: 0.13.2
4
4
  Summary: The fastest way to create an HTML app
5
5
  Author-email: Jeremy Howard and contributors <github@jhoward.fastmail.fm>
6
6
  License: Apache-2.0
@@ -1,2 +0,0 @@
1
- __version__ = "0.13.1"
2
- from .core import *