├── README.md ├── bing_search ├── bing_search_name.py ├── combine_db_tables.py └── process_search_result.py ├── clean_name ├── compustat_process_name.py ├── dict_char_replace.json ├── patentsview_process_name.py └── sdc_process_name.py ├── match ├── link_pv2compustat.py └── link_pv2sdc.py └── my_own_handy_functions.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielm-github/patentsmatch_bingsearchapproach/HEAD/README.md -------------------------------------------------------------------------------- /bing_search/bing_search_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielm-github/patentsmatch_bingsearchapproach/HEAD/bing_search/bing_search_name.py -------------------------------------------------------------------------------- /bing_search/combine_db_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielm-github/patentsmatch_bingsearchapproach/HEAD/bing_search/combine_db_tables.py -------------------------------------------------------------------------------- /bing_search/process_search_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielm-github/patentsmatch_bingsearchapproach/HEAD/bing_search/process_search_result.py -------------------------------------------------------------------------------- /clean_name/compustat_process_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielm-github/patentsmatch_bingsearchapproach/HEAD/clean_name/compustat_process_name.py -------------------------------------------------------------------------------- /clean_name/dict_char_replace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielm-github/patentsmatch_bingsearchapproach/HEAD/clean_name/dict_char_replace.json -------------------------------------------------------------------------------- /clean_name/patentsview_process_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielm-github/patentsmatch_bingsearchapproach/HEAD/clean_name/patentsview_process_name.py -------------------------------------------------------------------------------- /clean_name/sdc_process_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielm-github/patentsmatch_bingsearchapproach/HEAD/clean_name/sdc_process_name.py -------------------------------------------------------------------------------- /match/link_pv2compustat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielm-github/patentsmatch_bingsearchapproach/HEAD/match/link_pv2compustat.py -------------------------------------------------------------------------------- /match/link_pv2sdc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielm-github/patentsmatch_bingsearchapproach/HEAD/match/link_pv2sdc.py -------------------------------------------------------------------------------- /my_own_handy_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielm-github/patentsmatch_bingsearchapproach/HEAD/my_own_handy_functions.py --------------------------------------------------------------------------------