Socket
Book a DemoInstallSign in
Socket

python-ytg

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

python-ytg

Easily use YourTextGuru API in Python.

pipPyPI
Version
0.0.1
Maintainers
1

Python YourTextGuru

Connect to 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.

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 for more tips!

Keywords

seo yourtextguru api google content optimization nlp

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts