From 58821145dd77bfec2623a45c7f1634517dc33dfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20B=C3=A4dorf?= Date: Thu, 22 Dec 2022 19:01:17 +0100 Subject: [PATCH] Add README --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..a061080 --- /dev/null +++ b/README.md @@ -0,0 +1,22 @@ +# get-gremium-members + +This utility fetches the data of council members of city of Cologne and burps them out in CSV. + +To start, make sure you have `node` (nodejs) in your path + +## Usage + +The general command syntax is: + +``` +node ./get-gremium-members.mjs $URL +``` + +`$URL` is a url string that points at the page of a committee. The full list can be found [here](https://ratsinformation.stadt-koeln.de/gr0040.asp). + +For example, to get a CSV of all the members of the Rat, run the following: + +``` +node ./get-gremium-members.mjs 'https://ratsinformation.stadt-koeln.de/kp0040.asp?__kgrnr=1' > rat.csv +``` +