Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
selva221724 committed Apr 11, 2022
1 parent 8c9c3a0 commit 9e57e79
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,19 @@ parsedAddress2 = parser.runParser("Washington, DC 20500, USA") #will be faster a
parsedAddress3 = parser.runParser(" 20500, USA") #will be faster as usual
parsedAddress4 = parser.runParser("Pennsylvania Avenue NW, Washington,") #will be faster as usual
```
### 2. Expand the Address
```python
expandAddress = parser.expandTheAddress("District Science Cntr, Kokkirakulam Rd, Tirunelveli, TamilNadu 627009")
print(expandAddress)
```
output
```sh
['district science center kokkirakulam road tirunelveli tamilnadu 627009',
'district science connector kokkirakulam road tirunelveli tamilnadu 627009']
```


### 2. Terminate Address Parser Object
### 3. Terminate Address Parser Object
```python
parser.terminateParser()
```
Expand Down

0 comments on commit 9e57e79

Please sign in to comment.