Revert "Revert "Added python http client codegen and Updated python into language dropdown""

This reverts commit f229c2aa95fc458857129423a8e6cc56a2862f69.
This commit is contained in:
morpheus-30
2023-07-04 23:06:09 +05:30
parent f229c2aa95
commit 3034aa80d5
4 changed files with 118 additions and 1 deletions

View File

@ -230,7 +230,8 @@ const kDefaultContentType = ContentType.json;
enum CodegenLanguage {
dartHttp("Dart (http)"),
kotlinOkHttp("Kotlin (OkHttp)");
kotlinOkHttp("Kotlin (OkHttp)"),
pythonHttpClient("Python (http.client)");
const CodegenLanguage(this.label);
final String label;