General purpose Python automatization library with nifty real-time web UI
Project description
Automate
Github URL: http://github.com/tuomas2/automate
Read full documentation at http://python-automate.readthedocs.org/
Automate is a general purpose automatization library for Python. Its objective is to offer convenient and robust object-oriented programming framework for complex state machine systems. Automate can be used to design complex automation systems, yet it is easy to learn and fun to use. It was originally developed with home robotics/automatization projects in mind, but is quite general in nature and one could find applications from various fields that could take advantage of Automate. Automate can be embedded in other Python software as a component, which runs its operations in its own threads.
Highlights:
Supported hardware:
Raspberry Pi GPIO input/output ports
Arduino analog and digital input/output ports (via pyFirmata library)
Easy to write extensions to support other hardware
System state saving and restoring via serialization
Intelligent design:
RPC and Websocket interfaces to connect between other applications or other Automate systems.
Comprehensive and customizable Web User Interface
UML graphs can be drawn automaticlaly of the system (as can be seen in the examples of this documentation)
Example
Let’s take a look at a small Automate program as an example:
from automate import *
class MySystem(System):
# HW swtich connected Raspberry Pi GPIO port 1
hardware_switch = RpioSensor(port=1)
# Switch that is controllable, for example, from WEB interface
web_switch = UserBoolSensor()
# Lamp relay that switches lamp on/off, connected to GPIO port 2
lamp = RpioActuator(port=2)
# Program that controls the system behaviour
program = Program(
active_condition=Or('web_switch', 'hardware_switch'),
on_activate=SetStatus('lamp', True)
)
my_system = MySystem()
This simple example has two sensors hardware_switch, web_switch, actuator (lamp) and a program that contains logic what to do and when. Here, lamp is switched on if either web_switch or hardware_switch has status True.
Installing Automate
Automate can be installed like ordinary python package. I recommend installation in within virtual environment (see virtualenv).
(optional): Create and start using virtualenv:
mkvirtualenv automate workon automate
Install from pypi:
pip install automate
Optionally, you can specify some of the extras, i.e. web, rpc, raspberrypi, arduino:
pip install automate[web,rpc,raspberrypi,arduino]
or if you want them all:
pip install automate[all]
License
Automate is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
Automate is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with Automate. If not, see http://www.gnu.org/licenses/.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file automate-0.10.9.tar.gz
.
File metadata
- Download URL: automate-0.10.9.tar.gz
- Upload date:
- Size: 352.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1fe025b7c63944f8073dde8a847b2d95c36d37df65f2af6a312003196c3b48ac |
|
MD5 | 4370cf99931bb1f53e2ffb2cd8652d04 |
|
BLAKE2b-256 | dc39d2c7b936342b91ebe62f184118f55123c7ba75612235f5a5cf3d011a5ac7 |
File details
Details for the file automate-0.10.9-py3-none-any.whl
.
File metadata
- Download URL: automate-0.10.9-py3-none-any.whl
- Upload date:
- Size: 370.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b96aa33a7144b631cdeda6bd5f0e929381e1065e4f00f8f60213b2071d5a357e |
|
MD5 | b6513e6f4e21a12f8fbb177404ea2fce |
|
BLAKE2b-256 | 96e250cd67e8df24ae48513e44327a4e910aa78957650475979d4173a6347fbe |