Skip to content

Django app for working with Autotask REST API. Defines models (tickets, technicians, companies, etc.). Used in https://www.cwkanban.com/

License

Notifications You must be signed in to change notification settings

pysanders/django-autotask

 
 

Repository files navigation

django-autotask

Django app for working with Autotask. Defines models (tickets, members, companies, etc.).

Requirements

  • Python 3.5
  • Django 2.0

Other versions may work; we haven't tried.

Installation

From source:

git clone git@github.com:KerkhoffTechnologies/django-autotask.git
cd django-autotask
python setup.py install

Usage

  1. Add to INSTALLED_APPS

    INSTALLED_APPS = [
        ...
        'djautotask',
        'easy_thumbnails'  # Used for managing user pictures
        ...
    ]
    

Testing

pip install --upgrade -r requirements_test.txt

Try one of:

./runtests.py
python setup.py test
make test

Contributing

  • Fork this repo

  • Make a branch

  • Make your improvements

    Making migrations? Run:

    ./makemigrations.py
    
  • Run the tests (see above)

  • Make a pull request

License

MIT

Copyright

©2018 Kerkhoff Technologies Inc.

About

Django app for working with Autotask REST API. Defines models (tickets, technicians, companies, etc.). Used in https://www.cwkanban.com/

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 97.6%
  • Makefile 2.4%