Skip to content

Commit

Permalink
docs: Glitches in README's formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
honzajavorek committed Aug 4, 2016
1 parent 978cc17 commit 9f1de31
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,25 +33,27 @@ Account information:
{
'currency': 'CZK',
'account_number_full': 'XXXXXXXXXX/2010',
'balance': 42.00, 'account_number': 'XXXXXXXXXX',
'balance': 42.00,
'account_number': 'XXXXXXXXXX',
'bank_code': '2010'
}
Listing transactions within a time period:

.. code:: python
>>> gen = client.period('2013-01-20',
'2013-03-20')
>>> gen = client.period('2013-01-20', '2013-03-20')
>>> list(gen)[0]
{
'comment': 'N\xe1kup: IKEA CR, BRNO, CZ, dne 17.1.2013, \u010d\xe1stka 2769.00 CZK',
'recipient_message': 'N\xe1kup: IKEA CR, BRNO, CZ, dne 17.1.2013, \u010d\xe1stka 2769.00 CZK',
'user_identifiaction': 'N\xe1kup: IKEA CR, BRNO, CZ, dne 17.1.2013, \u010d\xe1stka 2769.00 CZK',
'currency': 'CZK',
'amount': -2769.0, 'instruction_id': 'XXXXXXXXXX',
'amount': -2769.0,
'instruction_id': 'XXXXXXXXXX',
'executor': 'Vilém Fusek',
'date': datetime.date(2013, 1, 20), 'type': 'Platba kartou',
'date': datetime.date(2013, 1, 20),
'type': 'Platba kartou',
'transaction_id': 'XXXXXXXXXX'
}
Expand All @@ -72,8 +74,7 @@ Listing latest transactions:
Conflict Error
--------------

`Fio API
documentation <http://www.fio.cz/docs/cz/API_Bankovnictvi.pdf>`__
`Fio API documentation <http://www.fio.cz/docs/cz/API_Bankovnictvi.pdf>`__
(Section 8.2) states that a single token should be used only once per
30s. Otherwise a HTTP 409 Conflict will be returned and
``fiobank.ThrottlingError`` will be raised.
Expand Down

0 comments on commit 9f1de31

Please sign in to comment.