Metadata-Version: 2.1
Name: pyartnet
Version: 0.5.0
Summary: Python wrappers for the Art-Net protocol to send DMX over Ethernet
Home-page: https://github.com/spacemanspiff2007/PyArtNet
Author: spaceman_spiff
License: UNKNOWN
Keywords: DMX,Art-Net,ArtNet
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# pyartnet
pyartnet is a python implementation of the ArtNet protocol using asyncio.

# Usage


        node = ArtNetNode('IP')
        node.start()

        universe = node.add_universe(0)
        channel  = universe.add_channel(129,3)

        channel.add_fade([255,0,0], 5000)

