ephaptic 0.2.4__tar.gz → 0.2.5__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 (24) hide show
  1. {ephaptic-0.2.4 → ephaptic-0.2.5}/PKG-INFO +1 -1
  2. {ephaptic-0.2.4 → ephaptic-0.2.5}/ephaptic/cli/__main__.py +4 -2
  3. {ephaptic-0.2.4 → ephaptic-0.2.5}/ephaptic.egg-info/PKG-INFO +1 -1
  4. {ephaptic-0.2.4 → ephaptic-0.2.5}/pyproject.toml +1 -1
  5. {ephaptic-0.2.4 → ephaptic-0.2.5}/LICENSE +0 -0
  6. {ephaptic-0.2.4 → ephaptic-0.2.5}/README.md +0 -0
  7. {ephaptic-0.2.4 → ephaptic-0.2.5}/ephaptic/__init__.py +0 -0
  8. {ephaptic-0.2.4 → ephaptic-0.2.5}/ephaptic/adapters/__init__.py +0 -0
  9. {ephaptic-0.2.4 → ephaptic-0.2.5}/ephaptic/adapters/fastapi_.py +0 -0
  10. {ephaptic-0.2.4 → ephaptic-0.2.5}/ephaptic/adapters/quart_.py +0 -0
  11. {ephaptic-0.2.4 → ephaptic-0.2.5}/ephaptic/cli/__init__.py +0 -0
  12. {ephaptic-0.2.4 → ephaptic-0.2.5}/ephaptic/client/__init__.py +0 -0
  13. {ephaptic-0.2.4 → ephaptic-0.2.5}/ephaptic/client/client.py +0 -0
  14. {ephaptic-0.2.4 → ephaptic-0.2.5}/ephaptic/ephaptic.py +0 -0
  15. {ephaptic-0.2.4 → ephaptic-0.2.5}/ephaptic/localproxy.py +0 -0
  16. {ephaptic-0.2.4 → ephaptic-0.2.5}/ephaptic/transports/__init__.py +0 -0
  17. {ephaptic-0.2.4 → ephaptic-0.2.5}/ephaptic/transports/fastapi_ws.py +0 -0
  18. {ephaptic-0.2.4 → ephaptic-0.2.5}/ephaptic/transports/websocket.py +0 -0
  19. {ephaptic-0.2.4 → ephaptic-0.2.5}/ephaptic.egg-info/SOURCES.txt +0 -0
  20. {ephaptic-0.2.4 → ephaptic-0.2.5}/ephaptic.egg-info/dependency_links.txt +0 -0
  21. {ephaptic-0.2.4 → ephaptic-0.2.5}/ephaptic.egg-info/entry_points.txt +0 -0
  22. {ephaptic-0.2.4 → ephaptic-0.2.5}/ephaptic.egg-info/requires.txt +0 -0
  23. {ephaptic-0.2.4 → ephaptic-0.2.5}/ephaptic.egg-info/top_level.txt +0 -0
  24. {ephaptic-0.2.4 → ephaptic-0.2.5}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ephaptic
3
- Version: 0.2.4
3
+ Version: 0.2.5
4
4
  Summary: The Python client/server package for ephaptic.
5
5
  Author-email: uukelele <robustrobot11@gmail.com>
6
6
  License: MIT License
@@ -79,14 +79,14 @@ def generate(
79
79
 
80
80
  ephaptic = load_ephaptic(client)
81
81
 
82
- typer.secho(f"Found {len(ephaptic._exposed_functions)} functions.", fg=typer.colors.GREEN)
83
-
84
82
  schema_output = {
85
83
  "methods": {},
86
84
  "events": {},
87
85
  "definitions": {},
88
86
  }
89
87
 
88
+ typer.secho(f"Found {len(ephaptic._exposed_functions)} functions.", fg=typer.colors.GREEN)
89
+
90
90
  for name, func in ephaptic._exposed_functions.items():
91
91
  typer.secho(f" - {name}")
92
92
 
@@ -117,6 +117,8 @@ def generate(
117
117
 
118
118
  schema_output["methods"][name] = method_schema
119
119
 
120
+ typer.secho(f"Found {len(ephaptic._exposed_events)} events.", fg=typer.colors.GREEN)
121
+
120
122
  for name, model in ephaptic._exposed_events.items():
121
123
  typer.secho(f" - {name}")
122
124
  adapter = TypeAdapter(model)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ephaptic
3
- Version: 0.2.4
3
+ Version: 0.2.5
4
4
  Summary: The Python client/server package for ephaptic.
5
5
  Author-email: uukelele <robustrobot11@gmail.com>
6
6
  License: MIT License
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "ephaptic"
7
- version = "0.2.4"
7
+ version = "0.2.5"
8
8
  authors = [
9
9
  { name="uukelele", email="robustrobot11@gmail.com" },
10
10
  ]
File without changes
File without changes
File without changes
File without changes
File without changes