|
Project Information
Links
|
This is combination of Django Forms and the Freshbooks API refreshbooks from Owen Jacobson here http://pypi.python.org/pypi/refreshbooks/. INSTALLATION: # Download dependacies easy_install oauth easy_install functional easy_install lxml easy_install httplib2 # Checkout the code into a dir named django_freshbooks cd /Library/Python/2.6/site-packages/ # or /var/lib/python2.6/site-packages svn co http://django-freshbooks.googlecode.com/svn/trunk/ django_freshbooks # Add 2 settings to your settings.py cd /var/my/django/project/ echo 'FRESHBOOKS_TOKEN = "MYSECRETKEYFROMFRESHBOOKS" FRESHBOOKS_URL = "myurl.freshbooks.com"' >> settings.py # Add to urls.py (r'^freshbooks/', include('django_freshbooks.urls')),
|