Questions tagged [google-patent-search]
18 questions
6
votes
2 answers
Error : in a frame because it set 'X-Frame-Options' to 'sameorigin'
I got the following error when I implement patent search google in iframe.
in a frame because it set 'X-Frame-Options' to 'sameorigin'.
document.getElementById("go_search").onclick = function() {
myFunction();
};
function myFunction() {
…

Maths RkBala
- 2,207
- 3
- 18
- 21
2
votes
1 answer
Google patents scraping with Beautiful Soup
I am trying to scrape data from Google Patents with Beautiful Soup and add some columns to an existing csv. Here is an example of patent result. Here is my code:
with open ('patentdatacleaned.csv', 'r', encoding="ISO-8859-1") as csv_file:
…

eliza01
- 21
- 3
1
vote
1 answer
Cannot scrape google patent URL through python and Beautiful Soup
I am currently trying to scrape a link to Google Patents on this page,
https://datatool.patentsview.org/#detail/patent/10745438, but when I am trying to print out all of the links with an 'a' tag, only an unrelated website comes up.
Here is my code…

Zaid Barkat
- 11
- 1
1
vote
1 answer
Is there any way to scrape the links to all patents from a Google Patents search?
I want to scrape links to patents from a Google Patents Search using BeautifulSoup, but I'm not sure if Google converts their html into javascript, which cannot be parsed through BeautifulSoup, or what the issue is.
Here is some simple code:
url =…

Bernie Zhu
- 33
- 4
1
vote
0 answers
Google BigQuery Patent
I would like to request Google Patent data (BigQuery).
In particular, my aim is to obtain patent data, including,
publication_number,
application_number,
country_code,
publication_date,
title_localized.text,
…

Daniel
- 137
- 2
- 9
0
votes
1 answer
Scraping Google Patents using BeautifulSoup
I would like to scrape titles, abstracts, claims, and inventor names from google patents and add this to an existing csv file. Could you please help me in this? A sample of my code is as follows:
# Create empty lists to store extracted…

antopol
- 1
- 1
0
votes
0 answers
Parallel scraping from Google Patents (Python-Selenium)
I want to parallelize this script I've written for scraping some patent-specific info from Google Patent, picking patents from a list, with Python and Selenium toolbox. It performs the task perfectly:
Open the browser
If it is the first patent…
0
votes
2 answers
Querying certain values inside a RECORD type
I'm trying to extract certain values from google patents: https://console.cloud.google.com/marketplace/product/google_patents_public_datasets/google-patents-public-data?project=pivotal-life-sciences
and the datatype of the cpc (The Cooperative…

Travasaurus
- 601
- 1
- 8
- 26
0
votes
1 answer
How can I access PubMed's database using BigQuery
When accessing google_patents_research.publications table from BigQuery I can filter results by the top_terms column. This column uses Google's machine learning algo to search the text inside a patent and extract the words it finds most…

David912
- 378
- 1
- 2
- 11
0
votes
0 answers
Google Patents - scraping patent's publication numbers using Python and BigQuery
I need to get a big amount of publication numbers from Google Patents.
The example of names that I need: US7863316B2, KR102121633B1.
I was trying to scrape the data by using classic Python tools (like BeautifulSoup) but this method doesn't work with…

Alona
- 67
- 1
- 10
0
votes
1 answer
Google patent bigquery forward citation
I'd like to obtain a list of patents (publication number, filing date, and etc.) that cite all US patents filed between 2003 and 2015. Not sure what went wrong, but my current codes (below) returned no results. Can anyone help me revise the codes…

lailai's leaves
- 5
- 1
0
votes
0 answers
Why does patents.google.com return more results than BiqQuery for (apparently) the same query?
I'm wondering if a bigquery/patents person can pop in on something that I'm scratching my head over.
Basically, if you are searching for two phrases, say "phrase 1" and "phrase 2", then patents.google.com seems to do something more than just search…

user655489
- 1,316
- 3
- 14
- 21
0
votes
1 answer
Make the outcome contains application number or query application number by publication number in outoutcome
SELECT
c.publication_number AS Pub,
COUNT(DISTINCT REGEXP_EXTRACT(p.publication_number, r'(.+-.+)-')) AS CitedByCount
FROM `patents-public-data.patents.publications` AS p,
UNNEST(citation) AS c
WHERE c.publication_number IN (
SELECT…

LEBRON L
- 17
- 6
0
votes
1 answer
Acquire lots of citation data from BigQuery by application
How can I realize my purpose there are ten of thousands of numbers like CN201510747352 in a Excel document.
SELECT
p.application_number AS app,
COUNT(DISTINCT c.publication_number) Citations
FROM `patents-public-data.patents.publications` AS…

LEBRON L
- 17
- 6
0
votes
1 answer
Acquire patents' forward citation data from BigQuery by application
I want to collect data by application_number like this. The real application number is CN 201510747352.
SELECT c.application_number AS Pub, COUNT(p.publication_number) AS CitedBy
FROM `patents-public-data.patents.publications` AS p,…

LEBRON L
- 17
- 6