معرفی شرکت ها


apache-airflow-client-2.6.0rc1


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Apache Airflow API (Stable)
ویژگی مقدار
سیستم عامل -
نام فایل apache-airflow-client-2.6.0rc1
نام apache-airflow-client
نسخه کتابخانه 2.6.0rc1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Apache Software Foundation
ایمیل نویسنده dev@airflow.apache.org
آدرس صفحه اصلی https://airflow.apache.org/
آدرس اینترنتی https://pypi.org/project/apache-airflow-client/
مجوز Apache License 2.0
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> # Apache Airflow Python Client > **_NOTE:_** The Apache Airflow Client is still under active development and some methods > or APIs might be broken. Please raise an issue in github if you encounter any such issues. ## Requirements. Python >= 3.6 ## Installation & Usage ### pip install You can install directly using pip: ```sh pip install apache-airflow-client ```` ### Setuptools Or install via [Setuptools](http://pypi.python.org/pypi/setuptools). ```sh git clone git@github.com:apache/airflow-client-python.git cd airflow-client-python python setup.py install --user ``` (or `sudo python setup.py install` to install the package for all users) Then import the package: ```python import airflow_client.client ``` ## Getting Started Please follow the [installation procedure](#installation--usage) and then run the following: ```python import airflow_client.client from pprint import pprint from airflow_client.client.api import config_api # # In case of the basic authentication below. Make sure: # - Airflow is configured with the basic_auth as backend: # auth_backend = airflow.api.auth.backend.basic_auth # - Make sure that the client has been generated with securitySchema Basic. # Configure HTTP basic authorization: Basic configuration = airflow_client.client.Configuration( host="http://localhost/api/v1", username='admin', password='admin' ) # Enter a context with an instance of the API client with airflow_client.client.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = config_api.ConfigApi(api_client) try: # Get current configuration api_response = api_instance.get_config() pprint(api_response) except airflow_client.client.ApiException as e: print("Exception when calling ConfigApi->get_config: %s\n" % e) ``` See [README](./airflow_client/README.md#documentation-for-api-endpoints) for full client API documentation.


نیازمندی

مقدار نام
>=1.25.3 urllib3
- python-dateutil


زبان مورد نیاز

مقدار نام
~=3.6 Python


نحوه نصب


نصب پکیج whl apache-airflow-client-2.6.0rc1:

    pip install apache-airflow-client-2.6.0rc1.whl


نصب پکیج tar.gz apache-airflow-client-2.6.0rc1:

    pip install apache-airflow-client-2.6.0rc1.tar.gz