Metadata-Version: 1.0
Name: django-socialtext
Version: 0.2.4
Summary: Django application to integrate Socialtext into your project.
Home-page: UNKNOWN
Author: Justin Murphy, The Hanover Insurance Group
Author-email: ju1murphy@hanover.com
License: UNKNOWN
Description: django-socialtext
        =================
        
        A django application that helps integrate Socialtext with your project.
        
        This application will help you interact with the Socialtext ReST API and
        receive webhooks from your Socialtext appliance.
        
        Installation
        ------------
        
        1. Install django-socialtext on your PYTHONPATH::
        
        	pip install django-socialtext
        
        	# or
        
        	easy_install django-socialtext
        
        2. Add 'djsocialtext' to your project's INSTALLED_APPS
        3. Configure the djsocialtext settings::
        
        	ST_URL = "https://st.example.com" # URL for your ST appliance
        
        	ST_USER = "joeuser" # your ST username
        
        	ST_PASSWORD = "joepassword" # your ST password
        
        
        Usage
        -----
        
        Djsocialtext helps you interact with the ReST API by providing a shortcut method
        to instantiate a python-socialtext__ API client using your project's settings::
        
        	from djsocialtext import get_api
        
        	api = get_api()
        
        	api.workspaces.list()
        	[<Workspace: blogs>, <Workspace: marketing>]
        
        __ https://github.com/hanover/python-socialtext
        
        Contributing
        ------------
        
        Development takes place on GitHub__. You can file pull requests and issue tickets there.
        
        __ https://github.com/hanover/django-socialtext
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Framework :: Django
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
