Skip to main content

An application framework with built-in drivers (Controllers), data holders (Sources) and config parsers (Rules). Also includes a web interface for configuration and troubleshooting.

Project description

Summary

An application framework with built-in drivers (Controllers), data holders (Sources) and config parsers (Rules). Also includes a web interface for configuration and troubleshooting.

Features

  • Abstract base classes for creating custom controllers, sources and rules

  • The configuration is done using configparser with extended interpolation

  • Start a new netdef project with cookiecutter or make-project. Templates available at https://gitlab.com/fholmer/netdef-project/

  • Built-in Controllers:

    • OpcUa server / client (freeopcua)

    • TcpModbus server / client (pymodbus)

    • icmp ping / url ping

    • XmlRpc client

    • trigger events by using crontab format (crontab)

    • disk, memory and CPU monitoring (psutil)

    • MQTT client (using a simple messaging format called DataMessage) (paho-mqtt)

    • Simple RESTJson client

    • Simple Influxdb logger (influxdb)

  • Built-in Rules:

    • Generic CSV config parser

    • Generic INI config parser

    • Generic Yaml config parser (PyYAML)

  • Built-in application engines:

    • threaded engine with stdout/stderr only

    • threaded engine with web-interface (webadmin)

    • serve webadmin behind nginx reverse proxy

Use Cases

Netdef is useful if you want to create a middleware that can translate a protocol into a completely different protocol or data format into a completely different data format.

Getting started

First install make-project:

$ python3 -m pip install --user make

Create your first application:

$ python3 -m make project gl:fholmer/netdef-project/minimal-app

When asked for project_name type Test-App:

project_name? [First-App]: Test-App

Setup development environment for your application:

$ cd Test-App
$ python3 -m venv venv
$ source venv/bin/activate
$ pip install wheel
$ pip install -r requirements-dev.txt
$ pip install -r requirements.txt
$ python -m test_app -i .

Run:

$ python -m test_app -r .

CTRL-C to exit

Package your application:

$ python setup.py bdist_wheel

Exit development environment:

$ deactivate

Prepare deployment:

$ sudo mkdir -p /opt/test-app
$ sudo chown $USER:$USER /opt/test-app/
$ python3 -m venv /opt/test-app/

Deploy your application:

$ source /opt/test-app/bin/activate
$ pip install ./dist/Test_App-0.1.0-py3-none-any.whl
$ python -m test_app -i /opt/test-app/

Install as service:

$ sudo /opt/test-app/bin/Test-App-Service -u $USER --install /opt/test-app/

Enable and run:

$ sudo systemctl --system daemon-reload
$ sudo systemctl enable test-app-service.service
$ sudo systemctl start test-app-service.service

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

netdef-1.0.6-py3-none-any.whl (131.3 kB view details)

Uploaded Python 3

File details

Details for the file netdef-1.0.6-py3-none-any.whl.

File metadata

  • Download URL: netdef-1.0.6-py3-none-any.whl
  • Upload date:
  • Size: 131.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for netdef-1.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 981fedb5afd9a76026bc9727ab69a5986cecf434ef2289f0409eddef109f0253
MD5 0c264cd5466d08a3bec3ff4eb54dbd72
BLAKE2b-256 820c0ac57c5e089010877f29b9293e9b3bfaa0ea300f0c445b6e99acd4d7dca1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page