Skip to main content

An API for Scratch.

Project description

scratchapi-python

PyPI - Version GitHub Release GitHub License

A scratch API wrapper for Python, created by Artcas2.

Installation

To install the library, run the following command:

pip install -U scratchapi-python

Example

import scratchapi

session = scratchapi.login("username", "password")

user = session.get_current_user()
print("Follower count:", user.get_follower_count())
print("Following count:", user.get_following_count())
print("Project cout:", user.get_project_count())

followers = user.get_followers(limit=1)
print("\nLast follower:")
for follower in followers:
    print(follower)

project = scratchapi.get_project("731849091")
print(f"\nProject stats: {project.loves} loves and {project.favorites} favs.")

Usage

Logging in with username and password

import scratchapi

session = scratchapi.login("username", "password")

Logging in with a session id

import scratchapi

session = scratchapi.Session("username", "session_id")

Session attributes

session.username
session.session_id
session.email
session.xtoken
session.new_scratcher
session.banned

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scratchapi-python-1.0.1.tar.gz (5.3 kB view hashes)

Uploaded Source

Built Distribution

scratchapi_python-1.0.1-py3-none-any.whl (6.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page