Metadata-Version: 2.4
Name: shwarsutils
Version: 0.0.2
Summary: Miscallaneous Python Utlities
Home-page: https://github.com/shwars/shwarsutils
Author: Dmitri Soshnikov
Author-email: dmitri@soshnikov.com
License: MIT license
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown; charset=UTF-8
License-File: LICENSE
Requires-Dist: requests
Requires-Dist: matplotlib
Requires-Dist: Pillow
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

# shwarsutils

Miscellaneous Python utilities by Dmitri Soshnikov, to be used in demos.

## Installation

```
pip install shwarsutils
```

## Usage

```
from shwars.utils import *

img = image_from_url("https://soshnikov.com/images/official/shwars_studio.jpg")
img = image_resize(img, 1024, keep_aspect=True)
display_images([img,img])
```


