mirror of
https://github.com/httpie/cli.git
synced 2024-11-26 01:33:33 +01:00
d10e108b5f
As a side effect, XHTML responses will be pretty-printed too.
21 lines
520 B
Python
21 lines
520 B
Python
from .manager import PluginManager
|
|
from .builtin import BasicAuthPlugin, DigestAuthPlugin
|
|
from ..output.formatters.headers import HeadersFormatter
|
|
from ..output.formatters.json import JSONFormatter
|
|
from ..output.formatters.xml import XMLFormatter
|
|
from ..output.formatters.colors import ColorFormatter
|
|
|
|
|
|
plugin_manager = PluginManager()
|
|
|
|
|
|
# Register all built-in plugins.
|
|
plugin_manager.register(
|
|
BasicAuthPlugin,
|
|
DigestAuthPlugin,
|
|
HeadersFormatter,
|
|
JSONFormatter,
|
|
XMLFormatter,
|
|
ColorFormatter,
|
|
)
|