Console app and Python API for extracting assignments from exam archives of our ACS students
Project description
About
Console app and Python API for extracting assignments from exam archives of our ACS students.
Installation
To install acs_extract_student_assignments run:
$ pip install acs_extract_student_assignments
Console app usage
Quick start:
$ acs_extract_student_assignments
Show help:
$ acs_extract_student_assignments --help
Python API usage
Quick start:
>>> import logging >>> logging.basicConfig(level=logging.DEBUG, format="[%(levelname)s] %(message)s") >>> from acs_extract_student_assignments import find_student_assignments, store_student_assignments >>> student_assignments = find_student_assignments('archives') >>> store_student_assignments(student_assignments, 'extracted')
Contribute
If you find any bugs, or wish to propose new features please let us know.
If you’d like to contribute, simply fork the repository, commit your changes and send a pull request. Make sure you add yourself to AUTHORS.