Skip to content

Commit 95d2926

Browse files
author
Jirapongse Phuriphanvichai
authored
Update README.md
1 parent 426d440 commit 95d2926

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ It uses the default values of the **format** and **orient** parameters, so the r
8383
- **Call the lookup method to retrieve the entity information of the 1-5064690523 PermID with the 'column' orient parameter**
8484

8585
```Python
86-
df,err = opid.lookup("1-5064690523", orient="column")
86+
output,err = opid.lookup("1-5064690523", orient="column")
8787
```
8888
The returned result is a data frame with the column orient.
8989

@@ -261,7 +261,7 @@ LocalID,Standard Identifier,Name,Country,Street,City,PostalCode,State,Website
261261
8,Ticker:FB&&Exchange:NSM,,,,,,,
262262
9,Ticker:AAPL&&MIC:XNGS,,,,,,,
263263
"""
264-
output,err = opid.match(inputStr)
264+
output,err = opid.match(organization)
265265
```
266266
The returned result is a data frame.
267267

@@ -505,7 +505,7 @@ calais(text, language='English', contentType='raw', outputFormat='json')
505505
This function returns a tuple containing a result and error string. The result could be a JSON, RDF or N-Triples string depending on the **outputFormat** parameter.
506506

507507

508-
- **Call calais to tag the raw text**
508+
- **Call the calais method to tag the raw text**
509509
```Python
510510
raw_text ="""
511511
TOKYO (Reuters) - Financial markets reeled on Thursday as stocks dived and oil slumped after U.S. President Donald Trump took the dramatic step of banning travel from Europe to stem the spread of coronavirus, threatening more disruptions to trade and the world economy.
@@ -620,7 +620,7 @@ The returned result is a JSON string.
620620
},
621621
...
622622
```
623-
- **Call calais to tag the raw text and return an RDF string**
623+
- **Call the calais method to tag the raw text and return an RDF string**
624624
```
625625
output,err = opid.calais(raw_text, outputFormat='rdf')
626626
```

0 commit comments

Comments
 (0)