├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── dist ├── google_patent_scraper-1.0.8-py3-none-any.whl └── google_patent_scraper-1.0.8.tar.gz ├── example ├── __pycache__ │ ├── errors.cpython-37.pyc │ ├── functions.cpython-37.pyc │ └── main.cpython-37.pyc ├── multiprocess_example │ ├── data │ │ └── edison_patents.csv │ ├── functions.py │ └── multiprocess_scraper.py └── readme_example │ └── readme.py ├── google_patent_scraper.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt └── top_level.txt ├── google_patent_scraper ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── errors.cpython-37.pyc │ └── main.cpython-37.pyc ├── errors.py └── main.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanlstevens/google_patent_scraper/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanlstevens/google_patent_scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanlstevens/google_patent_scraper/HEAD/README.md -------------------------------------------------------------------------------- /dist/google_patent_scraper-1.0.8-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanlstevens/google_patent_scraper/HEAD/dist/google_patent_scraper-1.0.8-py3-none-any.whl -------------------------------------------------------------------------------- /dist/google_patent_scraper-1.0.8.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanlstevens/google_patent_scraper/HEAD/dist/google_patent_scraper-1.0.8.tar.gz -------------------------------------------------------------------------------- /example/__pycache__/errors.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanlstevens/google_patent_scraper/HEAD/example/__pycache__/errors.cpython-37.pyc -------------------------------------------------------------------------------- /example/__pycache__/functions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanlstevens/google_patent_scraper/HEAD/example/__pycache__/functions.cpython-37.pyc -------------------------------------------------------------------------------- /example/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanlstevens/google_patent_scraper/HEAD/example/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /example/multiprocess_example/data/edison_patents.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanlstevens/google_patent_scraper/HEAD/example/multiprocess_example/data/edison_patents.csv -------------------------------------------------------------------------------- /example/multiprocess_example/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanlstevens/google_patent_scraper/HEAD/example/multiprocess_example/functions.py -------------------------------------------------------------------------------- /example/multiprocess_example/multiprocess_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanlstevens/google_patent_scraper/HEAD/example/multiprocess_example/multiprocess_scraper.py -------------------------------------------------------------------------------- /example/readme_example/readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanlstevens/google_patent_scraper/HEAD/example/readme_example/readme.py -------------------------------------------------------------------------------- /google_patent_scraper.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanlstevens/google_patent_scraper/HEAD/google_patent_scraper.egg-info/PKG-INFO -------------------------------------------------------------------------------- /google_patent_scraper.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanlstevens/google_patent_scraper/HEAD/google_patent_scraper.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /google_patent_scraper.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /google_patent_scraper.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | google_patent_scraper 2 | -------------------------------------------------------------------------------- /google_patent_scraper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanlstevens/google_patent_scraper/HEAD/google_patent_scraper/__init__.py -------------------------------------------------------------------------------- /google_patent_scraper/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanlstevens/google_patent_scraper/HEAD/google_patent_scraper/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /google_patent_scraper/__pycache__/errors.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanlstevens/google_patent_scraper/HEAD/google_patent_scraper/__pycache__/errors.cpython-37.pyc -------------------------------------------------------------------------------- /google_patent_scraper/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanlstevens/google_patent_scraper/HEAD/google_patent_scraper/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /google_patent_scraper/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanlstevens/google_patent_scraper/HEAD/google_patent_scraper/errors.py -------------------------------------------------------------------------------- /google_patent_scraper/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanlstevens/google_patent_scraper/HEAD/google_patent_scraper/main.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanlstevens/google_patent_scraper/HEAD/setup.py --------------------------------------------------------------------------------