Skip to content

Commit 298c77c

Browse files
- implement streamables and async data retrievals
- reorganization of major files
1 parent fcbecd5 commit 298c77c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+2623
-2059
lines changed

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "oshconnect"
3-
version = "0.3.0a3.post3"
3+
version = "0.3.0a4"
44
description = "Library for interfacing with OSH, helping guide visualization efforts, and providing a place to store configurations."
55
readme = "README.md"
66
authors = [
@@ -12,7 +12,8 @@ dependencies = [
1212
"pydantic>=2.7.4,<3.0.0",
1313
"shapely>=2.0.4,<3.0.0",
1414
"websockets>=12.0,<16.0",
15-
"requests"
15+
"requests",
16+
"aiohttp>=3.12.15",
1617
]
1718

1819
[dependency-groups]
@@ -24,5 +25,4 @@ dev = [
2425
]
2526

2627
[tool.setuptools]
27-
#packages = ["oshconnect", "oshconnect.csapi4py", "oshconnect.datamodels", "oshconnect.csapi4py.comm"]
2828
packages = {find = { where = ["src/"]}}

src/oshconnect/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# ==============================================================================
77

88
from .oshconnectapi import OSHConnect
9-
from .osh_connect_datamodels import System, Node, Datastream, Observation, ControlChannel
9+
from .streamableresource import System, Node, Datastream, Observation, ControlChannel

0 commit comments

Comments
 (0)