Skip to content

Commit

Permalink
Update name in repo
Browse files Browse the repository at this point in the history
  • Loading branch information
SecKatie committed Mar 19, 2024
1 parent ce8e523 commit 6ea8ae5
Show file tree
Hide file tree
Showing 23 changed files with 38 additions and 38 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2021 Mulliken, LLC <joshua@mulliken.net>
# SPDX-FileCopyrightText: 2021 Mulliken, LLC <katie@mulliken.net>
#
# SPDX-License-Identifier: GPL-3.0-only

Expand Down
8 changes: 4 additions & 4 deletions .reuse/dep5
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: wyzeapy
Upstream-Contact: Mulliken LLC <joshua@mulliken.net>
Upstream-Contact: Mulliken LLC <katie@mulliken.net>
Source: https://github.com/JoshuaMulliken/wyzeapy

# Sample paragraph, commented out:
Expand All @@ -9,13 +9,13 @@ Source: https://github.com/JoshuaMulliken/wyzeapy
# Copyright: $YEAR $NAME <$CONTACT>
# License: ...
Files: src/*
Copyright: 2021 Mulliken, LLC <joshua@mulliken.net>
Copyright: 2021 Mulliken, LLC <katie@mulliken.net>
License: GPL-3.0-only

Files: docs/*
Copyright: 2021 Mulliken, LLC <joshua@mulliken.net>
Copyright: 2021 Mulliken, LLC <katie@mulliken.net>
License: GPL-3.0-only

Files: tests/*
Copyright: 2021 Mulliken, LLC <joshua@mulliken.net>
Copyright: 2021 Mulliken, LLC <katie@mulliken.net>
License: GPL-3.0-only
26 changes: 13 additions & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
SPDX-FileCopyrightText: 2021 Joshua Mulliken <joshua@mulliken.net>
SPDX-FileCopyrightText: 2021 Katie Mulliken <katie@mulliken.net>
SPDX-License-Identifier: GPL-3.0-only
-->
Expand All @@ -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 <joshua@mulliken.net> - Joe Schubert
da4455 - Utilize an update_manager to alleviate load on wyze's api (#1)Co-authored-by: Katie Mulliken <katie@mulliken.net> - 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

- - -
Expand All @@ -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


- - -
Expand All @@ -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


- - -
Expand All @@ -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


- - -
Expand All @@ -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

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
SPDX-FileCopyrightText: 2021 Mulliken, LLC <joshua@mulliken.net>
SPDX-FileCopyrightText: 2021 Mulliken, LLC <katie@mulliken.net>
SPDX-License-Identifier: GPL-3.0-only
-->
Expand Down
2 changes: 1 addition & 1 deletion src/wyzeapy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/wyzeapy/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/wyzeapy/crypto.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/wyzeapy/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
2 changes: 1 addition & 1 deletion src/wyzeapy/payload_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/wyzeapy/services/base_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/wyzeapy/services/bulb_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/wyzeapy/services/camera_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/wyzeapy/services/hms_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/wyzeapy/services/lock_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/wyzeapy/services/sensor_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/wyzeapy/services/switch_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/wyzeapy/services/thermostat_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/wyzeapy/services/wall_switch_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/wyzeapy/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/wyzeapy/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/wyzeapy/wyze_auth_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6ea8ae5

Please sign in to comment.