I tried to use the library for my project by following the guide in README file, and it did not go well from the start:

The code mistakenly attempts to parse a dictionary returned by requests.get(url).json() using json.loads(), which leads to a TypeError. The error message states that the JSON object must be a string, bytes, or bytearray, but a dictionary was provided instead. This issue occurs in the list_jurisdictions, get_jurisdictions, and get_values methods
I tried to use the library for my project by following the guide in README file, and it did not go well from the start:
The code mistakenly attempts to parse a dictionary returned by
requests.get(url).json()usingjson.loads(), which leads to aTypeError. The error message states that the JSON object must be a string, bytes, or bytearray, but a dictionary was provided instead. This issue occurs in thelist_jurisdictions,get_jurisdictions, andget_valuesmethods