You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It was throwing errors, but this morning it is saying that patentsview no longer works without an API.
I do have an API though, but do not know how to integrate it into the syntax.
Can you try using the CRAN version of the r package? The code above throws warnings but seems to work using it. My PR for the new version of the API isn't complete, The new version of the API is not complete and the original version of the API is still around. I'm not sure what you'd get with a dev build.
I do have unofficial stuff here https://mustberuss.github.io/patentsview/ but with the new version of the API just about everything is different. . What's on r-universe should work with the new version of the API with rewritten scripts.
Hello Team,
The following style of query used to work perfectly fine for me, but stopped working recently. What is wrong?
query <-
with_qfuns(
and(
gte(patent_date = "2020-01-01"),
lte(patent_date = "2022-12-31"),
begins(cpc_subgroup_id = "H02S")
))
fields <- c("patent_number", "patent_date" ,"assignee_organization")
pv_out <- search_pv(
query = query,
endpoint = "patents",
fields = fields,
all_pages = TRUE)
df <- unnest_pv_data(pv_out$data, "patent_number")
Thanks so much!
The text was updated successfully, but these errors were encountered: