Metadata-Version: 2.1
Name: willowlabs
Version: 0.5.0
Summary: A Python package for accessing the Willow Labs APIs
Home-page: https://github.com/willowlabs/willowlabs-apis-python
Author: Willow Labs AS
Author-email: lars@willowlabs.ai
License: UNKNOWN
Description: .. image:: https://cdn.vox-cdn.com/thumbor/sQz6rDwSUuGeNzKMhzoVTUSS8qc=/1400x1400/filters:format(jpeg)/cdn.vox-cdn.com/uploads/chorus_asset/file/16206479/willow_warwick_davies_5.jpg
            :width: 600px
            :align: left
            :height: 400px
            :alt: alternate text
        
        Willow Labs Python API
        ========================
        |docs| |pypi version| |downloads| |python version|
        
        Willow labs APIs offers services to get information regarding companies and related entities. The main companents are:
        
        * Information about the owners of a comapny. This service provides owners at all levels, meaning it recursively goes trough the ownership structure until a private owner is established.
        * Basic company information as address, industry, number of employees and more.
        * Signature rights and prokura holders for a comapny.
        * Roles connected to the company, for example CEO, board members, accountant.
        
        Function summary
        ----------------
        
        +-----------------------------------------+-------------------------------------------------------+-----------+-----------------------------------+
        | Service name                            | Descritpion                                           | Language  | English version                   |
        +=========================================+=======================================================+===========+===================================+
        | get_basic_company_information           | Basic information.                                    |  English  |                                   |
        +-----------------------------------------+-------------------------------------------------------+-----------+-----------------------------------+
        | get_company_ownership                   | Get the full ownership structure.                     | English   |                                   |
        +-----------------------------------------+-------------------------------------------------------+-----------+-----------------------------------+
        | get_company_power_of_attorney           | Get everyone with power of attorney.                  | English   |                                   |
        +-----------------------------------------+-------------------------------------------------------+-----------+-----------------------------------+
        | \*get_company_prokura                   | Get everyone with prokura rights (power of attorney). | Norwegian | get_company_power_of_attorney     |
        +-----------------------------------------+-------------------------------------------------------+-----------+-----------------------------------+
        | get_company_full_signatory_authority    | All signature holders.                                | English   |                                   |
        +-----------------------------------------+-------------------------------------------------------+-----------+-----------------------------------+
        | \*get_company_signatur                  | Get all signatur (signature) holders.                 | Norwegian | get_company_signatory_information |
        +-----------------------------------------+-------------------------------------------------------+-----------+-----------------------------------+
        | get_company_signatory_information       | Get the authority holder.                             | English   |                                   |
        +-----------------------------------------+-------------------------------------------------------+-----------+-----------------------------------+
        | get_company_roles                       | Get all roles connect to a company.                   | English   |                                   |
        +-----------------------------------------+-------------------------------------------------------+-----------+-----------------------------------+
        
        \* The function is a Norwegian version of an english function - see english version column for information.
        
        
        Installation
        ----------------
        
        .. code-block:: python
        
           pip install -U willowlabs
        
        Example usage
        -------------
        
        .. code-block:: python
        
           from willowlabs.company_information.client import CompanyInformationClient
           client = CompanyInformationClient("client_config.yaml")
           company_basic_results = client.get_basic_company_information(organisation_number)
           company_ownership_results = client.get_company_ownership(organisation_number, record_year)
        
        
        Documentation
        ================
        `Read the Docs`_
        
        .. _Read the docs: https://willow-labs-python-api.readthedocs.io/en/doc_release/
        
        Versions
        ==========
        Using `Semantic Versioning 2.0.0`_.
        
        .. _Semantic Versioning 2.0.0: https://semver.org/
        
        
        [0.5.0] - 16.04.2020
        ------------------------------
        
        Added
        ^^^^^
        * Readme file documentation.
        
        
        [0.4.0] - 16.04.2020
        ------------------------------
        
        Added
        ^^^^^
        * Change in import structure.
        
        [0.3.0] - 15.04.2020
        --------------------
        
        Added
        ^^^^^
        * New function to get roller
        
        Bugg fix
        ^^^^^^^^
        * Removed __init__ import
        
        [0.2.0] - 04.04.2020
        --------------------
        
        First beta version: Basic functionality.
        
        .. |docs| image:: https://readthedocs.org/projects/willow-labs-python-api/badge/?version=doc_release
            :alt: Documentation Status
            :scale: 100%
            :target: https://willow-labs-python-api.readthedocs.io/en/doc_release/#?badge=doc_release
        
        .. |pypi version| image:: https://pypip.in/v/willowlabs/badge.png
            :target: https://pypi.python.org/pypi/willowlabs/
            :alt: Latest PyPI version
        
        .. |downloads| image:: https://pypip.in/d/willowlabs/badge.png
            :target: https://pypi.python.org/pypi/willowlabs/
            :alt: Number of PyPI downloads
        
        .. |python version| image:: https://img.shields.io/badge/Python-3.7%20%7C%203.8-blue
            :target: https://www.python.org/downloads/release/python-370
            :alt: Python 3.7
        
        
        
        License
        -------
        
        `MIT`_ Â© 2010-2020 Willow Labs
        
        .. _MIT: LICENSE
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Python: >=3.7.0
Description-Content-Type: text/markdown
