LICENSE
MANIFEST.in
README.md
setup.cfg
setup.py
azure/__init__.pyi
azure/functions_worker/__init__.py
azure/functions_worker/aio_compat.py
azure/functions_worker/dispatcher.py
azure/functions_worker/functions.py
azure/functions_worker/loader.py
azure/functions_worker/testutils.py
azure/functions_worker/typing_inspect.py
azure/functions_worker/bindings/__init__.py
azure/functions_worker/bindings/blob.py
azure/functions_worker/bindings/context.py
azure/functions_worker/bindings/cosmosdb.py
azure/functions_worker/bindings/eventgrid.py
azure/functions_worker/bindings/eventhub.py
azure/functions_worker/bindings/http.py
azure/functions_worker/bindings/meta.py
azure/functions_worker/bindings/out.py
azure/functions_worker/bindings/queue.py
azure/functions_worker/bindings/servicebus.py
azure/functions_worker/bindings/timer.py
azure/functions_worker/protos/__init__.py
azure_functions_worker.egg-info/PKG-INFO
azure_functions_worker.egg-info/SOURCES.txt
azure_functions_worker.egg-info/dependency_links.txt
azure_functions_worker.egg-info/requires.txt
azure_functions_worker.egg-info/top_level.txt
tests/__init__.py
tests/test_blob_functions.py
tests/test_broken_functions.py
tests/test_code_quality.py
tests/test_cosmosdb_functions.py
tests/test_eventgrid_functions.py
tests/test_eventhub_functions.py
tests/test_http_functions.py
tests/test_loader.py
tests/test_mock_http_functions.py
tests/test_mock_timer_functions.py
tests/test_queue_functions.py
tests/test_servicebus_functions.py
tests/test_types.py
tests/test_typing_inspect.py
tests/blob_functions/host.json
tests/blob_functions/blob_trigger/function.json
tests/blob_functions/blob_trigger/main.py
tests/blob_functions/get_blob_bytes/function.json
tests/blob_functions/get_blob_bytes/main.py
tests/blob_functions/get_blob_filelike/function.json
tests/blob_functions/get_blob_filelike/main.py
tests/blob_functions/get_blob_return/function.json
tests/blob_functions/get_blob_return/main.py
tests/blob_functions/get_blob_str/function.json
tests/blob_functions/get_blob_str/main.py
tests/blob_functions/get_blob_triggered/function.json
tests/blob_functions/get_blob_triggered/main.py
tests/blob_functions/ping/function.json
tests/blob_functions/ping/main.py
tests/blob_functions/put_blob_bytes/function.json
tests/blob_functions/put_blob_bytes/main.py
tests/blob_functions/put_blob_filelike/function.json
tests/blob_functions/put_blob_filelike/main.py
tests/blob_functions/put_blob_return/function.json
tests/blob_functions/put_blob_return/main.py
tests/blob_functions/put_blob_str/function.json
tests/blob_functions/put_blob_str/main.py
tests/blob_functions/put_blob_trigger/function.json
tests/blob_functions/put_blob_trigger/main.py
tests/broken_functions/bad_out_annotation/function.json
tests/broken_functions/bad_out_annotation/main.py
tests/broken_functions/import_error/function.json
tests/broken_functions/import_error/main.py
tests/broken_functions/inout_param/function.json
tests/broken_functions/inout_param/main.py
tests/broken_functions/invalid_context_param/function.json
tests/broken_functions/invalid_context_param/main.py
tests/broken_functions/invalid_http_trigger_anno/function.json
tests/broken_functions/invalid_http_trigger_anno/main.py
tests/broken_functions/invalid_in_anno/function.json
tests/broken_functions/invalid_in_anno/main.py
tests/broken_functions/invalid_in_anno_non_type/function.json
tests/broken_functions/invalid_in_anno_non_type/main.py
tests/broken_functions/invalid_out_anno/function.json
tests/broken_functions/invalid_out_anno/main.py
tests/broken_functions/invalid_return_anno/function.json
tests/broken_functions/invalid_return_anno/main.py
tests/broken_functions/invalid_return_anno_non_type/function.json
tests/broken_functions/invalid_return_anno_non_type/main.py
tests/broken_functions/missing_json_param/function.json
tests/broken_functions/missing_json_param/main.py
tests/broken_functions/missing_py_param/function.json
tests/broken_functions/missing_py_param/main.py
tests/broken_functions/module_not_found_error/function.json
tests/broken_functions/module_not_found_error/main.py
tests/broken_functions/return_param_in/function.json
tests/broken_functions/return_param_in/main.py
tests/broken_functions/syntax_error/function.json
tests/broken_functions/syntax_error/main.py
tests/broken_functions/unsupported_bind_type/function.json
tests/broken_functions/unsupported_bind_type/main.py
tests/broken_functions/unsupported_ret_type/function.json
tests/broken_functions/unsupported_ret_type/main.py
tests/broken_functions/wrong_binding_dir/function.json
tests/broken_functions/wrong_binding_dir/main.py
tests/broken_functions/wrong_param_dir/function.json
tests/broken_functions/wrong_param_dir/main.py
tests/cosmosdb_functions/host.json
tests/cosmosdb_functions/cosmosdb_input/__init__.py
tests/cosmosdb_functions/cosmosdb_input/function.json
tests/cosmosdb_functions/cosmosdb_trigger/__init__.py
tests/cosmosdb_functions/cosmosdb_trigger/function.json
tests/cosmosdb_functions/get_cosmosdb_triggered/function.json
tests/cosmosdb_functions/get_cosmosdb_triggered/main.py
tests/cosmosdb_functions/ping/function.json
tests/cosmosdb_functions/ping/main.py
tests/cosmosdb_functions/put_document/__init__.py
tests/cosmosdb_functions/put_document/function.json
tests/eventgrid_functions/host.json
tests/eventgrid_functions/eventgrid_trigger/__init__.py
tests/eventgrid_functions/eventgrid_trigger/function.json
tests/eventgrid_functions/get_eventgrid_triggered/function.json
tests/eventgrid_functions/get_eventgrid_triggered/main.py
tests/eventgrid_functions/ping/function.json
tests/eventgrid_functions/ping/main.py
tests/eventhub_functions/host.json
tests/eventhub_functions/eventhub_output/__init__.py
tests/eventhub_functions/eventhub_output/function.json
tests/eventhub_functions/eventhub_trigger/__init__.py
tests/eventhub_functions/eventhub_trigger/function.json
tests/eventhub_functions/get_eventhub_triggered/function.json
tests/eventhub_functions/get_eventhub_triggered/main.py
tests/eventhub_functions/ping/function.json
tests/eventhub_functions/ping/main.py
tests/http_functions/host.json
tests/http_functions/accept_json/function.json
tests/http_functions/accept_json/main.py
tests/http_functions/async_logging/function.json
tests/http_functions/async_logging/main.py
tests/http_functions/async_return_str/function.json
tests/http_functions/async_return_str/main.py
tests/http_functions/no_return/function.json
tests/http_functions/no_return/main.py
tests/http_functions/no_return_returns/function.json
tests/http_functions/no_return_returns/main.py
tests/http_functions/ping/function.json
tests/http_functions/ping/main.py
tests/http_functions/remapped_context/function.json
tests/http_functions/remapped_context/main.py
tests/http_functions/return_bytes/function.json
tests/http_functions/return_bytes/main.py
tests/http_functions/return_context/function.json
tests/http_functions/return_context/main.py
tests/http_functions/return_http/function.json
tests/http_functions/return_http/main.py
tests/http_functions/return_http_404/function.json
tests/http_functions/return_http_404/main.py
tests/http_functions/return_http_auth_admin/function.json
tests/http_functions/return_http_auth_admin/main.py
tests/http_functions/return_http_redirect/function.json
tests/http_functions/return_http_redirect/main.py
tests/http_functions/return_out/function.json
tests/http_functions/return_out/main.py
tests/http_functions/return_request/function.json
tests/http_functions/return_request/main.py
tests/http_functions/return_str/function.json
tests/http_functions/return_str/main.py
tests/http_functions/sync_logging/function.json
tests/http_functions/sync_logging/main.py
tests/http_functions/unhandled_error/function.json
tests/http_functions/unhandled_error/main.py
tests/load_functions/host.json
tests/load_functions/ping/function.json
tests/load_functions/ping/main.py
tests/load_functions/relimport/function.json
tests/load_functions/relimport/main.py
tests/load_functions/relimport/relative.py
tests/load_functions/simple/function.json
tests/load_functions/simple/main.py
tests/load_functions/subdir/function.json
tests/load_functions/subdir/sub/main.py
tests/queue_functions/host.json
tests/queue_functions/get_queue_blob/function.json
tests/queue_functions/get_queue_blob/main.py
tests/queue_functions/get_queue_blob_message_return/function.json
tests/queue_functions/get_queue_blob_message_return/main.py
tests/queue_functions/get_queue_blob_return/function.json
tests/queue_functions/get_queue_blob_return/main.py
tests/queue_functions/ping/function.json
tests/queue_functions/ping/main.py
tests/queue_functions/put_queue/function.json
tests/queue_functions/put_queue/main.py
tests/queue_functions/put_queue_message_return/function.json
tests/queue_functions/put_queue_message_return/main.py
tests/queue_functions/put_queue_return/function.json
tests/queue_functions/put_queue_return/main.py
tests/queue_functions/queue_trigger/function.json
tests/queue_functions/queue_trigger/main.py
tests/queue_functions/queue_trigger_message_return/function.json
tests/queue_functions/queue_trigger_message_return/main.py
tests/queue_functions/queue_trigger_return/function.json
tests/queue_functions/queue_trigger_return/main.py
tests/servicebus_functions/host.json
tests/servicebus_functions/get_servicebus_triggered/__init__.py
tests/servicebus_functions/get_servicebus_triggered/function.json
tests/servicebus_functions/ping/function.json
tests/servicebus_functions/ping/main.py
tests/servicebus_functions/put_message/__init__.py
tests/servicebus_functions/put_message/function.json
tests/servicebus_functions/put_message_return/__init__.py
tests/servicebus_functions/put_message_return/function.json
tests/servicebus_functions/servicebus_trigger/__init__.py
tests/servicebus_functions/servicebus_trigger/function.json
tests/timer_functions/host.json
tests/timer_functions/return_pastdue/function.json
tests/timer_functions/return_pastdue/main.py