一行地址提取结构化的省、市、街道信息

jionlp

版本1.5.5

1
pip install jionlp -i https://pypi.douban.com/simple/

使用示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import jionlp as jio

# 基础省市信息的提取

text = '四川省成都市武侯区红牌楼街19号红星大厦9楼2号'
res = jio.parse_location(text)
print(res)

# 自动补全省市信息

text = '武侯区红牌楼街道19号红星大厦9楼2号'
res = jio.parse_location(text)
print(res)

# 街镇乡、村或居委会信息提取

text = '江苏省南通市崇川区陈桥街道33号'
res = jio.parse_location(text,town_village=True)
print(res)

# 自动将旧地名映射为新地名

text = '港闸区陈桥街道33号'
res = jio.parse_location(text, change2new=True, town_village=True)
print(res)