From c8ba3234f3628ea3c3562a0aaca823124a5e750c Mon Sep 17 00:00:00 2001 From: Affan Shaikhsurab <51104750+AffanShaikhsurab@users.noreply.github.com> Date: Tue, 14 Jan 2025 16:10:24 +0530 Subject: [PATCH] Add instructions for running API Dash code in Python http.client Add detailed steps for running generated code in Python http.client on macOS, Windows, and Linux --- doc/user_guide/instructions_to_run_generated_code.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/doc/user_guide/instructions_to_run_generated_code.md b/doc/user_guide/instructions_to_run_generated_code.md index ce5c9589..8bb4a6d1 100644 --- a/doc/user_guide/instructions_to_run_generated_code.md +++ b/doc/user_guide/instructions_to_run_generated_code.md @@ -119,7 +119,17 @@ TODO ## Python (http.client) -TODO +Here are the detailed instructions for running the generated API Dash code in Python using `http.client`: + +### 1. Install Python: +See the instructions above under Python (requests) for detailed steps on how to install Python on macOS, Windows, or Linux. + +### 2. `http.client` is a built-in library: +Unlike other libraries like `requests`, `http.client` is part of Python's standard library, so there is no need to install anything. You can directly use it without any additional installation steps. + +### 3. Execute the generated code: +See the instructions above under Python (requests) `Execute the generated code` for detailed steps on how to run the code +That's it! You have now successfully run the API Dash code using `http.client` in Python. ## Ruby (faraday)