Skip to content

Commit 48ee092

Browse files
authored
Merge pull request #2 from coderxio/parserx-package
ParseRx python package with CLI arguments
2 parents 2282752 + e2cb78c commit 48ee092

File tree

300 files changed

+345
-35616
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

300 files changed

+345
-35616
lines changed

.gitignore

+4-124
Original file line numberDiff line numberDiff line change
@@ -1,132 +1,12 @@
11
# ParseRx specific
2-
csv/
2+
csv/*.csv
3+
csv/output/*.csv
34

4-
# Byte-compiled / optimized / DLL files
5+
# byte-compiled / optimized / DLL files
56
__pycache__/
6-
*.py[cod]
7-
*$py.class
87

9-
# C extensions
10-
*.so
11-
12-
# Distribution / packaging
13-
.Python
14-
build/
15-
develop-eggs/
16-
dist/
17-
downloads/
18-
eggs/
19-
.eggs/
20-
lib/
21-
lib64/
22-
parts/
23-
sdist/
24-
var/
25-
wheels/
26-
pip-wheel-metadata/
27-
share/python-wheels/
28-
*.egg-info/
29-
.installed.cfg
30-
*.egg
31-
MANIFEST
32-
33-
# PyInstaller
34-
# Usually these files are written by a python script from a template
35-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
36-
*.manifest
37-
*.spec
38-
39-
# Installer logs
40-
pip-log.txt
41-
pip-delete-this-directory.txt
42-
43-
# Unit test / coverage reports
44-
htmlcov/
45-
.tox/
46-
.nox/
47-
.coverage
48-
.coverage.*
49-
.cache
50-
nosetests.xml
51-
coverage.xml
52-
*.cover
53-
*.py,cover
54-
.hypothesis/
55-
.pytest_cache/
56-
57-
# Translations
58-
*.mo
59-
*.pot
60-
61-
# Django stuff:
62-
*.log
63-
local_settings.py
64-
db.sqlite3
65-
db.sqlite3-journal
66-
67-
# Flask stuff:
68-
instance/
69-
.webassets-cache
70-
71-
# Scrapy stuff:
72-
.scrapy
73-
74-
# Sphinx documentation
75-
docs/_build/
76-
77-
# PyBuilder
78-
target/
79-
80-
# Jupyter Notebook
81-
.ipynb_checkpoints
82-
83-
# IPython
84-
profile_default/
85-
ipython_config.py
86-
87-
# pyenv
88-
.python-version
89-
90-
# pipenv
91-
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92-
# However, in case of collaboration, if having platform-specific dependencies or dependencies
93-
# having no cross-platform support, pipenv may install dependencies that don't work, or not
94-
# install all needed dependencies.
95-
#Pipfile.lock
96-
97-
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
98-
__pypackages__/
99-
100-
# Celery stuff
101-
celerybeat-schedule
102-
celerybeat.pid
103-
104-
# SageMath parsed files
105-
*.sage.py
106-
107-
# Environments
8+
# environments
1089
.env
10910
.venv
11011
env/
11112
venv/
112-
ENV/
113-
env.bak/
114-
venv.bak/
115-
116-
# Spyder project settings
117-
.spyderproject
118-
.spyproject
119-
120-
# Rope project settings
121-
.ropeproject
122-
123-
# mkdocs documentation
124-
/site
125-
126-
# mypy
127-
.mypy_cache/
128-
.dmypy.json
129-
dmypy.json
130-
131-
# Pyre type checker
132-
.pyre/

0 commit comments

Comments
 (0)