appier 1.34.7__py2.py3-none-any.whl → 1.34.9__py2.py3-none-any.whl

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.
appier/api.py CHANGED
@@ -19,6 +19,16 @@
19
19
  # You should have received a copy of the Apache License along with
20
20
  # Hive Appier Framework. If not, see <http://www.apache.org/licenses/>.
21
21
 
22
+ """appier.api
23
+
24
+ High-level client-side companion to Appier's App.
25
+ Provides the `API` base class with HTTP helpers, signing and retries.
26
+ Simplifies GET, POST and other verbs while handling ordered params.
27
+ Integrates logging, configuration and observer event hooks.
28
+ Supports authentication callbacks, singleton pattern and timeouts.
29
+ Adopted by SDKs to wrap REST or RPC endpoints in a uniform way.
30
+ """
31
+
22
32
  __author__ = "João Magalhães <joamag@hive.pt>"
23
33
  """ The author(s) of the module """
24
34
 
appier/asgi.py CHANGED
@@ -19,6 +19,16 @@
19
19
  # You should have received a copy of the Apache License along with
20
20
  # Hive Appier Framework. If not, see <http://www.apache.org/licenses/>.
21
21
 
22
+ """appier.asgi
23
+
24
+ ASGI integration layer enabling async deployment of Appier apps.
25
+ Provides `ASGIApp` adapter that converts requests to async workflow.
26
+ Implements `asgi_entry` plus helpers to serve with uvicorn, hypercorn,
27
+ and daphne with optional live-reload and TLS support.
28
+ Bridges ASGI scope, receive and send to Appier's response mechanics.
29
+ Lets developers leverage HTTP/2, WebSockets and asyncio concurrency.
30
+ """
31
+
22
32
  __author__ = "João Magalhães <joamag@hive.pt>"
23
33
  """ The author(s) of the module """
24
34
 
appier/base.py CHANGED
@@ -19,6 +19,16 @@
19
19
  # You should have received a copy of the Apache License along with
20
20
  # Hive Appier Framework. If not, see <http://www.apache.org/licenses/>.
21
21
 
22
+ """appier.base
23
+
24
+ Core module of the Appier framework providing the App class and helpers.
25
+ Handles HTTP/ASGI lifecycle, routing, configuration, logging and events.
26
+ Includes utilities for caching, background scheduling and compression.
27
+ Serves as the foundation on which controllers, models and plugins build.
28
+ Applications subclass App to create fully featured web or API services.
29
+ All other framework modules assume the functionality defined here.
30
+ """
31
+
22
32
  __author__ = "João Magalhães <joamag@hive.pt>"
23
33
  """ The author(s) of the module """
24
34
 
@@ -94,7 +104,7 @@ NAME = "appier"
94
104
  """ The name to be used to describe the framework while working
95
105
  on its own environment, this is just a descriptive value """
96
106
 
97
- VERSION = "1.34.7"
107
+ VERSION = "1.34.8"
98
108
  """ The version of the framework that is currently installed
99
109
  this value may be used for debugging/diagnostic purposes """
100
110
 
appier/bus.py CHANGED
@@ -19,6 +19,16 @@
19
19
  # You should have received a copy of the Apache License along with
20
20
  # Hive Appier Framework. If not, see <http://www.apache.org/licenses/>.
21
21
 
22
+ """appier.bus
23
+
24
+ Lightweight event-bus component for decoupled in-app messaging.
25
+ Defines abstract `Bus` plus memory-based and Redis sub-classes.
26
+ Allows components to bind, unbind and trigger named callbacks.
27
+ Redis backend employs pub/sub enabling cross-process broadcasts.
28
+ Serializes handlers so worker processes can reload their state.
29
+ Empowers controllers, schedulers and plugins to coordinate tasks.
30
+ """
31
+
22
32
  __author__ = "João Magalhães <joamag@hive.pt>"
23
33
  """ The author(s) of the module """
24
34