Skip to content

Commit b88b78d

Browse files
committed
0.8.2
1 parent 8e36c17 commit b88b78d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
# The short X.Y version.
5555
version = '0.8'
5656
# The full version, including alpha/beta/rc tags.
57-
release = '0.8.0'
57+
release = '0.8.2'
5858

5959
# The language for content autogenerated by Sphinx. Refer to documentation
6060
# for a list of supported languages.

docs/source/predictionio.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The SDK comprises of two clients:
1010
and extract prediction results.
1111

1212
Please read `PredictionIO Quick Start
13-
<http://docs.prediction.io/0.8.0/tutorials/engines/quickstart.html>`_ for
13+
<http://docs.prediction.io/0.8.2/recommendation/quickstart.html>`_ for
1414
detailed explanation.
1515

1616
predictionio.EventClient Class
@@ -104,7 +104,7 @@ status at a later time to minimize run time.
104104
For example, to import 100000 of user records::
105105

106106
>>> # generate 100000 asynchronous requests and store the AsyncRequest objects
107-
>>> event_client = EventClient(app_id=1)
107+
>>> event_client = EventClient(access_key=<YOUR_ACCESS_KEY>)
108108
>>> for i in range(100000):
109109
>>> event_client.aset_user(user_record[i].uid)
110110
>>>

predictionio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def __init__(self, access_key,
172172
threads=1, qsize=0, timeout=5):
173173
assert type(access_key) is str, ("access_key must be string. "
174174
"Notice that app_id has been deprecated in Prediction.IO 0.8.2. "
175-
"Please use access_key instead")
175+
"Please use access_key instead.")
176176

177177
super(EventClient, self).__init__(url, threads, qsize, timeout)
178178

0 commit comments

Comments
 (0)