├── README.md └── code.py /README.md: -------------------------------------------------------------------------------- 1 | # python-image 2 | image tools 3 | -------------------------------------------------------------------------------- /code.py: -------------------------------------------------------------------------------- 1 | print("hello word") 2 | --------------------------------------------------------------------------------