File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# python-quickbooks
22-------------------
33
4- A Python library for accessing the Quickbooks API.
4+ A Python library for accessing the Quickbooks API.
55Complete rework of [ quickbooks-python] ( https://github.com/troolee/quickbooks-python ) .
66
77These instructions were written for a Django application. Make sure to change it to whatever framework/method you're using.
@@ -69,10 +69,10 @@ List of objects:
6969 customers = Customer.all()
7070
7171
72- Filtered list of objects:
72+ Filtered list of objects (filtering currently only supports simple queries) :
7373
7474
75- customer = Customer.filter(Active=True)
75+ customers = Customer.filter(Active=True)
7676
7777
7878Get single object by Id and update:
@@ -92,7 +92,7 @@ Create new object:
9292
9393
9494
95- __ Note:__ This is a work-in-progress. It was made public to help other developers access the QuickBooks API,
96- it's not a guarantee that it will ever be finished .
95+ __ Note:__ This is a work-in-progress made public to help other developers access the QuickBooks API.
96+ Built for a Django project running on Python 2. It has not been tested with Python 3 .
9797
9898
Original file line number Diff line number Diff line change 11from setuptools import setup , find_packages
22
33
4- VERSION = (0 , 1 , 0 )
4+ VERSION = (0 , 2 , 0 )
55version = '.' .join (map (str , VERSION ))
66
77setup (
1717 install_requires = [
1818 'setuptools' ,
1919 'rauth' ,
20- 'simplejson' ,
2120 'python-dateutil' ,
2221 ],
2322
You can’t perform that action at this time.
0 commit comments