Metadata-Version: 2.1
Name: infynipy
Version: 0.1.0
Summary: API Wrapper for the Infynity CRM.
Home-page: https://github.com/beanpuppy/infynipy
Author: Justin Duch
Author-email: justin@justinduch.com
License: MIT
Description: # Infynipy
        
        [![PyPI](https://img.shields.io/pypi/v/infynipy.svg)](https://pypi.org/project/infynipy/)
        [![Documentation Status](https://readthedocs.org/projects/infynipy/badge/?version=latest)](https://infynipy.readthedocs.io/en/latest/?badge=latest)
        
        An API wrapper for the [Infynity][] mortgage broker system.
        
        [Infynity]: https://api.infynity.com.au/v1/doc#!index.md
        
        # Getting Started
        
        Install using pip:
        
        ```
        pip install infynipy
        ```
        
        Basic usage:
        
        ```python
        from infynipy import Infynity
        
        client = Infynity("USERNAME", "API_KEY")
        print(client.broker(10).individuals)  # Returns an array of Individual models
        
        # To turn them into dictionaries
        for individual in client.broker(10).individuals:
            print(individual.to_dict())
        ```
        
        View the rest of the [documentation here.][]
        
        [documentation here]: https://infynipy.readthedocs.io
        
        ## Development
        
        Clone from GitHub and run the tests:
        
        ```
        git clone https://github.com/beanpuppy/infynipy.git
        cd infynipy
        ```
        
        Run the tests and linter:
        ```
        tox
        ```
        
        ## License
        
        MIT
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
