2015-02-05 16:25:00 +02:00
|
|
|
"""
|
|
|
|
WARNING: The plugin API is still work in progress and will
|
|
|
|
probably be completely reworked by v1.0.0.
|
|
|
|
|
|
|
|
"""
|
|
|
|
from httpie.plugins.base import (
|
|
|
|
AuthPlugin, FormatterPlugin,
|
|
|
|
ConverterPlugin, TransportPlugin
|
|
|
|
)
|
2014-04-29 00:33:30 +03:00
|
|
|
from httpie.plugins.manager import PluginManager
|
|
|
|
from httpie.plugins.builtin import BasicAuthPlugin, DigestAuthPlugin
|
|
|
|
from httpie.output.formatters.headers import HeadersFormatter
|
|
|
|
from httpie.output.formatters.json import JSONFormatter
|
|
|
|
from httpie.output.formatters.xml import XMLFormatter
|
|
|
|
from httpie.output.formatters.colors import ColorFormatter
|
2013-09-22 00:46:15 +03:00
|
|
|
|
|
|
|
|
|
|
|
plugin_manager = PluginManager()
|
2014-04-29 00:33:30 +03:00
|
|
|
plugin_manager.register(BasicAuthPlugin,
|
|
|
|
DigestAuthPlugin)
|
|
|
|
plugin_manager.register(HeadersFormatter,
|
|
|
|
JSONFormatter,
|
|
|
|
XMLFormatter,
|
|
|
|
ColorFormatter)
|