Hello,
I know that there have been previous questions on the topic, but the answers did not solve the issue for me. I have a vector of company names from the USPTO.
company_names = df["disambig_assignee_organization"].dropna().tolist()
print(company_names[:10])
Examples of firm names:
'International Business Machines Corporation', 'CANON KABUSHIKI KAISHA', 'Fujitsu Limited',
I tried to use OpenPermID, but it does not return anything.
from OpenPermID import OpenPermID
opid = OpenPermID()
opid.set_access_token("TOKEN") ## My actual token
output,err = opid.match(company_names)
output
print(output) ## Here i just get "None"
response = symbol_conversion.Definition(
symbols=output["Match OpenPermID"].str.split('-').str[1].tolist(),
from_symbol_type=symbol_conversion.SymbolTypes.OA_PERM_ID,
to_symbol_types=[
symbol_conversion.SymbolTypes.RIC
]
).get_data()
response.data.df
Since i get "None" in "Output", the response gives me an error message.
Is there a chance we could retrieve the RICs ?