aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2021-01-18 09:51:52 -0500
committerB Stack <bgstack15@gmail.com>2021-01-18 09:51:52 -0500
commite7c98819e3b5a273b6bcb87883e6c1d15670ae19 (patch)
tree38acf0edcc3f6bd29b8b616bbfdf890098611883 /README.md
downloadj2c-e7c98819e3b5a273b6bcb87883e6c1d15670ae19.tar.gz
j2c-e7c98819e3b5a273b6bcb87883e6c1d15670ae19.tar.bz2
j2c-e7c98819e3b5a273b6bcb87883e6c1d15670ae19.zip
initial commitHEADmaster
Diffstat (limited to 'README.md')
-rw-r--r--README.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..018dcc2
--- /dev/null
+++ b/README.md
@@ -0,0 +1,24 @@
+# Readme for j2c
+This package exists because I wanted to convert json to csv using python. Some hospitals use json as the "machine-readable" format for the hospital pricing transparency report.
+
+## Upstream
+None
+
+## Alternatives
+I am sure there are plenty of ways to convert json to csv, including even in python.
+
+## How to use
+Run `./json-to-csv.py --help` to learn how to use the cli.
+
+The j2c file is the library, should anybody need that.
+
+## Dependencies
+Python3
+
+## References
+### Hospital pricing transparency law
+[https://www.cms.gov/hospital-price-transparency/hospitals](https://www.cms.gov/hospital-price-transparency/hospitals)
+[https://www.federalregister.gov/documents/2019/11/27/2019-24931/medicare-and-medicaid-programs-cy-2020-hospital-outpatient-pps-policy-changes-and-payment-rates-and#h-84](https://www.federalregister.gov/documents/2019/11/27/2019-24931/medicare-and-medicaid-programs-cy-2020-hospital-outpatient-pps-policy-changes-and-payment-rates-and#h-84)
+
+## Differences from upstream
+None
bgstack15