mirror of
				https://github.com/ets-labs/python-dependency-injector.git
				synced 2025-11-04 01:47:36 +03:00 
			
		
		
		
	* Fix a typo in the docblock of the Configuration provider * Update the changelog * Add tutorial sections * Switch to use https for httpbin.org requests * Add what we are going to build section * Fix ``Makefile`` to run ``aiohttp`` integration tests on Python 3.5+ * Add prerequisities and prepare the env sections * Add logging, config and the dispacher sections * Change logging * Fix multiple typos in the ``flask`` and ``aiohttp`` tutorials * Add the initial and dirty version * Fix multiple typos in the ``flask`` and ``aiohttp`` tutorials * Fix the 3.27.0 changelog * Finish all the parts before the dispatcher * Finish dispatcher section * Update http monitor logging format * Finish the tutorial * Fix docblock in the dispatcher module * Update changelog * Add meta keywords and description
		
			
				
	
	
		
			18 lines
		
	
	
		
			291 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			291 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
log:
 | 
						|
  level: "INFO"
 | 
						|
  format: "[%(asctime)s] [%(levelname)s] [%(name)s]: %(message)s"
 | 
						|
 | 
						|
monitors:
 | 
						|
 | 
						|
  example:
 | 
						|
    method: "GET"
 | 
						|
    url: "http://example.com"
 | 
						|
    timeout: 5
 | 
						|
    check_every: 5
 | 
						|
 | 
						|
  httpbin:
 | 
						|
    method: "GET"
 | 
						|
    url: "https://httpbin.org/get"
 | 
						|
    timeout: 5
 | 
						|
    check_every: 5
 |