Skip to main content

A simple library for managing proficiency topics and topic lists

Project description

OpenProficiency - Python Library

This library provides class objects for managing proficiency across knowledge domains.

Features

  • Topic Class: A defined unique area of knowledge composed of subtopics and built upon pretopics (prerequisite topics).
  • TopicList Class: A collection of related topics covering one knowledge domain.

Installation

pip install openproficiency

Quick Start

Create a Topic

A Topic is an area of knowledge that a person gains proficiency in. If it has subtopics, the person can alternately gain proficiency in the parent topic by gaining proficiency in the subtopics.

from openproficiency import Topic

# Create a simple topic and what composes it
topic_arithmetic = Topic(
    id="arithmetic",
    description="Basic operations for numeric calculations",
    subtopics=["addition", "subtraction"]
    pretopics=['writing']
)

Add a subtopic to an existing topic

# Specific other topics that compose the parent topic
topic_arithmetic.add_subtopic("multiplication")
topic_arithmetic.add_subtopic("division")

Add a pretopic to an existing topic

A Pretopic (prerequisite topic) is a topic that must be understood before a person can begin understanding the parent topic.

# Specify prerequisites to understand first
topic_arithmetic.add_pretopic("integers")
topic_arithmetic.add_pretopic("decimals")
topic_arithmetic.add_pretopic("fractions")

Create a Topic List

A topic list is a collection of topics that describe a specific knowledge domain.

from openproficiency import Topic, TopicList

# Create an empty topic list
topic_list = TopicList(
    owner="core-fundamentals",
    name="math",
    description="Math topics through basic calculus"
)

# Add topics to the list
t_arithmetic = Topic(
    id="arithmetic",
    description="Basic operations for numeric calculations",
    subtopics=[
        "addition",
        "subtraction",
        "multiplication",
        "division
    ]
)
topic_list.add_topic(t_arithmetic)

t_algebra = Topic(
    id="algebra",
    description="Basic operations for numeric calculations",
    subtopics=[
        "variables",
        "constants",
        "single-variable-equations",
        "multiple-variable-equations"
    ],
    pretopics=[ "arithmetic" ]
)

Create a Proficiency Score, by name

A Proficiency Score represents a person's level of proficiency in a specific topic.

proficiency_score = ProficiencyScore(
    topic_id="addition",
    score=ProficiencyScoreName.PROFICIENT
)

Create a Proficiency Score, numerically

All score are internally numeric from 0.0 to 1.0, even if set using the score name (above).

proficiency_score = ProficiencyScore(
    topic_id="arithmetic",
    score=0.8 # Same as 'ProficiencyScoreName.PROFICIENT'
)

Issue a Transcript Entry

A Transcript Entry associates a proficiency score to a user and is claimed by an issuer.

from openproficiency import TranscriptEntry

# Create a transcript entry
entry = TranscriptEntry(
    user_id="john-doe",
    topic_id="arithmetic",
    score=0.9,
    issuer="university-of-example"
)

# Access the transcript entry information
print(entry.user_id)  # john-doe
print(entry.proficiency_score.score)  # 0.9
print(entry.issuer)  # university-of-example
print(entry.timestamp)  # datetime object

# Convert to JSON for storage or transmission
entry_json = entry.to_json()

How to Develop

This project is open to pull requests.

Please see the contribution guide to get started.

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

openproficiency-0.0.2.tar.gz (17.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

openproficiency-0.0.2-py3-none-any.whl (8.8 kB view details)

Uploaded Python 3

File details

Details for the file openproficiency-0.0.2.tar.gz.

File metadata

  • Download URL: openproficiency-0.0.2.tar.gz
  • Upload date:
  • Size: 17.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.19

File hashes

Hashes for openproficiency-0.0.2.tar.gz
Algorithm Hash digest
SHA256 f8c705817e7e7cd68d3105d50fbdb51f7f4e922cf50712a41290c1931d2cbab3
MD5 0c6e78047b6cd87de2fbfe323f1dd49c
BLAKE2b-256 0ac96aa12dacc1addef822938b7f94f876c45e28c7c6ef166feeacc43552ba00

See more details on using hashes here.

File details

Details for the file openproficiency-0.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for openproficiency-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 e117056f68a9969afc6334b833791d4dd1a3c79587db25dd4aa0a4c2f3e07048
MD5 4f79a03ebbe4394e22cccf75411e933b
BLAKE2b-256 a979157dc3963d818dc833fd270bf9e7f92a3c9acb6f3cf6aaab9c96bdb8e924

See more details on using hashes here.

Supported by

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