blueair-api 1.9.4__tar.gz → 1.9.6__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.
- {blueair_api-1.9.4/src/blueair_api.egg-info → blueair_api-1.9.6}/PKG-INFO +8 -10
- blueair_api-1.9.6/pyproject.toml +38 -0
- {blueair_api-1.9.4 → blueair_api-1.9.6}/src/blueair_api/http_aws_blueair.py +1 -10
- {blueair_api-1.9.4 → blueair_api-1.9.6/src/blueair_api.egg-info}/PKG-INFO +8 -10
- {blueair_api-1.9.4 → blueair_api-1.9.6}/src/blueair_api.egg-info/SOURCES.txt +0 -1
- blueair_api-1.9.4/pyproject.toml +0 -6
- blueair_api-1.9.4/setup.py +0 -39
- {blueair_api-1.9.4 → blueair_api-1.9.6}/LICENSE +0 -0
- {blueair_api-1.9.4 → blueair_api-1.9.6}/README.md +0 -0
- {blueair_api-1.9.4 → blueair_api-1.9.6}/setup.cfg +0 -0
- {blueair_api-1.9.4 → blueair_api-1.9.6}/src/blueair_api/__init__.py +0 -0
- {blueair_api-1.9.4 → blueair_api-1.9.6}/src/blueair_api/callbacks.py +0 -0
- {blueair_api-1.9.4 → blueair_api-1.9.6}/src/blueair_api/const.py +0 -0
- {blueair_api-1.9.4 → blueair_api-1.9.6}/src/blueair_api/device.py +0 -0
- {blueair_api-1.9.4 → blueair_api-1.9.6}/src/blueair_api/device_aws.py +0 -0
- {blueair_api-1.9.4 → blueair_api-1.9.6}/src/blueair_api/errors.py +0 -0
- {blueair_api-1.9.4 → blueair_api-1.9.6}/src/blueair_api/http_blueair.py +0 -0
- {blueair_api-1.9.4 → blueair_api-1.9.6}/src/blueair_api/stub.py +0 -0
- {blueair_api-1.9.4 → blueair_api-1.9.6}/src/blueair_api/util.py +0 -0
- {blueair_api-1.9.4 → blueair_api-1.9.6}/src/blueair_api/util_bootstrap.py +0 -0
- {blueair_api-1.9.4 → blueair_api-1.9.6}/src/blueair_api/util_http.py +0 -0
- {blueair_api-1.9.4 → blueair_api-1.9.6}/src/blueair_api.egg-info/dependency_links.txt +0 -0
- {blueair_api-1.9.4 → blueair_api-1.9.6}/src/blueair_api.egg-info/requires.txt +0 -0
- {blueair_api-1.9.4 → blueair_api-1.9.6}/src/blueair_api.egg-info/top_level.txt +0 -0
@@ -1,21 +1,19 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: blueair_api
|
3
|
-
Version: 1.9.
|
3
|
+
Version: 1.9.6
|
4
4
|
Summary: Blueair Api Wrapper
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
Project-URL: Source, https://github.com/dahlb/blueair_api
|
10
|
-
Keywords: blueair,api
|
5
|
+
Author-email: Brendan Dahl <dahl.brendan@gmail.com>
|
6
|
+
Project-URL: Homepage, https://github.com/dahlb/blueair_api
|
7
|
+
Project-URL: Bug Tracker, https://github.com/dahlb/blueair_api/issues
|
8
|
+
Keywords: hatch,rest-mini,api
|
11
9
|
Classifier: Development Status :: 4 - Beta
|
12
|
-
Classifier: Framework :: AsyncIO
|
13
10
|
Classifier: License :: OSI Approved :: MIT License
|
11
|
+
Classifier: Framework :: AsyncIO
|
14
12
|
Classifier: Natural Language :: English
|
15
13
|
Classifier: Intended Audience :: Developers
|
16
|
-
Classifier: Programming Language :: Python :: 3
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
17
15
|
Classifier: Operating System :: MacOS :: MacOS X
|
18
|
-
Requires-Python:
|
16
|
+
Requires-Python: <4,>=3.12.0
|
19
17
|
Description-Content-Type: text/markdown
|
20
18
|
License-File: LICENSE
|
21
19
|
Requires-Dist: aiohttp>=3.8.1
|
@@ -0,0 +1,38 @@
|
|
1
|
+
[build-system]
|
2
|
+
requires = [
|
3
|
+
"setuptools>=68.0.0",
|
4
|
+
"wheel",
|
5
|
+
"aiohttp>=3.8.1",
|
6
|
+
]
|
7
|
+
build-backend = "setuptools.build_meta"
|
8
|
+
|
9
|
+
[project]
|
10
|
+
name = "blueair_api"
|
11
|
+
version = "1.9.6"
|
12
|
+
authors = [
|
13
|
+
{ name="Brendan Dahl", email="dahl.brendan@gmail.com" },
|
14
|
+
]
|
15
|
+
description = "Blueair Api Wrapper"
|
16
|
+
readme = "README.md"
|
17
|
+
requires-python = ">=3.12.0, <4"
|
18
|
+
dependencies = [
|
19
|
+
"aiohttp>=3.8.1",
|
20
|
+
]
|
21
|
+
classifiers = [
|
22
|
+
"Development Status :: 4 - Beta",
|
23
|
+
"License :: OSI Approved :: MIT License",
|
24
|
+
"Framework :: AsyncIO",
|
25
|
+
"Natural Language :: English",
|
26
|
+
"Intended Audience :: Developers",
|
27
|
+
"Programming Language :: Python :: 3.12",
|
28
|
+
"Operating System :: MacOS :: MacOS X",
|
29
|
+
]
|
30
|
+
keywords = [
|
31
|
+
"hatch",
|
32
|
+
"rest-mini",
|
33
|
+
"api"
|
34
|
+
]
|
35
|
+
|
36
|
+
[project.urls]
|
37
|
+
"Homepage" = "https://github.com/dahlb/blueair_api"
|
38
|
+
"Bug Tracker" = "https://github.com/dahlb/blueair_api/issues"
|
@@ -198,16 +198,7 @@ class HttpAwsBlueair:
|
|
198
198
|
},
|
199
199
|
},
|
200
200
|
],
|
201
|
-
"includestates": True
|
202
|
-
"eventsubscription": {
|
203
|
-
"include": [
|
204
|
-
{
|
205
|
-
"filter": {
|
206
|
-
"o": f"= {device_uuid}",
|
207
|
-
},
|
208
|
-
},
|
209
|
-
],
|
210
|
-
},
|
201
|
+
"includestates": True
|
211
202
|
}
|
212
203
|
response: ClientResponse = (
|
213
204
|
await self._post_request_with_logging_and_errors_raised(
|
@@ -1,21 +1,19 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: blueair_api
|
3
|
-
Version: 1.9.
|
3
|
+
Version: 1.9.6
|
4
4
|
Summary: Blueair Api Wrapper
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
Project-URL: Source, https://github.com/dahlb/blueair_api
|
10
|
-
Keywords: blueair,api
|
5
|
+
Author-email: Brendan Dahl <dahl.brendan@gmail.com>
|
6
|
+
Project-URL: Homepage, https://github.com/dahlb/blueair_api
|
7
|
+
Project-URL: Bug Tracker, https://github.com/dahlb/blueair_api/issues
|
8
|
+
Keywords: hatch,rest-mini,api
|
11
9
|
Classifier: Development Status :: 4 - Beta
|
12
|
-
Classifier: Framework :: AsyncIO
|
13
10
|
Classifier: License :: OSI Approved :: MIT License
|
11
|
+
Classifier: Framework :: AsyncIO
|
14
12
|
Classifier: Natural Language :: English
|
15
13
|
Classifier: Intended Audience :: Developers
|
16
|
-
Classifier: Programming Language :: Python :: 3
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
17
15
|
Classifier: Operating System :: MacOS :: MacOS X
|
18
|
-
Requires-Python:
|
16
|
+
Requires-Python: <4,>=3.12.0
|
19
17
|
Description-Content-Type: text/markdown
|
20
18
|
License-File: LICENSE
|
21
19
|
Requires-Dist: aiohttp>=3.8.1
|
blueair_api-1.9.4/pyproject.toml
DELETED
blueair_api-1.9.4/setup.py
DELETED
@@ -1,39 +0,0 @@
|
|
1
|
-
from setuptools import setup, find_packages
|
2
|
-
import pathlib
|
3
|
-
|
4
|
-
here = pathlib.Path(__file__).parent.resolve()
|
5
|
-
|
6
|
-
# Get the long description from the README file
|
7
|
-
LONG_DESCRIPTION = (here / "README.md").read_text(encoding="utf-8")
|
8
|
-
|
9
|
-
VERSION = "1.9.4"
|
10
|
-
|
11
|
-
# Setting up
|
12
|
-
setup(
|
13
|
-
name="blueair_api",
|
14
|
-
version=VERSION,
|
15
|
-
author="Brendan Dahl",
|
16
|
-
author_email="dahl.brendan@gmail.com",
|
17
|
-
description="Blueair Api Wrapper",
|
18
|
-
long_description=LONG_DESCRIPTION,
|
19
|
-
long_description_content_type="text/markdown",
|
20
|
-
package_dir={"": "src"},
|
21
|
-
packages=find_packages(where="src"),
|
22
|
-
install_requires=["aiohttp>=3.8.1"],
|
23
|
-
keywords=["blueair", "api"],
|
24
|
-
classifiers=[
|
25
|
-
"Development Status :: 4 - Beta",
|
26
|
-
"Framework :: AsyncIO",
|
27
|
-
"License :: OSI Approved :: MIT License",
|
28
|
-
"Natural Language :: English",
|
29
|
-
"Intended Audience :: Developers",
|
30
|
-
"Programming Language :: Python :: 3",
|
31
|
-
"Operating System :: MacOS :: MacOS X",
|
32
|
-
],
|
33
|
-
python_requires=">=3.9, <4",
|
34
|
-
url="https://github.com/dahlb/blueair_api",
|
35
|
-
project_urls={
|
36
|
-
"Bug Reports": "https://github.com/dahlb/blueair_api/issues",
|
37
|
-
"Source": "https://github.com/dahlb/blueair_api",
|
38
|
-
},
|
39
|
-
)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|