Metadata-Version: 2.1
Name: pyfortnox
Version: 0.0.4
Summary: A small package for Fortnox API
Home-page: https://github.com/xalien10/pyfortnox
Author: Mahmudul Hasan
Author-email: ikhtiarcse10ruet@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: munch (>=2.5.0)
Requires-Dist: requests (>=2.21.0)
Requires-Dist: urllib3 (>=1.24.3)

# pyfortnox
python client for using Fortnox API

## Install package
`pip install pyfortnox`

### Usage
`import fortnox`

`client = fortnox.Client(access_token='Your-Access-Token', client_secret='Your-Client-Secret')`
# Get you necessary services
`customers = client.customers.list()` // <client>.<desired_service_name>.<option>
# Access the data by access/period with attribute name
`for customer in customers:`
    `print(customer.Name)`


