pyevalai


Namepyevalai JSON
Version 0.0.7 PyPI version JSON
download
home_pageNone
SummaryAutomated python exercise evaluations with AI.
upload_time2025-02-06 01:22:32
maintainerNone
docs_urlNone
authorNils Wandel
requires_python>=3.8
licenseNone
keywords jupyter exercise evaluation ai llm
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# PyEvalAI

PyEvalAI is a package for automated evaluations of exercises in python.

## Installation

PyEvalAI can be quickly installed with pip:

```
pip install pyevalai
```

## Quick-Start

If you are a student, here is how to use pyevalai:

```python
from pyevalai import show, login, enter_course, handin_exercise

# login to server with username and password
login(url="server-url")

# enter course (for example numerics)
enter_course("Numerics")

# hand in solution for text exercises
handin_exercise("Exercise 1", "my solution...")

# hand in solution for coding exercises
def f(x):
	return x**2
handin_exercise("Exercise 2", f)
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pyevalai",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "jupyter, exercise, evaluation, AI, LLM",
    "author": "Nils Wandel",
    "author_email": "<wandeln@cs.uni-bonn.de>",
    "download_url": "https://files.pythonhosted.org/packages/d3/34/bee806a2f1eb9122b53ac772f2c20bbce7e7a556464e62502f269f23c000/pyevalai-0.0.7.tar.gz",
    "platform": null,
    "description": "\n# PyEvalAI\n\nPyEvalAI is a package for automated evaluations of exercises in python.\n\n## Installation\n\nPyEvalAI can be quickly installed with pip:\n\n```\npip install pyevalai\n```\n\n## Quick-Start\n\nIf you are a student, here is how to use pyevalai:\n\n```python\nfrom pyevalai import show, login, enter_course, handin_exercise\n\n# login to server with username and password\nlogin(url=\"server-url\")\n\n# enter course (for example numerics)\nenter_course(\"Numerics\")\n\n# hand in solution for text exercises\nhandin_exercise(\"Exercise 1\", \"my solution...\")\n\n# hand in solution for coding exercises\ndef f(x):\n\treturn x**2\nhandin_exercise(\"Exercise 2\", f)\n```\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Automated python exercise evaluations with AI.",
    "version": "0.0.7",
    "project_urls": {
        "Source Code": "https://github.com/wandeln/pyevalai"
    },
    "split_keywords": [
        "jupyter",
        " exercise",
        " evaluation",
        " ai",
        " llm"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8922c86e289f0fe325bda9481a534e6dc93678113b7af13a05bde5c87b35ecaf",
                "md5": "e5b0d2e63d04aeeccab2239e16bb7aa0",
                "sha256": "cb32548eac31349cc0d7c58f2a345b1df4d9ce831ab4908134b176564ce01dc3"
            },
            "downloads": -1,
            "filename": "pyevalai-0.0.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e5b0d2e63d04aeeccab2239e16bb7aa0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 20402,
            "upload_time": "2025-02-06T01:22:30",
            "upload_time_iso_8601": "2025-02-06T01:22:30.663175Z",
            "url": "https://files.pythonhosted.org/packages/89/22/c86e289f0fe325bda9481a534e6dc93678113b7af13a05bde5c87b35ecaf/pyevalai-0.0.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d334bee806a2f1eb9122b53ac772f2c20bbce7e7a556464e62502f269f23c000",
                "md5": "8c542b336d79fb3c4dec9aae50f1c579",
                "sha256": "4485038785aa992dcf82bd08c9a0fb7aebf1350c8709f83cde2670493991965f"
            },
            "downloads": -1,
            "filename": "pyevalai-0.0.7.tar.gz",
            "has_sig": false,
            "md5_digest": "8c542b336d79fb3c4dec9aae50f1c579",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 18410,
            "upload_time": "2025-02-06T01:22:32",
            "upload_time_iso_8601": "2025-02-06T01:22:32.626232Z",
            "url": "https://files.pythonhosted.org/packages/d3/34/bee806a2f1eb9122b53ac772f2c20bbce7e7a556464e62502f269f23c000/pyevalai-0.0.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-06 01:22:32",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "wandeln",
    "github_project": "pyevalai",
    "github_not_found": true,
    "lcname": "pyevalai"
}
        
Elapsed time: 1.74674s