Metadata-Version: 1.1
Name: intacct
Version: 0.0.7
Summary: Python client for Intacct API
Home-page: https://github.com/jnalley/intacctws-py
Author: Jon Nalley
Author-email: code@bluebot.org
License: MIT
Description: intacctws-py
        ============
        
        A Python interface to the Intacct Web Services API.
        
        Installation
        ------------
        
        To install intacctws-py simply:
        
        .. code-block:: bash
        
            $ sudo pip install intacct
        
        or alternatively (you really should be using pip though):
        
        .. code-block:: bash
        
            $ sudo easy_install intacct
        
        or from source:
        
        .. code-block:: bash
        
            $ sudo python setup.py install
        
        Getting Started
        ---------------
        
        .. code-block:: pycon
        
            >>> from intacct import IntacctApi
            >>> i = IntacctApi(
            ...         senderid='mysenderid',
            ...         senderpass='mysenderpass',
            ...         userid='myuserid',
            ...         userpass='myuserpass',
            ...         companyid='mycompanyid'
            ...     )
            >>> i.get_api_session()
            ... True
            >>> result = i.read_by_query('USERINFO', pagesize=100)
            >>> for LOGINID in result.iter('LOGINID'):
            ...     print LOGINID.text
            ...
            FredFlintstone
            WilmaFlintstone
            BarneyRubble
            BettyRubble
            >>>
        
        Limitations
        -----------
        
        This module is under development and much of the functionality provided by
        the API is not yet supported.
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
