Three steps:
- Find a repository without a
LICENSEorLICENSE.mdfile. - Determine the most appropriate license for the repository.
- Create a pull request adding a
LICENSEorLICENSE.mdfile.
| --- | |
| layout: default | |
| --- | |
| <article class="post"> | |
| <h1>{{ page.title }}</h1> | |
| <div class="date"> | |
| Written on {{ page.date | date: "%B %e, %Y" }} | |
| </div> |
| import sys | |
| from PIL import Image | |
| from PIL.ExifTags import TAGS, GPSTAGS | |
| def get_exif_data(image): | |
| """Returns a dictionary from the exif data of an PIL Image item. Also converts the GPS Tags""" | |
| exif_data = {} | |
| info = image._getexif() | |
| if info: |