1
1
# adafruit-io
2
2
3
- A [ Python] [ 1 ] client for use with with [ io.adafruit.com] [ 2 ] . Compatible with
4
- both Python 2 and Python 3.
3
+ A [ Python] ( https://www.python.org/ ) client for use with with [ io.adafruit.com] ( https://io.adafruit.com ) . Compatible with both Python 2 and Python 3.
5
4
6
5
## Installation
7
6
@@ -26,7 +25,7 @@ in a terminal and run the following command:
26
25
27
26
## Usage
28
27
29
- You must have an [ Adafruit IO key] [ 4 ] to use this library and the Adafruit IO service.
28
+ You must have an [ Adafruit IO key] ( https://learn.adafruit.com/adafruit-io/api-key ) to use this library and the Adafruit IO service.
30
29
Your API key will be provided to the python library so it can authenticate your
31
30
requests against the Adafruit IO service.
32
31
@@ -110,6 +109,7 @@ pydoc Adafruit_IO.client
110
109
pydoc Adafruit_IO.mqtt_client
111
110
pydoc Adafruit_IO.model
112
111
pydoc Adafruit_IO.errors
112
+ ```
113
113
114
114
## Table of Contents
115
115
@@ -137,7 +137,7 @@ pydoc Adafruit_IO.errors
137
137
138
138
### Feeds
139
139
140
- [Feeds][3] are the core of the Adafruit IO system. The feed holds metadata about data
140
+ [ Feeds] ( https://learn.adafruit.com/adafruit-io/feeds ) are the core of the Adafruit IO system. The feed holds metadata about data
141
141
that gets pushed, and you will have one feed for each type of data you send to
142
142
the system. You can have separate feeds for each sensor in a project, or you can
143
143
use one feed to contain JSON encoded data for all of your sensors.
@@ -379,7 +379,7 @@ TBD: Document using the MQTT client. For now see the [examples\mqtt_client.py](
379
379
380
380
### Groups
381
381
382
- Groups allow you to update and retrieve multiple feeds with one request. You can
382
+ [ Groups] ( https://learn.adafruit.com/adafruit-io/groups ) allow you to update and retrieve multiple feeds with one request. You can
383
383
add feeds to multiple groups.
384
384
385
385
#### Group Creation
@@ -450,9 +450,3 @@ aio.delete_group('GroupTest')
450
450
451
451
## License
452
452
Copyright (c) 2014 Adafruit Industries. Licensed under the MIT license.
453
-
454
- [ 1 ] : https://www.python.org/
455
- [ 2 ] : https://io.adafruit.com
456
- [ 3 ] : https://learn.adafruit.com/adafruit-io/feeds
457
- [ 4 ] : https://learn.adafruit.com/adafruit-io/api-key
458
- [ 5 ] : https://learn.adafruit.com/adafruit-io/groups
0 commit comments