swagger-api / swagger-api/swagger-codegen
Generated Python client is missing some imports
Open
Nobody has claimed this yet.
- Dominant language
- Mustache
- Stars
- 17.8k
- Forks
- 6k
- PR merge metrics
- No merged PRs in 30d
Description
When I generated Pyhon client using https://editor.swagger.io/ in the file api_client.py I get this block (line 52 started):
NATIVE_TYPES_MAPPING = {
'int': int,
'long': int if six.PY3 else long, # noqa: F821
'float': float,
'str': str,
'bool': bool,
'date': datetime.date,
'datetime': datetime.datetime,
'object': object,
}
But under Python 3.6.5 long is not supported anymore and only int is available with long integrated behavior.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start with the generated api_client.py around line 52 and trace which swagger-codegen template produces this block. Reproduce generation through editor.swagger.io with Python 3.6.5, then verify the generated client no longer references an unavailable Python 3 long type.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- python
- Domain
- api
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100