A Python package of utilities for dealing with data referencing the Illinois Compiled Statutes (ILCS).
pip install git+https://github.com/sc3/python-ilcs.git
::
import ilcs for section in ilcs.sections: ... print(section) ... 5 ILCS 20/0.01 5 ILCS 20/1 5 ILCS 20/1a 5 ILCS 20/2 5 ILCS 20/2a
::
>>> import ilcs
>>> sections = ilcs.lookup_by_ilrs(chapter="1", paragraph="100")
>>> print(sections[0])
5 ILCS 20/0.01
Organization of the Illinois Compiled Statutes (ILCS) <http://www.ilga.gov/commission/lrb/lrbnew.htm>
_