-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor package to be imported as a single package #37
Conversation
…ng throughout, complete first pass for logic issues
@Benehiko I'll make another logic pass today just to make sure there's nothing else I didn't catch. I also need to verify that all the README items were properly transferred back to this fork. Feel free to reach out if you have any questions in the meantime. |
reolink_api/config_handler.py
Outdated
|
||
|
||
class ConfigHandler: | ||
camera_settings = {} | ||
|
||
@staticmethod | ||
def load() -> yaml or None: | ||
def load() -> Optional[Dict]: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Noting here that Optional[]
essentially is the same as or None
reolink_api/api_handler.py
Outdated
@@ -69,7 +75,10 @@ def login(self) -> bool: | |||
print(self.token) | |||
return False | |||
else: | |||
print("Failed to login\nStatus Code:", response.status_code) | |||
# TODO: Verify this change w/ owner. Delete old code if acceptable. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pointing out this change here.
reolink_api/recording.py
Outdated
""" | ||
'https://support.reolink.com/hc/en-us/articles/360007010473-How-to-Live-View-Reolink-Cameras-via-VLC-Media-Player' | ||
Blocking function creates a generator and returns the frames as it is spawned | ||
:param profile: profile is "main" or "sub" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was unused.
@barretobrock Looking good! I'll go through it later this weekend and do the merge. Maybe we should change the package name to |
@Benehiko even better! I'm wrapping up my second & final logic pass so I'll add the package new change with that. |
Restored `requirements.txt` Updated `setup.py` to include new repository url and contact details. Moved the rtsp code from `record` to `stream`. Updated project structure to make it more readable and developer friendly - moved mixins to the `mixins` package, moved handlers to the `handlers` package. Moved files not belonging to anything in particular to the `util` package. Updated `camera` class to also defer login call. Deleted unused files like `config_handler`.
@barretobrock I have added some changes as well to the project structure and file names. I went through the changes made and it looks good to me :) I have added @themoosman to just review it as well See commit 2b3e142 |
For PyPi not so much, but for other developers wanting to contribute it might be a good idea. I do agree with you about having one place to maintain the requirements. Not sure if |
Would be quite useful having a prop, the reason for the |
Oh that's nice! I do agree that whatever approach should be one that most developers are already familiar with. Personally, I work mainly with requirements files, since it's easier to just swap the production requirements file with a QA version that's has more bleeding-edge versions on it. I'm not sure if this is the best approach, but in the past I've just read that file into |
I second keeping |
I just did some quick tests and everything looks good. LGTM |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See my comments.
LGTM
@barretobrock @themoosman updated pypi as well https://pypi.org/project/reolinkapi/ |
The aim of this refactoring is to ultimately have a single package to import when pip installing the package to a new environment. Currently, pip installing the package results in multiple modules being created (see issue #36 for more details)
Noting some of the major changes that took place during this refactoring:
reolink_api
directorysetup.py
changed toreolink_api
fromreolink-api
to allow for import in Python (hyphenated names result in error)float
is used quite extensively, as opposed toint
. This is the recommended method asint
is implied infloat
more info hereDict
is used overdict
. This generic type will allow for better-defined dictionary types in the future, if so desired.tests
directory to eventually establish a more robust testing routine for all submodules.download.py
- handles downloading motion video filesmotion.py
- queries camera for motion events (and their video files) during a specified window