Skip to content

Commit 75b57f1

Browse files
author
brentru
committed
fixing documentation errors, travis
1 parent 2b66bbb commit 75b57f1

File tree

7 files changed

+4
-5
lines changed

7 files changed

+4
-5
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ before_install:
1313
#pip install -r requirements.txt
1414

1515
install:
16+
- python setup.py install
1617
- pip install pylint Sphinx sphinx-rtd-theme
1718
- pip install .
1819

docs/api-examples.rst

Whitespace-only changes.

docs/data.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Data can be created after you create a feed, by using the ``create_data(feed, da
1717
aio.create_data('Test', data)
1818
1919
Data Retrieval
20-
~~~~~~~~~~~~~
20+
~~~~~~~~~~~~~~~
2121
You can get all of the data for a feed by using the ``data(feed)`` method. The result will be an array of all feed data, each returned as an instance of the Data class. Use the value property on each Data instance to get the data value, and remember values are always returned as strings (so you might need to convert to an int or number if you expect a numeric value).
2222

2323
.. code-block:: python
@@ -50,7 +50,7 @@ Values can be deleted by using the ``delete(feed, data_id)`` method:
5050
data = aio.delete('Test', 1)
5151
5252
Data Helper methods
53-
---------------
53+
--------------------
5454
There are a few helper methods that can make interacting with data a bit easier.
5555

5656
Send Data
@@ -87,6 +87,7 @@ Receive Data
8787
You can get the last inserted value by using the ``receive(feed)`` method.
8888

8989
.. code-block:: python
90+
9091
# Import library and create instance of REST client.
9192
from Adafruit_IO import Client
9293
aio = Client('YOUR ADAFRUIT IO USERNAME', 'YOUR ADAFRUIT IO KEY')

docs/examples.rst

Whitespace-only changes.

docs/index.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ Table of Contents
1515
:maxdepth: 7
1616

1717
quickstart
18-
io-basics-examples
19-
api-examples
20-
mqtt-examples
2118

2219

2320
.. toctree::

docs/io-basics-examples.rst

Whitespace-only changes.

docs/mqtt-examples.rst

Whitespace-only changes.

0 commit comments

Comments
 (0)