A python API for the Washington State Legislature web services
Project description
wa-leg-api
Python wrapper library around Washington State Legislature web services API
Installation
pip install wa-leg-api
Dependecies are:
Basic Usage
The stub functions are in modules named after each service in all lower case. The function names are the request type changed from CamelCase to snake_case.
Example: If you want to call the function GetAmendments from the AmendmentService, do:
from wa_leg_api.amendment import get_amendments
result = get_amendments(2021)
All stubs return dicts.
For more information about the Washington State Legislature web services available visit wslwebservices.leg.wa.gov
Exceptions
There is one exception defined by this library:
try:
result = get_amendments(2100) # an invalid year!
except WaLegApiException as e:
print(e.http_error) # HTTP Error code
print(e.http_error_text) # HTTP Error code as text
print(e.http_text) # Additional text returned from leg.wa.gov
print(e.args_sent) # Record of arguments sent with request
Sample output:
500
Internal Server Error
System.Web.Services.Protocols.SoapException: Invalid Input. ---> System.ArgumentException: You have not submitted a valid year. Please enter year in the following format: YYYY. Information is only available back to 1991.
Parameter name: Year
--- End of inner exception stack trace ---
at WslWebServices.AmendmentService.GetAmendments(Int32 year)
{'year': 2100}
Exceptions thrown directly by the requests package are not re-wrapped.
Full documentation
Please visit https://wa-leg-api.readthedocs.io
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file wa_leg_api-0.2.0.tar.gz.
File metadata
- Download URL: wa_leg_api-0.2.0.tar.gz
- Upload date:
- Size: 12.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
093c59e434ca9fae8fd8d76d9fe4540ee5f66059e18af21f9e2928ffb0a668f0
|
|
| MD5 |
e8e7ef4568f2f0b0c9b24c7180f24145
|
|
| BLAKE2b-256 |
536884bd873b2af8cb57aa1063457c1dc58ebb41db0d27f549e15765580f8900
|
File details
Details for the file wa_leg_api-0.2.0-py3-none-any.whl.
File metadata
- Download URL: wa_leg_api-0.2.0-py3-none-any.whl
- Upload date:
- Size: 14.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e3e2d1d01bd259a5ebf0c1b852288ad1e93de667997abf937b82340d113b677
|
|
| MD5 |
689153d8f43214b54653515c83ea6504
|
|
| BLAKE2b-256 |
0df49999d8bc44bf972eba91a2df8fe3aa55365802cff6dd1801a495965a3b12
|