Metadata-Version: 2.1
Name: apprentice
Version: 0.1.5
Summary: Apprentice is a library for deploying and developing actions via Dialogflow and Google Cloud Functions.
Home-page: https://github.com/andrewgy8/apprentice
Author: Andrew Graham-Yooll
Author-email: andrewgy8@gmail.com
License: GNU
Description: 
        # Apprentice
        [![Build Status](https://travis-ci.com/andrewgy8/apprentice.svg?branch=master)](https://travis-ci.com/andrewgy8/apprentice)
        [![PyPI version](https://badge.fury.io/py/apprentice.svg)](https://badge.fury.io/py/apprentice)
        
        Apprentice is a library for deploying and developing actions via Dialogflow and Google Cloud Functions.
        
        ## Installation
        
        Use the package manager [pip](https://pip.pypa.io/en/stable/) to install Apprentice.
        
        ```bash
        pip install apprentice
        ```
        
        ## Usage
        
        ```python
        import random
        
        import requests
        
        from apprentice import format_response, generate_intent_response
        
        
        def cool_fact_generator(*args, **kwargs):
            data = _fact_response()
            formatted_data = generate_intent_response(data)
            return format_response(formatted_data)
        
        
        def _fact_response():
            res = requests.get('https://history.muffinlabs.com/date')
            data = res.json().get('data')
        
            fact = random.choice(data['Events'])
            year = fact['year']
            text = fact['text']
            phrase = f'Today, in the year {year} {text}'
            return phrase
        ```
        
        ## Contributing
        Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
        
        Please make sure to update tests as appropriate.
        
        ## License
        [GNU 3.0](https://choosealicense.com/licenses/gpl-3.0/)
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
