Metadata-Version: 2.1
Name: python-ytg
Version: 0.0.1
Summary: Easily use YourTextGuru API in Python.
Home-page: https://gitlab.com/databulle/python_ytg
Author: Julien Deneuville
Author-email: julien@databulle.com
License: MIT
Keywords: seo yourtextguru api google content optimization nlp
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Description-Content-Type: text/markdown
Requires-Dist: requests

# Python YourTextGuru

Connect to [YourText.Guru](https://yourtext.guru/)'s API, create guides, check your content optimization.  


## Setup  

Simply install `python_ytg` and its dependencies with `pip`:  

    pip install python-ytg  


## Usage

Get your API key from [https://yourtext.guru/profil/api](https://yourtext.guru/profil/api).  

A simple example:  

    import python_ytg as ytg
    from time import sleep

    conn = ytg.Api('My API Key')
    guide_id = conn.create_guide('My Awesome Keyword')

    while(conn.get_guide(guide_id) is None):
        sleep(60)

    print(conn.get_guide(guide_id))

    print(conn.get_scores(guide_id,'My Awesome Content'))

Remember to also check [the API documentation](https://yourtext.guru/profil/api) for more tips!   


