Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add module csv2xml to convert tabular data to DSP-XML (DEV-134) #219

Merged
merged 36 commits into from Sep 6, 2022
Merged
Show file tree
Hide file tree
Changes from 26 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
1f31f51
tests: remove unused stuff
jnussbaum Aug 18, 2022
4fb26c4
add csv2xml, write docs
jnussbaum Aug 18, 2022
8fbc6a3
continue unittests
jnussbaum Aug 19, 2022
08061dd
write unit test for find_date_in_string()
jnussbaum Aug 22, 2022
b34329b
improve docstring
jnussbaum Aug 23, 2022
f2cf691
catch warnings instead of muting them
jnussbaum Aug 23, 2022
bace4b3
_check_and_prepare_values(): refactor, write docstring, write tests
jnussbaum Aug 23, 2022
6351c33
add setUpClass and tearDownClass
jnussbaum Aug 23, 2022
c210c53
improve make_boolean_prop
jnussbaum Aug 24, 2022
91bda19
repair tests
jnussbaum Aug 24, 2022
e231c43
improve check_and_prepare_values and make_color_prop
jnussbaum Aug 24, 2022
31caa52
automatize test cases
jnussbaum Aug 24, 2022
01558a6
refactor tests
jnussbaum Aug 25, 2022
0804ac9
add unittest for make_geometry_prop
jnussbaum Aug 25, 2022
f9e3439
edit
jnussbaum Aug 26, 2022
35c12f5
edit
jnussbaum Aug 26, 2022
6f7d9da
edit
jnussbaum Aug 26, 2022
d6ef16b
edit
jnussbaum Aug 30, 2022
11f3bfb
Merge branch 'main' into wip/dev-134-csv2xml
jnussbaum Aug 30, 2022
dd4fc92
pipenv install regex, xlrd
jnussbaum Aug 30, 2022
6bc8607
edit
jnussbaum Aug 30, 2022
b2cca7d
edit
jnussbaum Aug 30, 2022
9ccd5a8
add test for docs/assets/templates/excel2xml_script.py
jnussbaum Aug 30, 2022
6bf42e2
improvements
jnussbaum Aug 31, 2022
86feec8
improve file pathes and working directory of excel2xml_script.py
jnussbaum Aug 31, 2022
6fc3396
remove method handle_warnings()
jnussbaum Aug 31, 2022
0f25bbb
transform PropertyElement to a dataclass
jnussbaum Aug 31, 2022
0351ba8
remove unnecessary comment
jnussbaum Aug 31, 2022
bc36773
apply feedback
jnussbaum Aug 31, 2022
b06297b
apply feedback
jnussbaum Sep 1, 2022
fd29e89
Apply suggestions from code review
jnussbaum Sep 1, 2022
ad4f0b2
apply reviewer's feedback
jnussbaum Sep 1, 2022
8b53d25
Apply suggestions from code review
jnussbaum Sep 1, 2022
e38d909
remove support for Iterables in the 'value' parameter of the make_*_p…
jnussbaum Sep 2, 2022
afc2e00
improve regex for URI
jnussbaum Sep 5, 2022
0fdd043
improve docs
jnussbaum Sep 6, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions Pipfile
Expand Up @@ -18,6 +18,8 @@ openpyxl = "*"
pyparsing = "==2.4.7"
networkx = "*"
pandas = "*"
xlrd = "*"
regex = "*"

[dev-packages]
mkdocs = "*"
Expand Down
152 changes: 120 additions & 32 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions dev-requirements.txt
Expand Up @@ -3,12 +3,12 @@ attrs~=22.1.0; python_version >= '3.5'
autopep8~=1.7.0
cached-property~=1.5.2
cerberus~=1.3.4
certifi~=2022.6.15; python_full_version >= '3.6.0'
certifi~=2022.6.15; python_version >= '3.6'
chardet~=5.0.0; python_version >= '3.6'
charset-normalizer~=2.1.1; python_full_version >= '3.6.0'
charset-normalizer~=2.1.1; python_version >= '3.6'
click~=8.1.3
colorama~=0.4.5; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'
distlib~=0.3.5
distlib~=0.3.6
ghp-import~=2.1.0
idna~=3.3; python_version >= '3.5'
importlib-metadata~=4.12.0; python_version >= '3.7'
Expand All @@ -19,7 +19,7 @@ markupsafe~=2.1.1; python_version >= '3.7'
mergedeep~=1.3.4; python_version >= '3.6'
mkdocs~=1.3.1
mkdocs-include-markdown-plugin~=3.6.1
mkdocs-material~=8.4.1
mkdocs-material~=8.4.2
mkdocs-material-extensions~=1.0.3; python_version >= '3.6'
mypy~=0.971
mypy-extensions~=0.4.3
Expand All @@ -44,16 +44,16 @@ pyyaml~=6.0; python_version >= '3.6'
pyyaml-env-tag~=0.1; python_version >= '3.6'
requests~=2.28.1
requirementslib~=1.6.9; python_version >= '3.7'
setuptools~=65.2.0; python_version >= '3.7'
setuptools~=65.3.0; python_version >= '3.7'
six~=1.16.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
toml~=0.10.2; python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'
tomli~=2.0.1; python_version < '3.11'
tomli~=2.0.1; python_version >= '3.7'
tomlkit~=0.11.4; python_version >= '3.6' and python_version < '4.0'
types-requests~=2.28.9
types-urllib3~=1.26.23
typing-extensions~=4.3.0; python_version >= '3.7'
urllib3~=1.26.11; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5' and python_version < '4'
vistir~=0.5.6; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
urllib3~=1.26.12; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5' and python_version < '4'
vistir~=0.6.1; python_version not in '3.0, 3.1, 3.2, 3.3' and python_version >= '3.7'
watchdog~=2.1.9; python_version >= '3.6'
wheel~=0.37.1
zipp~=3.8.1; python_version >= '3.7'
Binary file added docs/assets/images/img-excel2xml.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.