python-fasthtml 0.1.10__tar.gz → 0.1.11__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 (32) hide show
  1. {python_fasthtml-0.1.10/python_fasthtml.egg-info → python-fasthtml-0.1.11}/PKG-INFO +1 -1
  2. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/fasthtml/__init__.py +1 -1
  3. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/fasthtml/fastapp.py +1 -1
  4. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11/python_fasthtml.egg-info}/PKG-INFO +1 -1
  5. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/settings.ini +1 -1
  6. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/LICENSE +0 -0
  7. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/MANIFEST.in +0 -0
  8. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/README.md +0 -0
  9. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/fasthtml/_modidx.py +0 -0
  10. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/fasthtml/authmw.py +0 -0
  11. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/fasthtml/cli.py +0 -0
  12. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/fasthtml/common.py +0 -0
  13. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/fasthtml/components.py +0 -0
  14. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/fasthtml/components.pyi +0 -0
  15. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/fasthtml/core.py +0 -0
  16. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/fasthtml/ft.py +0 -0
  17. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/fasthtml/js.py +0 -0
  18. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/fasthtml/live_reload.py +0 -0
  19. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/fasthtml/oauth.py +0 -0
  20. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/fasthtml/starlette.py +0 -0
  21. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/fasthtml/svg.py +0 -0
  22. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/fasthtml/toaster.py +0 -0
  23. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/fasthtml/xtend.py +0 -0
  24. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/fasthtml/xtend.pyi +0 -0
  25. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/python_fasthtml.egg-info/SOURCES.txt +0 -0
  26. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/python_fasthtml.egg-info/dependency_links.txt +0 -0
  27. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/python_fasthtml.egg-info/entry_points.txt +0 -0
  28. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/python_fasthtml.egg-info/not-zip-safe +0 -0
  29. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/python_fasthtml.egg-info/requires.txt +0 -0
  30. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/python_fasthtml.egg-info/top_level.txt +0 -0
  31. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/setup.cfg +0 -0
  32. {python_fasthtml-0.1.10 → python-fasthtml-0.1.11}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-fasthtml
3
- Version: 0.1.10
3
+ Version: 0.1.11
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
@@ -1,4 +1,4 @@
1
- __version__ = "0.1.10"
1
+ __version__ = "0.1.11"
2
2
  from .core import *
3
3
  from .authmw import *
4
4
  from .components import *
@@ -38,7 +38,7 @@ def fast_app(db=None, render=None, hdrs=None, ftrs=None, tbls=None, before=None,
38
38
  if len(dbtbls)==1: dbtbls=dbtbls[0]
39
39
  return app,app.route,*dbtbls
40
40
 
41
- def run_uv(fname=None, app='app', host='0.0.0.0', port=None, reload=True):
41
+ def serve(fname=None, app='app', host='0.0.0.0', port=None, reload=True):
42
42
  glb = inspect.currentframe().f_back.f_globals
43
43
  if glb.get('__name__') == '__main__':
44
44
  if not fname: fname = Path(glb.get('__file__', '')).stem
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-fasthtml
3
- Version: 0.1.10
3
+ Version: 0.1.11
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
@@ -1,7 +1,7 @@
1
1
  [DEFAULT]
2
2
  repo = fasthtml
3
3
  lib_name = fasthtml
4
- version = 0.1.10
4
+ version = 0.1.11
5
5
  min_python = 3.10
6
6
  license = apache2
7
7
  requirements = fastcore>=1.6.0 python-dateutil starlette>0.33 oauthlib itsdangerous uvicorn[standard]>=0.30 httpx fastlite>=0.0.6 python-multipart beautifulsoup4