Skip to main content

WolframAlpha's Unlimited AI-generated practice problems and answers API wrapper.

Project description

problemator - WolframAlpha's Unlimited AI-generated practice problems and answers API wrapper.


-How to use-

from problemator import *
from random import choice

loadSession()  # Initialize
print(getCategories())  # See categories

category = getCategoryByID(0)  # Get Addition by ID
category = getCategoryByName('Add')  # Get Addition by Name

# LVL: 0 - Beginner; 1 - Intermediate; 2 - Advanced
# Count - Number of problems
# type - Category
problems = generateProblems(count=10, lvl=0, type=category)
problem = choice(problems)  # Get random problem

print(problem['text'])  # Text of the problem
print(problem['image'])  # Image of the problem
print(problem['difficulty'])  # Difficulty of the problem

c = checkProblem(problem, 'x+5')  # Check problem, where x+5 - answer
print(c['correct'])  # True or False
print(c['hint'])  # Image of the Hint
print(c['solution'])  # Image of the Solution

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

problemator-1.0.3.tar.gz (3.3 kB view hashes)

Uploaded Source

Built Distribution

problemator-1.0.3-py3-none-any.whl (3.9 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