Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit114f10e

Browse files
committed
Updated readme and changelog.
1 parent8ee77d3 commit114f10e

File tree

3 files changed

+32
-12
lines changed

3 files changed

+32
-12
lines changed

‎CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changelog
22
=========
33

4+
* 0.8.1 (September 18th, 2019)
5+
* Added PrimaryTaxIdentifier to Customer object
6+
* Fixed issue with PaymentMethod to_ref
7+
* Fixed typo in EntityRef on purchase object
8+
* Updated requirements
9+
410
* 0.8.1 (September 18th, 2019)
511
* Dropped support for Python 2.7 and 3.3
612
* Updated the Invoice to include an AllowOnlineCreditCardPayment attribute.

‎README.md

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
python-quickbooks
22
=================
33

4-
[![](https://travis-ci.org/sidecars/python-quickbooks.svg?branch=master)](https://travis-ci.org/sidecars/python-quickbooks)
5-
[![](https://coveralls.io/repos/sidecars/python-quickbooks/badge.svg?branch=master&service=github)](https://coveralls.io/github/sidecars/python-quickbooks?branch=master)
6-
[![](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/sidecars/python-quickbooks/blob/master/LICENSE)
4+
[![](https://travis-ci.org/ej2/python-quickbooks.svg?branch=master)](https://travis-ci.org/ej2/python-quickbooks)
5+
[![Coverage Status](https://coveralls.io/repos/github/ej2/python-quickbooks/badge.svg?branch=master)](https://coveralls.io/github/ej2/python-quickbooks?branch=master)
6+
[![](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/ej2/python-quickbooks/blob/master/LICENSE)
77

88
A Python 3 library for accessing the Quickbooks API. Complete rework of
99
[quickbooks-python](https://github.com/troolee/quickbooks-python).
1010

1111
These instructions were written for a Django application. Make sure to
1212
change it to whatever framework/method you’re using.
13-
You can find additional examples of usage in[Integration tests folder](https://github.com/sidecars/python-quickbooks/tree/master/tests/integration).
13+
You can find additional examples of usage in[Integration tests folder](https://github.com/ej2/python-quickbooks/tree/master/tests/integration).
1414

15-
For information about contributing, see the[Contributing Page](https://github.com/sidecars/python-quickbooks/wiki/Contributing).
15+
For information about contributing, see the[Contributing Page](https://github.com/ej2/python-quickbooks/wiki/Contributing).
1616

1717
QuickBooks OAuth
1818
------------------------------------------------
@@ -280,6 +280,20 @@ Formating helpers are available in helpers.py. Example usage:
280280
date_time_string = qb_datetime_format(datetime(2016, 7, 22, 10, 35, 00))
281281
date_time_with_utc_string = qb_datetime_utc_offset_format(datetime(2016, 7, 22, 10, 35, 00), '-06:00')
282282

283+
Exception Handling
284+
----------------
285+
The QuickbooksException object contains additional information from QBO.
286+
287+
from quickbooks.exceptions import QuickbooksException
288+
289+
try:
290+
# perform a Quickbooks operation
291+
except QuickbooksException as e:
292+
e.message # contains the error message returned from QBO
293+
e.error_code # contains the [QBO error code](https://developer.intuit.com/app/developer/qbo/docs/develop/troubleshooting/error-codes#id1)
294+
e.detail # contains additional information when available
295+
296+
283297
**Note:** Objects and object property names match their Quickbooks
284298
counterparts and do not follow PEP8.
285299

‎setup.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ def read(*parts):
1010
returnfp.read()
1111

1212

13-
VERSION= (0,8,1)
13+
VERSION= (0,8,2)
1414
version='.'.join(map(str,VERSION))
1515

1616
setup(
1717
name='python-quickbooks',
1818
version=version,
1919
author='Edward Emanuel Jr.',
20-
author_email='edward@sidecarsinc.com',
20+
author_email='edward.emanuel@gmail.com',
2121
description='A Python library for accessing the Quickbooks API.',
22-
url='https://github.com/sidecars/python-quickbooks',
22+
url='https://github.com/ej2/python-quickbooks',
2323
license='MIT',
2424
keywords=['quickbooks','qbo','accounting'],
2525
long_description=read('README.md'),
@@ -31,11 +31,11 @@ def read(*parts):
3131

3232
install_requires=[
3333
'setuptools',
34-
'intuit-oauth==1.2.2',
34+
'intuit-oauth==1.2.3',
3535
'rauth>=0.7.1',
36-
'requests>=2.7.0',
37-
'simplejson>=2.2.0',
38-
'six>=1.4.0',
36+
'requests>=2.23.0',
37+
'simplejson>=3.17.0',
38+
'six>=1.14.0',
3939
'python-dateutil',
4040
'pycparser==2.18'
4141
],

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp