SYMBOL INDEX (86 symbols across 13 files) FILE: addressparser/__init__.py function convert_to_unicode (line 31) | def convert_to_unicode(text): function _data_from_csv (line 43) | def _data_from_csv(): function _fill_province_area_map (line 76) | def _fill_province_area_map(province_area_map, record_dict): function _fill_area_map (line 116) | def _fill_area_map(area_map, record_dict): function _fill_city_map (line 144) | def _fill_city_map(city_map, record_dict): function _fill_province_map (line 169) | def _fill_province_map(province_map, record_dict): function is_munis (line 208) | def is_munis(city_full_name): function transform (line 228) | def transform(location_strs, umap=myumap, index=[], cut=False, lookahead... function _handle_one_record (line 264) | def _handle_one_record(addr, umap, cut, lookahead, pos_sensitive, open_w... function _fill_province (line 288) | def _fill_province(pca): function _fill_city (line 294) | def _fill_city(pca, umap, open_warning): function _extract_addr (line 323) | def _extract_addr(addr, cut, lookahead): function _jieba_extract (line 334) | def _jieba_extract(addr): function _full_text_extract (line 370) | def _full_text_extract(addr, lookahead): FILE: addressparser/__main__.py function parse (line 13) | def parse(addresses, cut=False): function main (line 31) | def main(**kwargs): function run (line 56) | def run(): FILE: addressparser/drawer.py function _base_input_check (line 11) | def _base_input_check(locations): function _geo_update (line 23) | def _geo_update(geo): function draw_locations (line 27) | def draw_locations(locations, file_path): function echarts_draw (line 53) | def echarts_draw(locations, file_path, title="地域分布图", subtitle="location... function echarts_cate_draw (line 80) | def echarts_cate_draw(locations, labels, file_path, title="地域分布图", subti... FILE: addressparser/exceptions.py class CPCAException (line 7) | class CPCAException(Exception): class PlaceTypeNotExistException (line 11) | class PlaceTypeNotExistException(CPCAException): class InputTypeNotSuportException (line 15) | class InputTypeNotSuportException(CPCAException): FILE: addressparser/structures.py class AddrMap (line 13) | class AddrMap(defaultdict): method __init__ (line 16) | def __init__(self): method get_full_name (line 19) | def get_full_name(self, key): method is_unique_value (line 22) | def is_unique_value(self, key): method get_relational_addrs (line 29) | def get_relational_addrs(self, key): method get_value (line 32) | def get_value(self, key, pos): method append_relational_addr (line 36) | def append_relational_addr(self, key, pca_tuple, full_name_pos): class Pca (line 42) | class Pca(object): method __init__ (line 43) | def __init__(self, province='', city='', area='', province_pos=-1, cit... method propertys_dict (line 51) | def propertys_dict(self, pos_sensitive): method __repr__ (line 65) | def __repr__(self): FILE: examples/cmd_demo.py function parse (line 13) | def parse(addresses): FILE: tests/test_area.py function test_error_area (line 12) | def test_error_area(): FILE: tests/test_base.py function assert_addr (line 10) | def assert_addr(addr_df, pos_sensitive=False): function test_transform (line 28) | def test_transform(): function test_data_from_csv (line 48) | def test_data_from_csv(): function test_fill_province (line 67) | def test_fill_province(): function test_fill_city_1 (line 74) | def test_fill_city_1(): function test_jieba_extract (line 80) | def test_jieba_extract(): function test_jieba_extract2 (line 91) | def test_jieba_extract2(): function test_jieba_extract3 (line 103) | def test_jieba_extract3(): function test_full_text_extract0 (line 115) | def test_full_text_extract0(): function test_full_text_extract1 (line 128) | def test_full_text_extract1(): function test_full_text_extract2 (line 141) | def test_full_text_extract2(): function test_full_text_extract3 (line 154) | def test_full_text_extract3(): function test_full_text_extract4 (line 167) | def test_full_text_extract4(): function test_full_text_extract5 (line 180) | def test_full_text_extract5(): function test_full_text_extract6 (line 193) | def test_full_text_extract6(): function test_handle_one_record1 (line 205) | def test_handle_one_record1(): function test_handle_one_record2 (line 218) | def test_handle_one_record2(): function test_handle_one_record3 (line 231) | def test_handle_one_record3(): FILE: tests/test_city.py function string_dataframe (line 12) | def string_dataframe(df): function test_simple_area (line 19) | def test_simple_area(): function test_city_detail (line 39) | def test_city_detail(): function test_city_detail_1 (line 45) | def test_city_detail_1(): function test_city_detail_2 (line 51) | def test_city_detail_2(): function test_city_detail_3 (line 57) | def test_city_detail_3(): function test_predict_city (line 62) | def test_predict_city(): function test_predict_province (line 76) | def test_predict_province(): function test_error_city_jilin (line 90) | def test_error_city_jilin(): function test_error_city_hainan (line 103) | def test_error_city_hainan(): FILE: tests/test_cut.py function test_cut (line 13) | def test_cut(): function test_cut_with_dict (line 23) | def test_cut_with_dict(): function test_cut_custom_dict (line 44) | def test_cut_custom_dict(): FILE: tests/test_drawer.py function test_draw_locations (line 14) | def test_draw_locations(): function test_echarts_draw (line 19) | def test_echarts_draw(): function test_echarts_cate_draw (line 25) | def test_echarts_cate_draw(): FILE: tests/test_province.py function test_error_province (line 12) | def test_error_province(): function test_place (line 41) | def test_place(): FILE: tests/test_structures.py class TestAddrMap (line 9) | class TestAddrMap(object): method setup_class (line 17) | def setup_class(cls): method test_get_full_name (line 25) | def test_get_full_name(self): method test_get_relational_addrs (line 30) | def test_get_relational_addrs(self): method test_in (line 35) | def test_in(self): method test_is_unique_value (line 38) | def test_is_unique_value(self): method test_get_value (line 43) | def test_get_value(self): class TestPca (line 48) | class TestPca(object): method setup_class (line 53) | def setup_class(cls): method _assert (line 58) | def _assert(self, p_name, assert_name): method test_province (line 66) | def test_province(self): method test_propertys_dict (line 71) | def test_propertys_dict(self):