Skip to content

Commit 25f5e95

Browse files
committed
Initial commit
0 parents  commit 25f5e95

File tree

4 files changed

+489
-0
lines changed

4 files changed

+489
-0
lines changed

.gitignore

Lines changed: 157 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,157 @@
1+
## SQLite3 DB ignore
2+
/**/*.db
3+
4+
## .xlsx ignore
5+
/**/*.xlsx
6+
7+
# Created by .ignore support plugin (hsz.mobi)
8+
### Python template
9+
# Byte-compiled / optimized / DLL files
10+
__pycache__/
11+
*.py[cod]
12+
*$py.class
13+
14+
# C extensions
15+
*.so
16+
17+
# Distribution / packaging
18+
.Python
19+
env/
20+
build/
21+
develop-eggs/
22+
dist/
23+
downloads/
24+
eggs/
25+
.eggs/
26+
lib/
27+
lib64/
28+
parts/
29+
sdist/
30+
var/
31+
*.egg-info/
32+
.installed.cfg
33+
*.egg
34+
35+
# PyInstaller
36+
# Usually these files are written by a python script from a template
37+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
38+
*.manifest
39+
*.spec
40+
41+
# Installer logs
42+
pip-log.txt
43+
pip-delete-this-directory.txt
44+
45+
# Unit test / coverage reports
46+
htmlcov/
47+
.tox/
48+
.coverage
49+
.coverage.*
50+
.cache
51+
nosetests.xml
52+
coverage.xml
53+
*,cover
54+
.hypothesis/
55+
56+
# Translations
57+
*.mo
58+
*.pot
59+
60+
# Django stuff:
61+
*.log
62+
local_settings.py
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
74+
# PyBuilder
75+
target/
76+
77+
# IPython Notebook
78+
.ipynb_checkpoints
79+
80+
# pyenv
81+
.python-version
82+
83+
# celery beat schedule file
84+
celerybeat-schedule
85+
86+
# dotenv
87+
.env
88+
89+
# virtualenv
90+
venv/
91+
ENV/
92+
93+
# Spyder project settings
94+
.spyderproject
95+
96+
# Rope project settings
97+
.ropeproject
98+
### VirtualEnv template
99+
# Virtualenv
100+
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
101+
.Python
102+
[Bb]in
103+
[Ii]nclude
104+
[Ll]ib
105+
[Ll]ib64
106+
[Ll]ocal
107+
[Ss]cripts
108+
pyvenv.cfg
109+
.venv
110+
pip-selfcheck.json
111+
### JetBrains template
112+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
113+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
114+
115+
# User-specific stuff:
116+
.idea/workspace.xml
117+
.idea/tasks.xml
118+
.idea/dictionaries
119+
.idea/vcs.xml
120+
.idea/jsLibraryMappings.xml
121+
122+
# Sensitive or high-churn files:
123+
.idea/dataSources.ids
124+
.idea/dataSources.xml
125+
.idea/dataSources.local.xml
126+
.idea/sqlDataSources.xml
127+
.idea/dynamic.xml
128+
.idea/uiDesigner.xml
129+
130+
# Gradle:
131+
.idea/gradle.xml
132+
.idea/libraries
133+
134+
# Mongo Explorer plugin:
135+
.idea/mongoSettings.xml
136+
137+
.idea/
138+
139+
## File-based project format:
140+
*.iws
141+
142+
## Plugin-specific files:
143+
144+
# IntelliJ
145+
/out/
146+
147+
# mpeltonen/sbt-idea plugin
148+
.idea_modules/
149+
150+
# JIRA plugin
151+
atlassian-ide-plugin.xml
152+
153+
# Crashlytics plugin (for Android Studio and IntelliJ)
154+
com_crashlytics_export_strings.xml
155+
crashlytics.properties
156+
crashlytics-build.properties
157+
fabric.properties

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# PatentsView API mining
2+
3+
This project calls the PatentsView API.
4+
5+
* [PatentsView Glossary](http://www.patentsview.org/api/glossary.html) provides a description of the variables.

0 commit comments

Comments
 (0)