
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Django app for working with ConnectWise. Defines models (tickets, members, companies, etc.) and callbacks.
Django app for working with ConnectWise. Defines models (tickets, members, companies, etc.) and callbacks.
Other versions may work; we haven't tried.
From PyPI:
pip install django-connectwise
From source:
git clone git@github.com:KerkhoffTechnologies/django-connectwise.git
cd django-connectwise
python setup.py install
Add to INSTALLED_APPS
INSTALLED_APPS = [
...
'djconnectwise',
...
]
Add to urls.py
:
re_path(
r'^callback/', # This can be whatever you want.
include('djconnectwise.urls', namespace='connectwise')
),
Add to settings:
CONNECTWISE_SERVER_URL = 'https://connectwise.example.com'
CONNECTWISE_CREDENTIALS = {
'company_id': 'your company ID',
'api_public_key': 'your API user public key',
'api_private_key': 'your API user private key',
}
CONNECTWISE_TICKET_PATH = 'v4_6_release/services/system_io/router/openrecord.rails'
def djconnectwise_configuration():
return {
'timeout': 30.0, # Network timeout in seconds
'batch_size': 50, # Number of records to fetch in each request
'max_attempts': 3, # Number of times to make a request before failing
'callback_url': '{}?id='.format(
reverse('connectwise:callback')
),
'callback_host': '{}://{}'.format(
'http' if DEBUG else 'https',
'djconnectwise-host.example.com'
),
}
DJCONNECTWISE_CONF_CALLABLE = djconnectwise_configuration
For ConnectWise Cloud users, CONNECTWISE_SERVER_URL
can be just i.e. https://na.myconnectwise.net
- the library changes to the api-region
domain automatically.
The DJCONNECTWISE_CONF_CALLABLE
function should return a dictionary with the fields shown above. It's a callable so that it can fetch settings at runtime- for example from Constance settings.
Sync objects with this management command: cwsync
. This will take a very long time if there are many objects to fetch.
Register your callbacks with the management command: callbacks_registered
Use standard Django model signals to see when objects change.
To control how user avatar thumbnails are stored, add settings from easy-thumbnails.
To de-register your callbacks, use the callbacks_deleted
management command.
Prepare your environment:
pip install --upgrade -r requirements_test.txt
Try one of:
./runtests.py
python setup.py test
make test
Fork this repo
Make a branch
Make your improvements
Making migrations? Run:
./makemigrations.py
Run the tests (see above)
Make a pull request
MIT
Ā© 2017 Kerkhoff Technologies Inc.
FAQs
Django app for working with ConnectWise. Defines models (tickets, members, companies, etc.) and callbacks.
We found that django-connectwise demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.Ā It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.