Metadata-Version: 2.1
Name: slidetemplater
Version: 0.0.6
Summary: A client API for slidetemplater.com
Home-page: https://github.com/evolvedlight/slideplater-python
Author: Stephen Brown
Author-email: steve@slidetemplater.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests

# SlideTemplater.com Python API

This is a simple client API for SlideTemplater.com

Please see documentation there for how to prepare a presentation for templating

You can use it as the following:

~~~
import slidetemplater.api

result = slidetemplater.api.convert(open(
    'covid.pptx', 'rb'), "https://api.coronavirus.data.gov.uk/v2/data?areaType=overview&metric=cumPeopleVaccinatedFirstDoseByVaccinationDate&format=json")

f = open('result.pptx', 'w+b')
f.write(result)
f.close()
~~~

