Skip to main content

A Python wrapper for the snap7 PLC communication library with easy variable management

Project description

Python Snap7 Easy Vars

A Python wrapper for the snap7 PLC communication library with easy variable management. This library simplifies reading and writing variables to Siemens PLCs using snap7 by allowing users to define data structures that map directly to PLC data blocks. It wraps around the python-snap7 library and provides an easy-to-use interface for defining PLC variables, reading from, and writing to the PLC.

Quick Start

Install the package via pip:

pip install python-snap7-easy-vars

Import the library and create a data structure:

import snap7_easy_vars

class MyPLCData(snap7_easy_vars.PLCData):
    # Define PLC variables with their data types and offsets
    temperature = snap7_easy_vars.PLCRealField(byte_offset=0) 
    pressure = snap7_easy_vars.PLCWordField(byte_offset=4)

    # By default, fields are read-only; to make a field settable, use the 'settable' parameter
    status = snap7_easy_vars.PLCBoolField(byte_offset=6, bit_offset=0, settable=True)

Connect to the PLC and read/write data:

my_plc_data = MyPLCData()
my_plc_connection = snap7_easy_vars.PLCConnection(
    ip_address="192.168.0.1", # PLC IP address
    data_store=my_plc_data,
    db_number=1, # PLC DB number
    rack=0, # PLC rack number
    slot=1, # PLC slot number
    port=102, # PLC port number
)

# Connect to the PLC
my_plc_connection.connect()

# Read data from the PLC
my_plc_connection.read()

# Read variables
print(f"Temperature: {my_plc_data.temperature}")
print(f"Pressure: {my_plc_data.pressure}")
print(f"Status: {my_plc_data.status}")

# Modify a variable and write back to the PLC
my_plc_data.status = True
my_plc_connection.write()

Authors

Project details


Download files

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

Source Distribution

python_snap7_easy_vars-1.0.4.tar.gz (5.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

python_snap7_easy_vars-1.0.4-py3-none-any.whl (7.0 kB view details)

Uploaded Python 3

File details

Details for the file python_snap7_easy_vars-1.0.4.tar.gz.

File metadata

  • Download URL: python_snap7_easy_vars-1.0.4.tar.gz
  • Upload date:
  • Size: 5.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.7

File hashes

Hashes for python_snap7_easy_vars-1.0.4.tar.gz
Algorithm Hash digest
SHA256 052b4e7b48259c4709131d12a0f6945eb5f8bded5857c0ad8250bce80aa64397
MD5 af20a0dd198bd75634fc9754c5459ffe
BLAKE2b-256 8d5ecbdb39f8a33dc03d409213ba27cbbcdff4c8576c5a3c59d99819754c69f4

See more details on using hashes here.

File details

Details for the file python_snap7_easy_vars-1.0.4-py3-none-any.whl.

File metadata

File hashes

Hashes for python_snap7_easy_vars-1.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 e229ee2b1d06f9c7244199891c1d8785be53145a28489471d0f99542ccbd9d95
MD5 1ca40c406948777e5f5d12d0bdb07a57
BLAKE2b-256 6b882f2e4990414aba80672ce5f9624cc31917e486129a253903c222cefb39d3

See more details on using hashes here.

Supported by

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