Skip to content

Commit

Permalink
Refact/1.2.0 (#22)
Browse files Browse the repository at this point in the history
* Create .pylintrc
* refact: import order
* refact: add missing docstring
* refact: missing docstring
* refact: prefer f strings
* fix: prevent cancelling uninitiated object
* refact: consistent return
* refact: import order
* refact: naming convention
* Update README.md
* refact: docstrings
* version bump
  • Loading branch information
cpvalente authored Feb 27, 2022
1 parent 7843236 commit 80e7722
Show file tree
Hide file tree
Showing 7 changed files with 685 additions and 107 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,11 @@ The spec for Artnet 4 applies here: 128 Nets contain 16 Subnets which contain 16
# Create a StupidArtnet instance with the relevant values

# By default universe is simplified to a value between 0 - 255
# this should suffice for anything not using subnets
# on sending universe will be masked to two values
# making the use of subnets invisible

universe = 17
universe = 17 # equivalent to universe 1 subnet 1
a = StupidArtnet(target_ip, universe, packet_size)


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(name='stupidArtnet',
author='cpvalente',
version='1.2.0',
version='1.3.0',
license='MIT',
description='(Very) Simple implementation of the Art-Net protocol',
long_description=long_description,
Expand Down
Loading

0 comments on commit 80e7722

Please sign in to comment.