diff --git a/README.md b/README.md index 0beb2b8..adc5160 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,9 @@ Antipixels from Python. This is especially useful if you want to quickly generate batches of antipixels. +## Installation + +`pip install .` ## Usage example @@ -78,6 +81,3 @@ antipixels = { For a complete example, have a look at ``apyx_example.py``, in the main project folder. - ------ -[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/rshk/apyx/trend.png)](https://bitdeli.com/free "Bitdeli Badge") diff --git a/apyx_example.py b/apyx_example.py index 3f6eb4a..562e50f 100644 --- a/apyx_example.py +++ b/apyx_example.py @@ -52,7 +52,7 @@ if __name__ == '__main__': if not os.path.exists(output_dir): os.makedirs(output_dir) - for name, config in antipixels.iteritems(): + for name, config in antipixels.items(): if 'base' not in config: config['base'] = default_base print("Creating antipixel {0}".format(name))