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

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