Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

python-ytg

Package Overview
Dependencies
Maintainers
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.

  • 0.0.1
  • PyPI
  • Socket score

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

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc