Skip to content

Commit 2ecd490

Browse files
committed
change log:
1. Update api endpoint 2. Fix bug typo 3. Add rebrand information
1 parent 2d19b0b commit 2ecd490

13 files changed

+1021
-931
lines changed

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2018 Refinitiv
1+
Copyright 2020 Refinitiv
22

33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.

notebook/trkd_authentication.ipynb

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
"This is an example project that shows how to implement RKD HTTP JSON client with Python programming lanugage in Jupyter Notebook.\n",
1515
"\n",
1616
"### RKD JSON application implementation process\n",
17-
"The JSON application requires the following steps to consume data from TRKD API services\n",
17+
"The JSON application requires the following steps to consume data from RKD API services\n",
1818
"1. Authentication with RKD Authentication service to get an authen token\n",
19-
"2. Send a request message with the required input information and authen token to the interested TRKD service"
19+
"2. Send a request message with the required input information and authen token to the interested RKD service"
2020
]
2121
},
2222
{
@@ -74,11 +74,11 @@
7474
"metadata": {},
7575
"outputs": [],
7676
"source": [
77-
"# Input your TRKD credentials here\n",
77+
"# Input your RKD credentials here\n",
7878
"\n",
79-
"username = \"\"\n",
80-
"password = \"\"\n",
81-
"appid = \"\""
79+
"username = ''\n",
80+
"password = ''\n",
81+
"appid = ''"
8282
]
8383
},
8484
{
@@ -101,7 +101,7 @@
101101
"##### RKD Service Token URL and Header\n",
102102
"\n",
103103
"The URL enponint for the RKD Service Token is following:\n",
104-
"[https://api.trkd.thomsonreuters.com/api/TokenManagement/TokenManagement.svc/REST/Anonymous/TokenManagement_1/CreateServiceToken_1](https://api.trkd.thomsonreuters.com/api/TokenManagement/TokenManagement.svc/REST/Anonymous/TokenManagement_1/CreateServiceToken_1)\n",
104+
"[https://api.rkd.refinitiv.com/api/TokenManagement/TokenManagement.svc/REST/Anonymous/TokenManagement_1/CreateServiceToken_1](https://api.rkd.refinitiv.com/api/TokenManagement/TokenManagement.svc/REST/Anonymous/TokenManagement_1/CreateServiceToken_1)\n",
105105
"\n",
106106
"Header: \n",
107107
"- Content-type = application/json;charset=utf-8\n",
@@ -145,21 +145,21 @@
145145
"metadata": {},
146146
"outputs": [],
147147
"source": [
148-
"# TRKD Authentication Post Request message\n",
148+
"# RKD Authentication Post Request message\n",
149149
"\n",
150150
"authenMsg = {'CreateServiceToken_Request_1': {'ApplicationID': appid, 'Username': username, 'Password': password}}"
151151
]
152152
},
153153
{
154154
"cell_type": "code",
155-
"execution_count": null,
155+
"execution_count": 1,
156156
"metadata": {},
157157
"outputs": [],
158158
"source": [
159-
"# TRKD Authentication Service URL\n",
159+
"# RKD Authentication Service URL\n",
160160
"\n",
161161
"authenURL = (\n",
162-
" 'https://api.trkd.thomsonreuters.com/api/'\n",
162+
" 'https://api.rkd.refinitiv.com/api/'\n",
163163
" 'TokenManagement/TokenManagement.svc/REST/'\n",
164164
" 'Anonymous/TokenManagement_1/CreateServiceToken_1'\n",
165165
")"
@@ -171,7 +171,7 @@
171171
"metadata": {},
172172
"outputs": [],
173173
"source": [
174-
"# TRKD Authentication Request headers\n",
174+
"# RKD Authentication Request headers\n",
175175
"\n",
176176
"authen_headers = {'content-type': 'application/json;charset=utf-8'}"
177177
]
@@ -182,7 +182,7 @@
182182
"metadata": {},
183183
"outputs": [],
184184
"source": [
185-
"print('############### Sending Authentication request message to TRKD ###############')"
185+
"print('############### Sending Authentication request message to RKD ###############')"
186186
]
187187
},
188188
{
@@ -241,8 +241,8 @@
241241
"For further details, please check out the following resources:\n",
242242
"* [Refinitiv Knowledge Direct API page](https://developers.refinitiv.com/thomson-reuters-knowledge-direct-trkd) on the [Refinitiv Developer Community](https://developers.refinitiv.com) web site.\n",
243243
"* [Refinitiv Knowledge Direct API Catalog](https://www.trkd.thomsonreuters.com/SupportSite/RequestBuilder/requestbuilder.aspx) web site.\n",
244-
"* TRKD Article: [How to implement TRKD JSON application with Python chapter 1: the basic](https://developers.refinitiv.com/article/how-implement-trkd-json-application-python-chapter-1-basic)\n",
245-
"* [TRKD Tutorial](https://developers.refinitiv.com/thomson-reuters-knowledge-direct-trkd/thomson-reuters-knowledge-direct-api-trkd-api/learning).\n",
244+
"* RKD Article: [How to implement RKD JSON application with Python chapter 1: the basic](https://developers.refinitiv.com/article/how-implement-trkd-json-application-python-chapter-1-basic)\n",
245+
"* [RKD Tutorial](https://developers.refinitiv.com/thomson-reuters-knowledge-direct-trkd/thomson-reuters-knowledge-direct-api-trkd-api/learning).\n",
246246
"\n",
247247
"For any question related to this tutorial or RKD API, please use the Developer Community [Q&A Forum](https://community.developers.refinitiv.com/spaces/51/view.html)."
248248
]

notebook/trkd_timeseries_interday.ipynb

Lines changed: 49 additions & 53 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)