All Projects → Chaffelson → Nipyapi

Chaffelson / Nipyapi

Licence: other
A convenient Python wrapper for Apache NiFi

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Nipyapi

Candymail
Email Automations for Node.js
Stars: ✭ 163 (-3.55%)
Mutual labels:  automation
Alfred Workflows
Amazing Alfred Workflows
Stars: ✭ 2,163 (+1179.88%)
Mutual labels:  automation
Autopilot Rs
A simple, cross-platform GUI automation module for Rust.
Stars: ✭ 168 (-0.59%)
Mutual labels:  automation
Zerodoor
A script written lazily for generating cross-platform backdoors on the go :)
Stars: ✭ 163 (-3.55%)
Mutual labels:  automation
Lares
R Library for Analytics and Machine Learning
Stars: ✭ 164 (-2.96%)
Mutual labels:  automation
Python devops book
[Book-2020] Python For DevOps: Learn Ruthlessly Effective Automation
Stars: ✭ 166 (-1.78%)
Mutual labels:  automation
Crud
CRUD is Really Urgly coDed -- 万能快速原型系统
Stars: ✭ 162 (-4.14%)
Mutual labels:  automation
Rcc
RCC is a set of tooling that allows you to create, manage, and distribute Python-based self-contained automation packages - or 'robots' as we call them.
Stars: ✭ 168 (-0.59%)
Mutual labels:  automation
Sherpa
Sherpa is a highly available, fast, and flexible horizontal job scaling for HashiCorp Nomad. It is capable of running in a number of different modes to suit different requirements, and can scale based on Nomad resource metrics or external sources.
Stars: ✭ 165 (-2.37%)
Mutual labels:  automation
Python Imagesearch
A wrapper around opencv2 and pyautogui to do image searching easily.
Stars: ✭ 167 (-1.18%)
Mutual labels:  automation
Ansible Raspi Playbooks
Playbooks for setup and updating of raspberry pi projects.
Stars: ✭ 162 (-4.14%)
Mutual labels:  automation
Gatling Maven Plugin Demo
Showcase of the Gatling Plugin for Maven
Stars: ✭ 162 (-4.14%)
Mutual labels:  automation
Coingecko Api
A Node.js wrapper for the CoinGecko API with no dependencies.
Stars: ✭ 159 (-5.92%)
Mutual labels:  api-wrapper
Node Ethernet Ip
A Lightweight Ethernet/IP API written to interface with Rockwell ControlLogix/CompactLogix Controllers.
Stars: ✭ 163 (-3.55%)
Mutual labels:  automation
Powershell
PowerShell scripts for Mick's IT Blogs
Stars: ✭ 167 (-1.18%)
Mutual labels:  automation
Jda
Java wrapper for the popular chat & VOIP service: Discord https://discord.com
Stars: ✭ 2,598 (+1437.28%)
Mutual labels:  api-wrapper
Xlwings
xlwings is a BSD-licensed Python library that makes it easy to call Python from Excel and vice versa. It works with Microsoft Excel on Windows and macOS.
Stars: ✭ 2,181 (+1190.53%)
Mutual labels:  automation
Homeassistant
Example Home Assistant Configs
Stars: ✭ 168 (-0.59%)
Mutual labels:  automation
Winhue
Controlling the Philips Hue lighting system from your Windows PC.
Stars: ✭ 167 (-1.18%)
Mutual labels:  automation
Blocks.js
JavaScript dataflow graph editor
Stars: ✭ 165 (-2.37%)
Mutual labels:  dataflow

============== |nipy| NiPyApi

.. |nipy| image:: https://image.ibb.co/f0FRs0/nipy.png :height: 28px

Nifi-Python-Api: A rich Apache NiFi Python Client SDK

.. image:: https://img.shields.io/pypi/v/nipyapi.svg :target: https://pypi.python.org/pypi/nipyapi :alt: Release Status

.. image:: https://img.shields.io/travis/Chaffelson/nipyapi.svg :target: https://travis-ci.org/Chaffelson/nipyapi :alt: Build Status

.. image:: https://readthedocs.org/projects/nipyapi/badge/?version=latest :target: https://nipyapi.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status

.. image:: https://pyup.io/repos/github/Chaffelson/nipyapi/shield.svg :target: https://pyup.io/repos/github/Chaffelson/nipyapi/ :alt: Python Updates

.. image:: https://coveralls.io/repos/github/Chaffelson/nipyapi/badge.svg?branch=master :target: https://coveralls.io/github/Chaffelson/nipyapi?branch=master&service=github :alt: test coverage

.. image:: https://img.shields.io/badge/License-Apache%202.0-blue.svg :target: https://opensource.org/licenses/Apache-2.0 :alt: License

Features

Three layers of Python support for working with Apache NiFi:

  • High-level Demos and example scripts
  • Mid-level Client SDK for typical complex tasks
  • Low-level Client SDKs for the full API implementation of NiFi and selected sub-projects

Functionality Highlights:

  • Detailed documentation of the full SDK at all levels
  • CRUD wrappers for common task areas like Processor Groups, Processors, Templates, Registry Clients, Registry Buckets, Registry Flows, etc.
  • Convenience functions for inventory tasks, such as recursively retrieving the entire canvas, or a flat list of all Process Groups
  • Support for scheduling and purging flows, controller services, and connections
  • Support for fetching and updating Variable Registries
  • Support for import/export of Versioned Flows from NiFi-Registry
  • Docker Compose configurations for testing and deployment
  • A scripted deployment of an interactive environment, and a secured configuration, for testing and demonstration purposes

Please see the issue <https://github.com/Chaffelson/nipyapi/issues>_ register for more information on current development.

Quick Start

| There are several scripts to produce demo environments in nipyapi.demo.* | The mid-level functionality is in nipyapi.canvas / nipyapi.security / nipyapi.templates / nipyapi.versioning | You can access the entire API using the low-level SDKs in nipyapi.nifi / nipyapi.registry

The easiest way to install NiPyApi is with pip::

# in bash
pip install nipyapi

You can set the config for your endpoints in the central config file::

# in python
import nipyapi
nipyapi.config.nifi_config.host = 'http://localhost:8080/nifi-api'
nipyapi.config.registry_config.host = 'http://localhost:18080/nifi-registry-api'

Then import a module and execute tasks::

nipyapi.canvas.get_root_pg_id()
>'4d5dcf9a-015e-1000-097e-e505ed0f7fd2'

You can use the Docker demos to create a secured interactive console showing many features::

from nipyapi.demo.secured_console import *
from nipyapi.demo.console import *

You can also explore the scripts to get ideas for how NiPyAPi can be used to automate your environment.

Please check out the Contribution Guide <https://github.com/Chaffelson/nipyapi/blob/master/docs/contributing.rst>_ if you are interested in contributing to the feature set.

Background and Documentation

| For more information on Apache NiFi, please visit https://nifi.apache.org <https://nifi.apache.org>_ | For Documentation on this package please visit https://nipyapi.readthedocs.io. <https://nipyapi.readthedocs.io/en/latest>_

NiFi Version Support

| Currently we are testing against NiFi versions 1.1.2 - 1.10, and NiFi-Registry versions 0.1.0 - 0.5.0. | If you find a version compatibility problem please raise an issue <https://github.com/Chaffelson/nipyapi/issues>_

Python Requirements

| Python 2.7 or 3.5-7 supported, though other versions may work. We will shortly stop supporting Python2 | Tested on AL2 and OSX 10.14.x - Windows automated testing not attempted | Outside of the standard Python modules, we make use of lxml, DeepDiff, ruamel.yaml and xmltodict in processing, and Docker for demo/tests.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].