We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91f2857 commit 47e78d3Copy full SHA for 47e78d3
RELEASE_NOTES.md
@@ -11,7 +11,17 @@
11
12
## New Features
13
14
-<!-- Here goes the main new features and examples or instructions on how to use them -->
+* Automatic creation of core data-pipeline actors, to eliminate a lot
15
+ of boiler plate code. This makes it much simpler to deploy apps
16
+ (#270). For example:
17
+
18
+ ``` python
19
+ async def run():
20
+ await microgrid.initialize(
21
+ host=HOST, port=PORT, resampler_config=ResamplerConfig(resampling_period_s=1.0)
22
+ )
23
+ grid_power = microgrid.logical_meter().grid_power()
24
+ ```
25
26
## Bug Fixes
27
0 commit comments