new project started

This commit is contained in:
2017-08-13 12:05:23 +02:00
commit 8105323d18
11 changed files with 3528 additions and 0 deletions

19
revpimodio2/summary.py Normal file
View File

@@ -0,0 +1,19 @@
#
# python3-RevPiModIO
#
# Webpage: https://revpimodio.org/
# (c) Sven Sager, License: LGPLv3
#
# -*- coding: utf-8 -*-
"""Bildet die Summary-Sektion von piCtory ab."""
class Summary(object):
"""Bildet die Summary-Sektion der config.rsc ab."""
def __init__(self, summary):
"""Instantiiert die RevPiSummary-Klasse.
@param summary piCtory Summaryinformationen"""
self.inptotal = summary["inpTotal"]
self.outtotal = summary["outTotal"]