From f995224a77488f3469c16a3f504dcf7a1393d834 Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Sat, 30 Apr 2022 22:44:30 -0700 Subject: [PATCH 1/1] Add curl commandline comment. --- geocode.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/geocode.py b/geocode.py index 15ffff0..3e83d02 100644 --- a/geocode.py +++ b/geocode.py @@ -5,6 +5,13 @@ """Wrapper around US Census address geocoder API described here: https://www2.census.gov/geo/pdfs/maps-data/data/Census_Geocoder_User_Guide.pdf https://geocoding.geo.census.gov/geocoder/Geocoding_Services_API.pdf + +Also try: + + $ curl --form addressFile=@localfile.csv \ + --form benchmark=2020 \ + https://geocoding.geo.census.gov/geocoder/locations/addressbatch \ + --output geocoderesult.csv """ import json -- 2.45.2