https://github.com/amcintosh/freshbooks-python-sdk
FreshBooks API wrapper
https://github.com/amcintosh/freshbooks-python-sdk
freshbooks freshbooks-api freshbooks-cloud-accounting freshbooks-python-sdk hacktoberfest sdk sdk-python
Last synced: 2 months ago
JSON representation
FreshBooks API wrapper
- Host: GitHub
- URL: https://github.com/amcintosh/freshbooks-python-sdk
- Owner: amcintosh
- License: mit
- Created: 2020-11-11T14:44:08.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-10-01T01:46:24.000Z (5 months ago)
- Last Synced: 2025-10-01T03:36:01.950Z (5 months ago)
- Topics: freshbooks, freshbooks-api, freshbooks-cloud-accounting, freshbooks-python-sdk, hacktoberfest, sdk, sdk-python
- Language: Python
- Homepage:
- Size: 6.12 MB
- Stars: 9
- Watchers: 2
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# FreshBooks Python SDK
[](https://pypi.org/project/freshbooks-sdk/)

[](https://github.com/amcintosh/freshbooks-python-sdk/actions?query=workflow%3A%22Run+Tests%22)
The FreshBooks Python SDK allows you to more easily utilize the [FreshBooks API](https://www.freshbooks.com/api).
## Installation
```bash
pip install freshbooks-sdk
```
## Usage
See the [full documentation](https://freshbooks-python-sdk.readthedocs.io/) or check out some of our [examples](https://github.com/amcintosh/freshbooks-python-sdk/tree/main/examples).
## Development
### Testing
To run all tests:
```bash
make test
```
To run a single test with pytest:
```bash
py.test path/to/test/file.py
py.test path/to/test/file.py::TestClass::test_case
```
### Documentations
You can generate the documentation via:
```bash
make generate-docs
```