Get parliament bills for Australian governments.
Project description
Aus Bills
This is a package is for obtaining parliament bills for Australian governments.
Install via pip
pip install ausbills
Current governments that are supported:
- Australian Federal Government
Contributing
We use BeautifulSoup to scrape the bills from the Bills websites. so make sure you become familiar with the docs here.
Fork the repo and install requirements
pip3 install -r requirements.txt
Each state should their own bills and corresponding website. Add a python file for a new state in the /ausbills dir. the python file should have the naming convention: wa_parliment.py
for Western Australia for example. Make sure we all agree on method/object/output conventions (use federal_bills as a guide). Once you are happy, update the README on method usage and make a Pull Request.
git tag -a v0.0.8 -m "update version 0.0.8"
Australian Federal Government
This module had methods for scraping the Australian Federal Parliament website, using beautiful soup.
The bills are scraped to get data from both the house and the senate:
from ausbills.federal_parliment import all_bills, Bill
print(all_bills)
bill_five = all_bills.data[5]
all_bills.data
is a list of all current bills and some basic data in the form of a dict. The rest of the data may be obtained via the Bill() object.
bill = Bill(bill_five)
print(bill.summary)
print(bill.sponsor)
bill.bill_text_links
bill.explanatory_memoranda_links
or you can use the url string to create an instance of Bill():
bill = Bill(bill_five["URL"])
and you can get the data dump as a dict:
bill.data
Todo
- get second reading debate links
- get third reading links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file ausbills-0.0.9-py3-none-any.whl
.
File metadata
- Download URL: ausbills-0.0.9-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.43.0 CPython/3.6.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3c75b5ec4c0db8fd75ddb162b72d3c40a8853a0749b2bd178c5a9c455a91d00c |
|
MD5 | 3befd3a36c8fd14b3fa998526d95ada6 |
|
BLAKE2b-256 | dbe040f44fbe639ee20c9a277c4459dcb8cc41d06a043fe58c1e2d94cd918b78 |