Metadata-Version: 2.1
Name: pyartnet
Version: 0.5.1
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
Description: # pyartnet
        pyartnet is a python implementation of the ArtNet protocol using [asyncio](https://docs.python.org/3/library/asyncio.html).
        
        # Usage
        
        
                node = ArtNetNode('IP')
                node.start()
        
                universe = node.add_universe(0)
                channel  = universe.add_channel(start=1, width=3)
        
                channel.add_fade([255,0,0], 5000)
                await channel.wait_till_fade_complete()
        
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
