-
Notifications
You must be signed in to change notification settings - Fork 0
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
Add JSON reader & extractor #27
base: develop
Are you sure you want to change the base?
Conversation
Apologies for the late response, I hadn't realised this was ready for review. Before I review this, can you add relevant documentation changes in |
@lukavdplas I included the json module in the mkdocs index, and updated the README to state that the package also defines a reader for JSON. I also just went ahead now and excluded the Python 3.8 test from the GitHub actions matrix, and edited the README to state that we don't support Python versions lower than 3.9. |
Close #6. This proved more complicated than I first envisioned, because the example data I found happened to be structured as arrays within a dictionary. This solution can now tackle both types of data: single file with multiple documents, or a file per document.
Unfortunately, the pandas libary needs to be a higher version than available with Python 3.8 to flatten the JSON appropriately. Should we drop Python 3.8 support, seeing as it's beyond end of life now?