Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 781 Bytes

index.rst

File metadata and controls

39 lines (28 loc) · 781 Bytes

chwrapper

Release v|version|. (:ref:`Installation <install>`)

chwrapper is a simple python wrapper around the Companies House API

>>> import chwrapper
>>> s = chwrapper.Search()
>>> r = s.search_officers("John Smith")
>>> r.status_code
200
>>> r.headers['content-type']
'application/json'
>>> r.json()
{'kind': 'search#officers', 'items_per_page': 20, 'start_index': 0,
'total_results': 731629,...}

User Guide

.. toctree::
   :maxdepth: 2

   user/install
   user/quickstart
   user/api

Contributor Guide

I'd welcome contributions from the community. See CONTRIBUTING.md for more info.:

.. toctree::
   :maxdepth: 2