Skip to content

Commit eaf380b

Browse files
committed
* Fixed a minor issue introduced during migration to github that prevented
the Pythn installer from running. * The REST API endpoint was inadvertently changed back to the old, now defunct, domain.
1 parent 895e456 commit eaf380b

File tree

3 files changed

+61
-5
lines changed

3 files changed

+61
-5
lines changed

ChangeLog

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
2022-01-29 Paul H. Smith paul dot h dot smith at inesonic dot com
22

3-
Initial public release under LGPLv3
3+
Initial public release under LGPLv3.
44

5-
2022-01-29 Paul H. Smith paul dot h dot smith at inesonic dot com
5+
1.0.0 2022-01-29 Paul H. Smith paul dot h dot smith at inesonic dot com
6+
7+
Tagged initial public release under LGPLv3.
8+
9+
1.0.1 2022-01-29 Paul H. Smith paul dot h dot smith at inesonic dot com
10+
11+
* Fixed a minor issue introduced during migration to github that
12+
prevented the Python installer from running.
613

7-
Release 1.0.0
14+
* The REST API endpoint was inadvertently changed back to the old, now
15+
defunct, domain.

README.rst

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
Inesonic SpeedSentry Python API
2+
===============================
3+
This package provides a simple Python API you can use to communicate with
4+
Inesonic SpeedSentry infrastructure. You can use this API to:
5+
6+
* Configure Inesonic SpeedSentry programmatically.
7+
8+
* Query latency, SSL expiration data, and event histories associated with your Inesonic SpeedSentry subscription.
9+
10+
* Pause and resume monitoring.
11+
12+
* Trigger custom events, using Inesonic SpeedSentry to report those events to you.
13+
14+
For details on Inesonic SpeedSentry, please goto https://speed-sentry.com.
15+
16+
Developer Documentation
17+
-----------------------
18+
The API is designed to be simple to use. For details on how to integrate
19+
Inesonic SpeedSentry into your site or project, see
20+
https://speedsentry-documentation.inesonic.com
21+
22+
Supported Python Versions
23+
-------------------------
24+
This API is specifically written to work with Python 3.5 and newer.
25+
26+
Dependencies
27+
------------
28+
The only external dependency required by this module is with the Python
29+
Requests package avaialble at https://pypi.org/project/requests/. If
30+
necessary, the supplied egg should automatically install any required
31+
dependencies.
32+
33+
Installation
34+
------------
35+
To install:
36+
37+
* Clone or download this repository contents.
38+
39+
* Enter the working copy's top level directory.
40+
41+
* Run the command ``python3 setup.py install``.
42+
43+
License And Support
44+
-------------------
45+
This package is licensed under the LGPLv3.
46+
47+
You are welcome to submit patches and/or request new features either through
48+
GitHub or through SpeedSentry's internal support system.

source/speedsentry/speedsentry.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
# Globals:
4040
#
4141

42-
__version__ = "1.0.0"
42+
__version__ = "1.0.1"
4343
"""
4444
The package version number. This version number differs from Inesonic's
4545
standard scheme in order to comply with PEP 440.
@@ -311,7 +311,7 @@ class SpeedSentry(object):
311311
312312
"""
313313

314-
AUTHORITY = "https://rest.speedsentry.inesonic.com"
314+
AUTHORITY = "https://rest.1.speed-sentry.com"
315315
"""
316316
The authority for the customer REST API.
317317

0 commit comments

Comments
 (0)