http-content-parser 0.0.14__tar.gz → 0.0.15__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {http_content_parser-0.0.14 → http_content_parser-0.0.15}/PKG-INFO +2 -2
- {http_content_parser-0.0.14 → http_content_parser-0.0.15}/pyproject.toml +1 -1
- {http_content_parser-0.0.14 → http_content_parser-0.0.15}/src/http_content_parser/generate_api_file.py +1 -1
- {http_content_parser-0.0.14 → http_content_parser-0.0.15}/.gitignore +0 -0
- {http_content_parser-0.0.14 → http_content_parser-0.0.15}/LICENSE +0 -0
- {http_content_parser-0.0.14 → http_content_parser-0.0.15}/README.md +0 -0
- {http_content_parser-0.0.14 → http_content_parser-0.0.15}/requirements.txt +0 -0
- {http_content_parser-0.0.14 → http_content_parser-0.0.15}/src/http_content_parser/__init__.py +0 -0
- {http_content_parser-0.0.14 → http_content_parser-0.0.15}/src/http_content_parser/curl_parser.py +0 -0
- {http_content_parser-0.0.14 → http_content_parser-0.0.15}/src/http_content_parser/openapi_parser.py +0 -0
- {http_content_parser-0.0.14 → http_content_parser-0.0.15}/src/http_content_parser/param_util.py +0 -0
- {http_content_parser-0.0.14 → http_content_parser-0.0.15}/src/http_content_parser/postman_parser.py +0 -0
- {http_content_parser-0.0.14 → http_content_parser-0.0.15}/src/http_content_parser/req_data.py +0 -0
- {http_content_parser-0.0.14 → http_content_parser-0.0.15}/src/http_content_parser/swagger2_parser.py +0 -0
- {http_content_parser-0.0.14 → http_content_parser-0.0.15}/tests/test_curl.py +0 -0
|
@@ -44,7 +44,7 @@ class GenerateApiFile:
|
|
|
44
44
|
for payload in payload_list:
|
|
45
45
|
self.write_api_content_to_yaml(yaml_file, payload)
|
|
46
46
|
# remove duplicate key
|
|
47
|
-
self.remove_duplicate_key_for_yaml(yaml_file)
|
|
47
|
+
# self.remove_duplicate_key_for_yaml(yaml_file)
|
|
48
48
|
|
|
49
49
|
def convert_curl_data_to_model(
|
|
50
50
|
self, curl_file_path, curl_filter=None
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{http_content_parser-0.0.14 → http_content_parser-0.0.15}/src/http_content_parser/__init__.py
RENAMED
|
File without changes
|
{http_content_parser-0.0.14 → http_content_parser-0.0.15}/src/http_content_parser/curl_parser.py
RENAMED
|
File without changes
|
{http_content_parser-0.0.14 → http_content_parser-0.0.15}/src/http_content_parser/openapi_parser.py
RENAMED
|
File without changes
|
{http_content_parser-0.0.14 → http_content_parser-0.0.15}/src/http_content_parser/param_util.py
RENAMED
|
File without changes
|
{http_content_parser-0.0.14 → http_content_parser-0.0.15}/src/http_content_parser/postman_parser.py
RENAMED
|
File without changes
|
{http_content_parser-0.0.14 → http_content_parser-0.0.15}/src/http_content_parser/req_data.py
RENAMED
|
File without changes
|
{http_content_parser-0.0.14 → http_content_parser-0.0.15}/src/http_content_parser/swagger2_parser.py
RENAMED
|
File without changes
|
|
File without changes
|