You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This library queries the API of GLEIF.org to return data about a specific entity company. The result is typed using `Pydantic` It is also possible to search for organisation id to find LEI codes and also to get child notes for a specific LEI code.
3
+
This library uses Python to query the GLEIF.org's API. Currently, the library supports:
4
+
- Fetching data for a specific API
5
+
- Searching for a LEI using an organisation number
6
+
7
+
The library is strictly typed using [`Pydantic`](https://github.com/pydantic/pydantic).
8
+
9
+
### Example: fetching data for a specific LEI:
10
+
11
+
```python
12
+
from pygleif import PyGleif
13
+
14
+
gleif_response = PyGleif("549300MLUDYVRQOOXS22")
15
+
16
+
# Print the name of the company with the LEI above
0 commit comments