Metadata-Version: 1.1
Name: fiobank
Version: 0.0.3
Summary: Little library implementing Fio Bank API in Python
Home-page: https://github.com/honzajavorek/fiobank
Author: Honza Javorek
Author-email: jan.javorek@gmail.com
License: Copyright (c) 2013, Jan Javorek <jan.javorek@gmail.com>

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Description: # fiobank
        
        Little library implementing [Fio Bank API](http://www.fio.cz/bank-services/internetbanking-api) in Python.
        
        ## Status: ACTIVE
        
        Under active development and maintenance. [Pull requests](http://help.github.com/send-pull-requests/) welcome! :-)
        
        ## Installation
        
            pip install fiobank
        
        ## Usage
        
        Initialization of client:
        
            >>> from fiobank import FioBank
            >>> client = FioBank(token='...')
        
        Account information:
        
            >>> client.info()
            {'currency': 'CZK', 'account_number_full': 'XXXXXXXXXX/2010', 'balance': 42.00, 'account_number': 'XXXXXXXXXX', 'bank_code': '2010'}
        
        Listing transactions within time period:
        
            >>> gen = client.period('2013-01-20', '2013-03-20')
            >>> list(gen)[0]
            {'comment': u'N\xe1kup: IKEA CR, BRNO, CZ, dne 17.1.2013, \u010d\xe1stka  2769.00 CZK', 'recipient_message': u'N\xe1kup: IKEA CR, BRNO, CZ, dne 17.1.2013, \u010d\xe1stka  2769.00 CZK', 'user_identifiaction': u'N\xe1kup: IKEA CR, BRNO, CZ, dne 17.1.2013, \u010d\xe1stka  2769.00 CZK', 'currency': 'CZK', 'amount': -2769.0, 'instruction_id': 'XXXXXXXXXX', 'executor': u'Vilém Fusek', 'date': datetime.date(2013, 1, 20), 'type': u'Platba kartou', 'transaction_id': 'XXXXXXXXXX'}
        
        Listing transactions from single account statement:
        
            >>> client.statement(2013, 1)  # 1 is January only by coincidence - arguments mean 'first statement of 2013'
        
        Listing latest transactions:
        
            >>> client.last()  # return transactions added from last listing
            >>> client.last(from_id='...')  # sets cursor to given transaction_id and returns following transactions
            >>> client.last(from_date='2013-03-01')  # sets cursor to given date and returns following transactions
        
        For further information [read code](https://github.com/honzajavorek/fiobank/blob/master/fiobank.py).
        
        
        ## License: ISC
        
        © 2013 Jan Javorek <jan.javorek@gmail.com>
        
        This work is licensed under [ISC license](https://en.wikipedia.org/wiki/ISC_license).
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet
