Skip to content

Commit 005590b

Browse files
committed
Migrate to LD lib
1 parent f3878f3 commit 005590b

File tree

106 files changed

+15103
-13121
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+15103
-13121
lines changed

.idea/.gitignore

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Configuration/README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
# Refinitiv Data Library for Python
1+
# LSEG Data Library for Python
22

33
## Summary
44

5-
This repository provides a series examples that demonstrate how to programmatically access content residing within the **Refinitiv Data Platform (RDP)** using a single, ease of use software library called the **Refinitiv Data Library for Python**. This library is supported and maintained by Refinitiv and is available on PyPi at https://pypi.org/project/refinitiv-data/
5+
This repository provides a series examples that demonstrate how to programmatically access content residing within the **London Stock Exchange Group Data Platform (LDP)** using a single, ease of use software library called the **LSEG Data Library for Python**.
6+
This library is supported and maintained by LSEG.
67

78
### **Configuration**
89

9-
This Configuration folder contains the configuration file - ***refinitiv-data.config.json*** - for the Refinitiv Data Library for Python. Before running any of the tutorials, you must modify this file depending on the access channel and connection parameters that you will use to connect to the Refinitiv Data Platform. This necessary configuration step is explained in the [Quick Start guide](https://developers.refinitiv.com/en/api-catalog/refinitiv-data-platform/refinitiv-data-library-for-python/quick-start)
10+
This Configuration folder contains the configuration file - ***lseg-data.config.json*** - for the LSEG Data Library for Python. Before running any of the tutorials, you must modify this file depending on the access channel and connection parameters that you will use to connect to the LSEG Data Platform.
1011

11-
The accompanying tutorials should be used in conjunction with the **Tutorials** and **Documentation** available on the [Refinitiv Developer Portal](https://developers.refinitiv.com/en/api-catalog/refinitiv-data-platform/refinitiv-data-library-for-python)
12+
The accompanying tutorials should be used in conjunction with the **Tutorials** and **Documentation** available on the [LSEG Developer Portal](https://developers.refinitiv.com/en)
Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
1-
{
2-
"logs": {
3-
"level": "debug",
4-
"transports": {
5-
"console": {
6-
"enabled": false
7-
},
8-
"file": {
9-
"enabled": false,
10-
"name": "refinitiv-data-lib.log"
11-
}
12-
}
13-
},
14-
"sessions": {
15-
"default": "platform.rdp",
16-
"platform": {
17-
"rdp": {
18-
"app-key": "YOUR APP KEY GOES HERE!",
19-
"username": "YOUR RDP LOGIN OR MACHINE GOES HERE!",
20-
"password": "YOUR RDP PASSWORD GOES HERE!"
21-
},
22-
"deployed": {
23-
"app-key": "YOUR APP KEY GOES HERE!",
24-
"realtime-distribution-system": {
25-
"url" : "YOUR DEPLOYED HOST:PORT GOES HERE!",
26-
"dacs" : {
27-
"username" : "YOUR DACS ID GOES HERE!",
28-
"application-id" : 256,
29-
"position" : ""
30-
}
31-
}
32-
}
33-
},
34-
"desktop": {
35-
"workspace": {
36-
"app-key": "YOUR APP KEY GOES HERE!"
37-
}
38-
}
39-
}
40-
}
1+
{
2+
"logs": {
3+
"level": "debug",
4+
"transports": {
5+
"console": {
6+
"enabled": false
7+
},
8+
"file": {
9+
"enabled": false,
10+
"name": "lseg-data-lib.log"
11+
}
12+
}
13+
},
14+
"sessions": {
15+
"default": "platform.ldp",
16+
"platform": {
17+
"ldp": {
18+
"app-key": "YOUR APP KEY GOES HERE!",
19+
"username": "YOUR LDP LOGIN OR MACHINE GOES HERE!",
20+
"password": "YOUR LDP PASSWORD GOES HERE!"
21+
},
22+
"deployed": {
23+
"app-key": "YOUR APP KEY GOES HERE!",
24+
"realtime-distribution-system": {
25+
"url" : "YOUR DEPLOYED HOST:PORT GOES HERE!",
26+
"dacs" : {
27+
"username" : "YOUR DACS ID GOES HERE!",
28+
"application-id" : 256,
29+
"position" : ""
30+
}
31+
}
32+
}
33+
},
34+
"desktop": {
35+
"workspace": {
36+
"app-key": "YOUR APP KEY GOES HERE!"
37+
}
38+
}
39+
}
40+
}

Configuration/refinitiv-data.custom.config.json renamed to Configuration/lseg-data.custom.config.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"platform": {
55
"my-custom-session": {
66
"app-key": "YOUR APP KEY GOES HERE!",
7-
"username": "YOUR RDP LOGIN OR MACHINE GOES HERE!",
8-
"password": "YOUR RDP PASSWORD GOES HERE!"
7+
"username": "YOUR LDP LOGIN OR MACHINE GOES HERE!",
8+
"password": "YOUR LDP PASSWORD GOES HERE!"
99
}
1010
}
1111
}
12-
}
12+
}

0 commit comments

Comments
 (0)