Metadata-Version: 2.1
Name: papexp
Version: 0.1.9
Summary: A simple exporter for the paprika app.
Home-page: UNKNOWN
Author: Chris Nicholson
Author-email: datapolitical@gmail.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 (==2.25.0)
Requires-Dist: python-dotenv (==0.15.0)
Requires-Dist: PyYAML (==5.3.1)

# Paprika Exporter

Export Paprika data using the API to yaml

# Introduction

This tool statically generates a list of Paprika recipes in YAML format, with a related folder of images. 

# Installation

pip3 install papexp

# Issues

Make sure to delete recipes from the trash in the app because it can cause errors.

# Example python code

import papexp
from papexp import export
export.exportrecipes()

# Examples on the web

You can see that on [my website][1]

[My website repository][2] incorporates this code to routinely pull new recipes. 

This code is almost entirely the work of [Shane Starcher][3]. I’m deeply grateful to him for building this.

My goal with this package is to make implementation of his code on your website dead simple.

[1]:	https://chrisfnicholson.com/recipes.html
[2]:	http://www.github.com/datapolitical/chrisfnicholson.github.io
[3]:	https://github.com/sstarcher/paprika-exporter



