Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 433 Bytes

CONTRIBUTING.md

File metadata and controls

25 lines (19 loc) · 433 Bytes

Contributing

setting up git

install dependencies

pip install -r requirements.txt

running

python3 ./socrata_dump/__init__.py www.chattadata.org $PWD/data

creating a new branch

Here's an example of creating a new branch for issue #5

git checkout main

# using -b tells git to create a new branch while checking out
git checkout -b issue-5-sleep-param

testing

None at the moment