You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 4, 2025. It is now read-only.
Several bills return JSON which cannot be read by most parsers, such as python's json.loads(). These seem to be caused by stray "" characters in the bill summaries.
An example of this can be found in hr1771-113, where there is an extra \ in the summary, which is followed by a space. This results in an unexpected escape character in most languages, and a JSONDecodeError is thrown.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Several bills return JSON which cannot be read by most parsers, such as python's
json.loads()
. These seem to be caused by stray "" characters in the bill summaries.An example of this can be found in hr1771-113, where there is an extra \ in the summary, which is followed by a space. This results in an unexpected escape character in most languages, and a JSONDecodeError is thrown.
The text was updated successfully, but these errors were encountered: