Skip to content

Commit 1bbfe86

Browse files
committed
Fix bugs in README
1 parent 9900d50 commit 1bbfe86

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

README.md

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# adafruit-io
22

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.
54

65
## Installation
76

@@ -26,7 +25,7 @@ in a terminal and run the following command:
2625

2726
## Usage
2827

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.
3029
Your API key will be provided to the python library so it can authenticate your
3130
requests against the Adafruit IO service.
3231

@@ -110,6 +109,7 @@ pydoc Adafruit_IO.client
110109
pydoc Adafruit_IO.mqtt_client
111110
pydoc Adafruit_IO.model
112111
pydoc Adafruit_IO.errors
112+
```
113113

114114
## Table of Contents
115115

@@ -137,7 +137,7 @@ pydoc Adafruit_IO.errors
137137

138138
### Feeds
139139

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
141141
that gets pushed, and you will have one feed for each type of data you send to
142142
the system. You can have separate feeds for each sensor in a project, or you can
143143
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](
379379

380380
### Groups
381381

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
383383
add feeds to multiple groups.
384384

385385
#### Group Creation
@@ -450,9 +450,3 @@ aio.delete_group('GroupTest')
450450

451451
## License
452452
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

Comments
 (0)