From 6ea8ae5c38c5247a1a534a127fbf9b986735157d Mon Sep 17 00:00:00 2001 From: Katie Mulliken Date: Tue, 19 Mar 2024 16:04:59 -0400 Subject: [PATCH] Update name in repo --- .gitignore | 2 +- .reuse/dep5 | 8 +++---- CHANGELOG.md | 26 ++++++++++----------- README.md | 2 +- src/wyzeapy/__init__.py | 2 +- src/wyzeapy/const.py | 2 +- src/wyzeapy/crypto.py | 2 +- src/wyzeapy/exceptions.py | 2 +- src/wyzeapy/payload_factory.py | 2 +- src/wyzeapy/services/base_service.py | 2 +- src/wyzeapy/services/bulb_service.py | 2 +- src/wyzeapy/services/camera_service.py | 2 +- src/wyzeapy/services/hms_service.py | 2 +- src/wyzeapy/services/lock_service.py | 2 +- src/wyzeapy/services/sensor_service.py | 2 +- src/wyzeapy/services/switch_service.py | 2 +- src/wyzeapy/services/thermostat_service.py | 2 +- src/wyzeapy/services/wall_switch_service.py | 2 +- src/wyzeapy/types.py | 2 +- src/wyzeapy/utils.py | 2 +- src/wyzeapy/wyze_auth_lib.py | 2 +- tests/__init__.py | 2 +- tests/test_client.py | 2 +- 23 files changed, 38 insertions(+), 38 deletions(-) diff --git a/.gitignore b/.gitignore index dbfaee9..0fc32e4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2021 Mulliken, LLC +# SPDX-FileCopyrightText: 2021 Mulliken, LLC # # SPDX-License-Identifier: GPL-3.0-only diff --git a/.reuse/dep5 b/.reuse/dep5 index 795bde5..ff0446d 100644 --- a/.reuse/dep5 +++ b/.reuse/dep5 @@ -1,6 +1,6 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: wyzeapy -Upstream-Contact: Mulliken LLC +Upstream-Contact: Mulliken LLC Source: https://github.com/JoshuaMulliken/wyzeapy # Sample paragraph, commented out: @@ -9,13 +9,13 @@ Source: https://github.com/JoshuaMulliken/wyzeapy # Copyright: $YEAR $NAME <$CONTACT> # License: ... Files: src/* -Copyright: 2021 Mulliken, LLC +Copyright: 2021 Mulliken, LLC License: GPL-3.0-only Files: docs/* -Copyright: 2021 Mulliken, LLC +Copyright: 2021 Mulliken, LLC License: GPL-3.0-only Files: tests/* -Copyright: 2021 Mulliken, LLC +Copyright: 2021 Mulliken, LLC License: GPL-3.0-only \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index d343035..79e1075 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ @@ -15,22 +15,22 @@ See [conventional commits](https://www.conventionalcommits.org/) for commit guid ### Continuous Integration 6751e7 - Add Semgrep CI - semgrep.dev on behalf of @JoshuaMulliken -cd937f - add codeql-analysis.yml - Joshua Mulliken +cd937f - add codeql-analysis.yml - Katie Mulliken ### Bug Fixes 19146d - update manager inconsistencies and infinite loop (#1)* refactor: update_manager: Add some consistency to the updates_per_interval valuechange the name of this argument so that it is more clear that this should be the time between updates. Additionally add a doc string to give some context.This also means that we'll need to calculate the interval/updates_per_interval to get the actual countdown time.* fix: update_manger: fix the infinite loop while trying to conduct a backoffthis infinite loop was created because of an inconsitency in how the updates_per_interval value was being used between the classes. Now that it's being used an intended, the value should be used directly in these values.A smaller updates_per_interval will equate to a longer time between updates for a device. - Joe Schubert -4e6d3e - ensure that updates_per_interval cannot be reduced to zero - Joshua Mulliken +4e6d3e - ensure that updates_per_interval cannot be reduced to zero - Katie Mulliken ### Features -da4455 - Utilize an update_manager to alleviate load on wyze's api (#1)Co-authored-by: Joshua Mulliken - Joe Schubert +da4455 - Utilize an update_manager to alleviate load on wyze's api (#1)Co-authored-by: Katie Mulliken - Joe Schubert ### Miscellaneous Chores a92950 - bump version to stable - Josh Mulliken 82b588 - bump version - Josh Mulliken -ed7eb5 - bump version - Joshua Mulliken +ed7eb5 - bump version - Katie Mulliken fea63d - correct license information - Josh Mulliken - - - @@ -39,12 +39,12 @@ fea63d - correct license information - Josh Mulliken ### Bug Fixes -f08f6b - fix lock status being flipped - Joshua Mulliken +f08f6b - fix lock status being flipped - Katie Mulliken ### Miscellaneous Chores -b7cd51 - bump version in setup.cfg - Joshua Mulliken +b7cd51 - bump version in setup.cfg - Katie Mulliken - - - @@ -53,7 +53,7 @@ b7cd51 - bump version in setup.cfg - Joshua Mulliken ### Bug Fixes -88e1bb - modify pypi version number - Joshua Mulliken +88e1bb - modify pypi version number - Katie Mulliken - - - @@ -62,12 +62,12 @@ b7cd51 - bump version in setup.cfg - Joshua Mulliken ### Bug Fixes -8e26ff - remove redundent return before the logging functions - Joshua Mulliken +8e26ff - remove redundent return before the logging functions - Katie Mulliken ### Documentation -532552 - update changelog to fit what cocogitto expects - Joshua Mulliken +532552 - update changelog to fit what cocogitto expects - Katie Mulliken - - - @@ -76,10 +76,10 @@ b7cd51 - bump version in setup.cfg - Joshua Mulliken ### Miscellaneous Chores -8c9f7a - cleanup old files - Joshua Mulliken -726a46 - bump version - Joshua Mulliken +8c9f7a - cleanup old files - Katie Mulliken +726a46 - bump version - Katie Mulliken ### Features -8bff85 - add logging for get, patch, and delete - Joshua Mulliken +8bff85 - add logging for get, patch, and delete - Katie Mulliken diff --git a/README.md b/README.md index 2b679f2..f2e2bae 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ diff --git a/src/wyzeapy/__init__.py b/src/wyzeapy/__init__.py index 1aff08a..8c9869a 100644 --- a/src/wyzeapy/__init__.py +++ b/src/wyzeapy/__init__.py @@ -2,7 +2,7 @@ # You may use, distribute and modify this code under the terms # of the attached license. You should have received a copy of # the license with this file. If not, please write to: -# joshua@mulliken.net to receive a copy +# katie@mulliken.net to receive a copy import logging from inspect import iscoroutinefunction from typing import List, Optional, Set, Callable diff --git a/src/wyzeapy/const.py b/src/wyzeapy/const.py index f32ed15..4cc1681 100644 --- a/src/wyzeapy/const.py +++ b/src/wyzeapy/const.py @@ -2,7 +2,7 @@ # You may use, distribute and modify this code under the terms # of the attached license. You should have received a copy of # the license with this file. If not, please write to: -# joshua@mulliken.net to receive a copy +# katie@mulliken.net to receive a copy import uuid # Here is where all the *magic* lives diff --git a/src/wyzeapy/crypto.py b/src/wyzeapy/crypto.py index 914573e..4500928 100644 --- a/src/wyzeapy/crypto.py +++ b/src/wyzeapy/crypto.py @@ -2,7 +2,7 @@ # You may use, distribute and modify this code under the terms # of the attached license. You should have received a copy of # the license with this file. If not, please write to: -# joshua@mulliken.net to receive a copy +# katie@mulliken.net to receive a copy import hashlib import hmac import urllib.parse diff --git a/src/wyzeapy/exceptions.py b/src/wyzeapy/exceptions.py index 4199d2d..551f52a 100644 --- a/src/wyzeapy/exceptions.py +++ b/src/wyzeapy/exceptions.py @@ -2,7 +2,7 @@ # You may use, distribute and modify this code under the terms # of the attached license. You should have received a copy of # the license with this file. If not, please write to: -# joshua@mulliken.net to receive a copy +# katie@mulliken.net to receive a copy from typing import Dict, Any diff --git a/src/wyzeapy/payload_factory.py b/src/wyzeapy/payload_factory.py index 1a33ab0..2f01ec6 100644 --- a/src/wyzeapy/payload_factory.py +++ b/src/wyzeapy/payload_factory.py @@ -2,7 +2,7 @@ # You may use, distribute and modify this code under the terms # of the attached license. You should have received a copy of # the license with this file. If not, please write to: -# joshua@mulliken.net to receive a copy +# katie@mulliken.net to receive a copy import time from typing import Any, Dict diff --git a/src/wyzeapy/services/base_service.py b/src/wyzeapy/services/base_service.py index f1c0953..0316d69 100644 --- a/src/wyzeapy/services/base_service.py +++ b/src/wyzeapy/services/base_service.py @@ -2,7 +2,7 @@ # You may use, distribute and modify this code under the terms # of the attached license. You should have received a copy of # the license with this file. If not, please write to: -# joshua@mulliken.net to receive a copy +# katie@mulliken.net to receive a copy import asyncio import json import logging diff --git a/src/wyzeapy/services/bulb_service.py b/src/wyzeapy/services/bulb_service.py index 5cbb13c..3542411 100644 --- a/src/wyzeapy/services/bulb_service.py +++ b/src/wyzeapy/services/bulb_service.py @@ -2,7 +2,7 @@ # You may use, distribute and modify this code under the terms # of the attached license. You should have received a copy of # the license with this file. If not, please write to: -# joshua@mulliken.net to receive a copy +# katie@mulliken.net to receive a copy import logging import re from typing import Any, Dict, Optional, List diff --git a/src/wyzeapy/services/camera_service.py b/src/wyzeapy/services/camera_service.py index 91f55e1..af96e94 100644 --- a/src/wyzeapy/services/camera_service.py +++ b/src/wyzeapy/services/camera_service.py @@ -2,7 +2,7 @@ # You may use, distribute and modify this code under the terms # of the attached license. You should have received a copy of # the license with this file. If not, please write to: -# joshua@mulliken.net to receive a copy +# katie@mulliken.net to receive a copy import asyncio import logging import time diff --git a/src/wyzeapy/services/hms_service.py b/src/wyzeapy/services/hms_service.py index c6f44fa..46c2653 100644 --- a/src/wyzeapy/services/hms_service.py +++ b/src/wyzeapy/services/hms_service.py @@ -2,7 +2,7 @@ # You may use, distribute and modify this code under the terms # of the attached license. You should have received a copy of # the license with this file. If not, please write to: -# joshua@mulliken.net to receive a copy +# katie@mulliken.net to receive a copy from enum import Enum from typing import Optional diff --git a/src/wyzeapy/services/lock_service.py b/src/wyzeapy/services/lock_service.py index 9602326..ec98cb3 100644 --- a/src/wyzeapy/services/lock_service.py +++ b/src/wyzeapy/services/lock_service.py @@ -2,7 +2,7 @@ # You may use, distribute and modify this code under the terms # of the attached license. You should have received a copy of # the license with this file. If not, please write to: -# joshua@mulliken.net to receive a copy +# katie@mulliken.net to receive a copy from .base_service import BaseService from ..types import Device, DeviceTypes diff --git a/src/wyzeapy/services/sensor_service.py b/src/wyzeapy/services/sensor_service.py index 6758ec2..cc38eab 100644 --- a/src/wyzeapy/services/sensor_service.py +++ b/src/wyzeapy/services/sensor_service.py @@ -2,7 +2,7 @@ # You may use, distribute and modify this code under the terms # of the attached license. You should have received a copy of # the license with this file. If not, please write to: -# joshua@mulliken.net to receive a copy +# katie@mulliken.net to receive a copy import asyncio import logging from threading import Thread diff --git a/src/wyzeapy/services/switch_service.py b/src/wyzeapy/services/switch_service.py index 22e6946..eacdc90 100644 --- a/src/wyzeapy/services/switch_service.py +++ b/src/wyzeapy/services/switch_service.py @@ -2,7 +2,7 @@ # You may use, distribute and modify this code under the terms # of the attached license. You should have received a copy of # the license with this file. If not, please write to: -# joshua@mulliken.net to receive a copy +# katie@mulliken.net to receive a copy from typing import List, Dict, Any from .base_service import BaseService diff --git a/src/wyzeapy/services/thermostat_service.py b/src/wyzeapy/services/thermostat_service.py index 2da5c33..7b01063 100644 --- a/src/wyzeapy/services/thermostat_service.py +++ b/src/wyzeapy/services/thermostat_service.py @@ -2,7 +2,7 @@ # You may use, distribute and modify this code under the terms # of the attached license. You should have received a copy of # the license with this file. If not, please write to: -# joshua@mulliken.net to receive a copy +# katie@mulliken.net to receive a copy import logging from enum import Enum from typing import Any, Dict, List diff --git a/src/wyzeapy/services/wall_switch_service.py b/src/wyzeapy/services/wall_switch_service.py index 5c9a06c..7a5e56c 100644 --- a/src/wyzeapy/services/wall_switch_service.py +++ b/src/wyzeapy/services/wall_switch_service.py @@ -2,7 +2,7 @@ # You may use, distribute and modify this code under the terms # of the attached license. You should have received a copy of # the license with this file. If not, please write to: -# joshua@mulliken.net to receive a copy +# katie@mulliken.net to receive a copy import logging from enum import Enum from typing import Any, Dict, List diff --git a/src/wyzeapy/types.py b/src/wyzeapy/types.py index ab83821..ceee069 100644 --- a/src/wyzeapy/types.py +++ b/src/wyzeapy/types.py @@ -2,7 +2,7 @@ # You may use, distribute and modify this code under the terms # of the attached license. You should have received a copy of # the license with this file. If not, please write to: -# joshua@mulliken.net to receive a copy +# katie@mulliken.net to receive a copy from enum import Enum from typing import Union, List, Dict, Any diff --git a/src/wyzeapy/utils.py b/src/wyzeapy/utils.py index fca55db..a256744 100644 --- a/src/wyzeapy/utils.py +++ b/src/wyzeapy/utils.py @@ -2,7 +2,7 @@ # You may use, distribute and modify this code under the terms # of the attached license. You should have received a copy of # the license with this file. If not, please write to: -# joshua@mulliken.net to receive a copy +# katie@mulliken.net to receive a copy import base64 import hashlib from typing import Dict, Any, List, Optional diff --git a/src/wyzeapy/wyze_auth_lib.py b/src/wyzeapy/wyze_auth_lib.py index b940a39..a50b531 100644 --- a/src/wyzeapy/wyze_auth_lib.py +++ b/src/wyzeapy/wyze_auth_lib.py @@ -2,7 +2,7 @@ # You may use, distribute and modify this code under the terms # of the attached license. You should have received a copy of # the license with this file. If not, please write to: -# joshua@mulliken.net to receive a copy +# katie@mulliken.net to receive a copy import asyncio import logging import time diff --git a/tests/__init__.py b/tests/__init__.py index b1540a5..b8adf41 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -2,4 +2,4 @@ # You may use, distribute and modify this code under the terms # of the attached license. You should have received a copy of # the license with this file. If not, please write to: -# joshua@mulliken.net to receive a copy +# katie@mulliken.net to receive a copy diff --git a/tests/test_client.py b/tests/test_client.py index 19b3bdd..42b895d 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -2,7 +2,7 @@ # You may use, distribute and modify this code under the terms # of the attached license. You should have received a copy of # the license with this file. If not, please write to: -# joshua@mulliken.net to receive a copy +# katie@mulliken.net to receive a copy import asyncio import os import time