You've already forked httpie-cli
							
							
				mirror of
				https://github.com/httpie/cli.git
				synced 2025-10-30 23:47:52 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			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,
 | |
| )
 |