معرفی شرکت ها


firstlanguage-python-2.5.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Python client library for FirstLanguage API
ویژگی مقدار
سیستم عامل -
نام فایل firstlanguage-python-2.5.1
نام firstlanguage-python
نسخه کتابخانه 2.5.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده FirstLanguage
ایمیل نویسنده info@firstlanguage.in
آدرس صفحه اصلی https://www.firstlanguage.in/contactus
آدرس اینترنتی https://pypi.org/project/firstlanguage-python/
مجوز -
# Getting Started with FirstLanguage API ## Introduction Collection of NLP APIs to help developers. We have grouped the APIs under Basic and Advanced. Basic APIs cover all basic text operations like POSTag, Stemmer etc and Advanced cover all the APIs like QA, translation etc. ### OpenAPI Specification This API is documented in **OpenAPI v3.0 format**. In addition to standard OpenAPI syntax we use a few [vendor extensions](https://github.com/Redocly/redoc/blob/master/docs/redoc-vendor-extensions.md). ## Building You must have Python `3 >=3.7, <= 3.9` installed on your system to install and run this SDK. This SDK package depends on other Python packages like nose, jsonpickle etc. These dependencies are defined in the `requirements.txt` file that comes with the SDK. To resolve these dependencies, you can use the PIP Dependency manager. Install it by following steps at [https://pip.pypa.io/en/stable/installing/](https://pip.pypa.io/en/stable/installing/). Python and PIP executables should be defined in your PATH. Open command prompt and type `pip --version`. This should display the version of the PIP Dependency Manager installed if your installation was successful and the paths are properly defined. * Using command line, navigate to the directory containing the generated files (including `requirements.txt`) for the SDK. * Run the command `pip install -r requirements.txt`. This should install all the required dependencies. ![Building SDK - Step 1](https://apidocs.io/illustration/python?workspaceFolder=Firstlanguageapi-Python&step=installDependencies) ## Installation The following section explains how to use the firstlanguage_python library in a new project. ### 1. Open Project in an IDE Open up a Python IDE like PyCharm. The basic workflow presented here is also applicable if you prefer using a different editor or IDE. ![Open project in PyCharm - Step 1](https://apidocs.io/illustration/python?workspaceFolder=Firstlanguageapi-Python&step=pyCharm) Click on `Open` in PyCharm to browse to your generated SDK directory and then click `OK`. ![Open project in PyCharm - Step 2](https://apidocs.io/illustration/python?workspaceFolder=Firstlanguageapi-Python&step=openProject0) The project files will be displayed in the side bar as follows: ![Open project in PyCharm - Step 3](https://apidocs.io/illustration/python?workspaceFolder=Firstlanguageapi-Python&projectName=firstlanguage_python&step=openProject1) ### 2. Add a new Test Project Create a new directory by right clicking on the solution name as shown below: ![Add a new project in PyCharm - Step 1](https://apidocs.io/illustration/python?workspaceFolder=Firstlanguageapi-Python&projectName=firstlanguage_python&step=createDirectory) Name the directory as "test". ![Add a new project in PyCharm - Step 2](https://apidocs.io/illustration/python?workspaceFolder=Firstlanguageapi-Python&step=nameDirectory) Add a python file to this project. ![Add a new project in PyCharm - Step 3](https://apidocs.io/illustration/python?workspaceFolder=Firstlanguageapi-Python&projectName=firstlanguage_python&step=createFile) Name it "testSDK". ![Add a new project in PyCharm - Step 4](https://apidocs.io/illustration/python?workspaceFolder=Firstlanguageapi-Python&projectName=firstlanguage_python&step=nameFile) In your python file you will be required to import the generated python library using the following code lines ```python from firstlanguage_python.firstlanguage_python_client import FirstlanguageapiClient ``` ![Add a new project in PyCharm - Step 5](https://apidocs.io/illustration/python?workspaceFolder=Firstlanguageapi-Python&projectName=firstlanguage_python&libraryName=firstlanguage_python.firstlanguage_python_client&className=FirstlanguageapiClient&step=projectFiles) After this you can write code to instantiate an API client object, get a controller object and make API calls. Sample code is given in the subsequent sections. ### 3. Run the Test Project To run the file within your test project, right click on your Python file inside your Test project and click on `Run` ![Run Test Project - Step 1](https://apidocs.io/illustration/python?workspaceFolder=Firstlanguageapi-Python&projectName=firstlanguage_python&libraryName=firstlanguage_python.firstlanguage_python_client&className=FirstlanguageapiClient&step=runProject) ## Test the SDK You can test the generated SDK and the server with test cases. `unittest` is used as the testing framework and `nose` is used as the test runner. You can run the tests as follows: Navigate to the root directory of the SDK and run the following commands ``` pip install -r test-requirements.txt nosetests ``` ## Initialize the API Client **_Note:_** Documentation for the client can be found [here.](/doc/client.md) The following parameters are configurable for the API Client: | Parameter | Type | Description | | --- | --- | --- | | `http_client_instance` | `HttpClient` | The Http Client passed from the sdk user for making requests | | `override_http_client_configuration` | `bool` | The value which determines to override properties of the passed Http Client from the sdk user | | `timeout` | `float` | The value to use for connection timeout. <br> **Default: 60** | | `max_retries` | `int` | The number of times to retry an endpoint call if it fails. <br> **Default: 0** | | `backoff_factor` | `float` | A backoff factor to apply between attempts after the second try. <br> **Default: 2** | | `retry_statuses` | `Array of int` | The http statuses on which retry is to be done. <br> **Default: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524]** | | `retry_methods` | `Array of string` | The http methods on which retry is to be done. <br> **Default: ['GET', 'PUT']** | | `apikey` | `string` | | The API client can be initialized as follows: ```python from firstlanguage_python.firstlanguage_python_client import FirstlanguageapiClient from firstlanguage_python.configuration import Environment client = FirstlanguageapiClient( apikey='apikey', environment=Environment.PRODUCTION,) ``` ## Authorization This API uses `Custom Header Signature`. ## List of APIs * [Basic AP Is](/doc/controllers/basic-ap-is.md) * [Advanced AP Is](/doc/controllers/advanced-ap-is.md) * [Enterprise Only](/doc/controllers/enterprise-only.md) ## Classes Documentation * [Utility Classes](/doc/utility-classes.md) * [HttpResponse](/doc/http-response.md) * [HttpRequest](/doc/http-request.md)


نحوه نصب


نصب پکیج whl firstlanguage-python-2.5.1:

    pip install firstlanguage-python-2.5.1.whl


نصب پکیج tar.gz firstlanguage-python-2.5.1:

    pip install firstlanguage-python-2.5.1.tar.gz