github.com/phrase/openapi@v0.0.0-20240514140800-49e8a106740e/openapi-generator/templates/python/python-experimental/README_onlypackage.mustache (about)

     1  # {{{projectName}}}
     2  {{#appDescription}}
     3  {{{appDescription}}}
     4  {{/appDescription}}
     5  
     6  The `{{packageName}}` package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
     7  
     8  - API version: {{appVersion}}
     9  - Package version: {{packageVersion}}
    10  {{^hideGenerationTimestamp}}
    11  - Build date: {{generatedDate}}
    12  {{/hideGenerationTimestamp}}
    13  - Build package: {{generatorClass}}
    14  {{#infoUrl}}
    15  For more information, please visit [{{{infoUrl}}}]({{{infoUrl}}})
    16  {{/infoUrl}}
    17  
    18  ## Requirements.
    19  
    20  Python 2.7 and 3.4+
    21  
    22  ## Installation & Usage
    23  
    24  This python library package is generated without supporting files like setup.py or requirements files
    25  
    26  To be able to use it, you will need these dependencies in your own package that uses this library:
    27  
    28  * urllib3 >= 1.15
    29  * six >= 1.10
    30  * certifi
    31  * python-dateutil
    32  {{#asyncio}}
    33  * aiohttp
    34  {{/asyncio}}
    35  {{#tornado}}
    36  * tornado>=4.2,<5
    37  {{/tornado}}
    38  
    39  ## Getting Started
    40  
    41  In your own code, to use this library to connect and interact with {{{projectName}}},
    42  you can run the following:
    43  
    44  {{> python-experimental/README_common }}