Hi guys,
Hope you are doing well.
With Codebook, I'm trying by using RD library to build a python script which will resolve a list of companies.
Broadly speaking, the script will parse a list of company name and will return the corresponding RIC or ISIN or Parent ID
Example:
with the list below:
+-----------------------------------------------------------+
| Company name |
+-----------------------------------------------------------+
| Arla Insurance Company (Guernsey) Limited |
+-----------------------------------------------------------+
| Swiss Re Europe S.A. |
+-----------------------------------------------------------+
| Stena Insurance AG |
+-----------------------------------------------------------+
I want to retrieve
+-----------------------------------------------------------+----------------------------+
| Company name | Company permID |
+-----------------------------------------------------------+----------------------------+
| Arla Insurance Company (Guernsey) Limited | 5036231548 |
+-----------------------------------------------------------+----------------------------+
| Swiss Re Europe S.A. | 4295934474 |
+-----------------------------------------------------------+----------------------------+
| Stena Insurance AG | 5000134472 |
+-----------------------------------------------------------+----------------------------+
Can you advice how I can do that?