Metadata-Version: 1.1
Name: httpie-django-auth
Version: 0.1.0
Summary: django Auth plugin for HTTPie.
Home-page: https://github.com/chillaranand/httpie-django-auth
Author: Chillar Anand
Author-email: anand21nanda@gmail.com
License: UNKNOWN
Download-URL: https://github.com/chillaranand/httpie-django-auth
Description: ## httpie-django-auth
        
        django auth plugin for HTTPie.
        
        
        ## Installation
        
        
            $ pip install httpie-django-auth
        
        You should now see ``django`` under ``--auth-type`` in ``$ http --help`` output.
        
        
        ## Usage
        
        By default httpie-django-auth uses `/admin/login` to login. If you need to use some other url for logging, set `HTTPIE_DJANGO_AUTH_URL` environment variable.
        
        
            export HTTPIE_DJANGO_AUTH_URL='/accounts/login/'
        
        Make requests to your site
        
            $ http --auth-type=django --auth='username:password' example.org
            $ http -A=django --auth='username:password' example.org
            $ http -A=django --auth='username:password' example.org/profile
            $ http -A=django --auth='username:password' http://127.0.0.1:8000/profile
        
        
        ## License
        
        See LICENSE.txt
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Intended Audience :: Developers
Classifier: Environment :: Plugins
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Utilities
