-
Notifications
You must be signed in to change notification settings - Fork 0
/
PKG-INFO
77 lines (51 loc) · 2.49 KB
/
PKG-INFO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
Metadata-Version: 1.0
Name: XeroAPI
Version: 0.0.6
Summary: Python client API for private XERO applications.
Home-page: https://github.com/beesdom/XeroAPI
Author: Beesdom
Author-email: [email protected]
License: LICENSE.txt
Description: ========
XERO API
========
Xero API provides a client authentication module and some of the XERO
API Resources for your `Private Application` to entegrate with XERO
accounting system. Typical usage often looks like this::
from xeroapi.client import Client
from xeroapi.resources import XOrganization
CONSUMER_KEY = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
CONSUMER_SECRET = "YYYYYYYYYYYYYYYYYYYYYYYYYYYYYY"
PATH_TO_YOUR_PRIVATE_KEY = "/path/to/your/private_key.pem"
xero_client = Client(CONSUMER_KEY, CONSUMER_SECRET, PATH_TO_YOUR_PRIVATE_KEY)
print "Your organization name in XERO is: ", XOrganization.get(xero_client)
Please refer to `API Overview http://blog.xero.com/developer/api-overview/` to start.
Client
======
Includes the authentication and information exhange methods.
* uses oauth2 for authorization.
* signs all API calls using your private key with the RSA-SHA1 signature method.
* includes get/put/post methods which converts xml data to python dictionaries.
Please refer to the `Atuhentication with the XERO API <http://blog.xero.com/developer/api-overview/authentication/>` section for details.
Resources
=========
Defines the `X` based classes for the following XERO resources:
* Accounts
* Organizations
* AccountTypes
* Contacts
* Invoices
* Items
* BrandingThemes
* TaxRates
Adding new resources is easy. Plese refer to the `Xero Developer API <http://blog.xero.com/developer/api/>` for the whole list of resources.
Contributors
============
The Beesdom Team:
* Vehbi Sinan Tunalioğlu <[email protected]>
* Can Burak Çilingir <[email protected]>
* Mehmet Fatih Koksal <[email protected]>
* Atamert Ölçgen <[email protected]>
* Eugene Wee <[email protected]>
* Calvin Ng <[email protected]>
Platform: UNKNOWN