Skip to content

Commit

Permalink
Remove copy pasta from __init__. Reword readme to use imperative voic…
Browse files Browse the repository at this point in the history
…e and fix comma splice. Remove redundant license notice.
  • Loading branch information
jaraco committed Oct 11, 2022
1 parent afc5929 commit bb7468c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 28 deletions.
12 changes: 4 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,16 @@
:target: https://blog.jaraco.com/skeleton

A thin Python library for the Abode alarm API.
Only compatible with Python 3+

Disclaimer:
~~~~~~~~~~~~~~~
Published under the MIT license - See LICENSE file for more details.

"Abode" is a trademark owned by Abode Systems Inc., see www.goabode.com for more information.
I am in no way affiliated with Abode.
"Abode" is a trademark owned by Abode Systems, Inc.; see www.goabode.com for
more information.

Thank you Abode for having a relatively simple API to reverse engineer. Hopefully in the future you'll
open it up for official use.
Thanks to Abode for having a relatively simple API to reverse engineer. Maybe in the future Abode will open it up for official use.

API calls faster than 60 seconds is not recommended as it can overwhelm Abode's servers. Leverage the cloud push
event notification functionality as much as possible. Please use this module responsibly.
API calls faster than 60 seconds is not recommended as it can overwhelm Abode's servers. Leverage the cloud push event notification functionality as much as possible. Please use this module responsibly.

Installation
============
Expand Down
21 changes: 1 addition & 20 deletions abodepy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,5 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""
abodepy by Wil Schrader - An Abode alarm Python library.
https://github.com/MisterWil/abodepy
Influenced by blinkpy, because I'm a python noob:
https://github.com/fronzbot/blinkpy/
Published under the MIT license - See LICENSE file for more details.
"Abode" is a trademark owned by Abode Systems Inc., see www.goabode.com for
more information. I am in no way affiliated with Abode.
Thank you Abode for having a relatively simple API to reverse engineer.
Hopefully in the future you'll open it up for official use.
API calls faster than 60 seconds is not recommended as it can overwhelm
Abode's servers. Leverage the cloud push event notification functionality as
much as possible. Please use this module responsibly.
An Abode alarm Python library.
"""

import json
Expand Down

0 comments on commit bb7468c

Please sign in to comment.