You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17-17Lines changed: 17 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,15 @@
1
1
# adafruit-io
2
2
3
-
A [Python](https://www.python.org/) client for use with with [io.adafruit.com](https://io.adafruit.com). Compatible with both Python 2.7+ and Python 3.3+.
3
+
A [Python](https://www.python.org/) client for use with [io.adafruit.com](https://io.adafruit.com). Compatible with both Python 2.7+ and Python 3.3+.
4
4
5
5
## Installation
6
6
7
7
### Easy Installation
8
8
9
9
**NOTE: MODULE IS NOT YET ON PYPA SO THIS DOES NOT WORK YET. SKIP TO MANUAL INSTALL BELOW.**
10
10
11
-
If you have [pip installed](https://pip.pypa.io/en/latest/installing.html)
12
-
(typically with ````apt-get install python-pip```` on a Debian/Ubuntu-based
11
+
If you have [pip installed](https://pip.pypa.io/en/latest/installing.html)
12
+
(typically with ````apt-get install python-pip```` on a Debian/Ubuntu-based
13
13
system) then run:
14
14
15
15
sudo pip install adafruit-io
@@ -25,7 +25,7 @@ in a terminal and run the following command:
25
25
26
26
### Raspberry Pi SSL Note
27
27
28
-
Note on a Raspberry Pi with Python 2.7.3 you might see warnings like:
28
+
On a Raspberry Pi with Python 2.7.3 you might see warnings like:
29
29
30
30
InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
31
31
@@ -42,7 +42,7 @@ Restart the Pi and you should see the warnings disappear.
42
42
## Usage
43
43
44
44
You must have an [Adafruit IO key](https://learn.adafruit.com/adafruit-io/api-key) to use this library and the Adafruit IO service.
45
-
Your API key will be provided to the python library so it can authenticate your
45
+
Your API key will be provided to the python library so it can authenticate your
46
46
requests against the Adafruit IO service.
47
47
48
48
At a high level the Adafruit IO python client provides two interfaces to the
@@ -51,7 +51,7 @@ service:
51
51
* A thin wrapper around the REST-based API. This is good for simple request and
52
52
response applications like logging data.
53
53
54
-
* A MQTT client (based on [paho-mqtt](https://pypi.python.org/pypi/paho-mqtt))
54
+
* A MQTT client (based on [paho-mqtt](https://pypi.python.org/pypi/paho-mqtt))
55
55
which can publish and subscribe to feeds so it is immediately alerted of changes.
56
56
This is good for applications which need to know when something has changed as
0 commit comments