Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132923 views
License: OTHER
1
from nbgrader.utils import get_username
2
3
c = get_config()
4
5
c.NbGrader.course_id = "demo"
6
c.NbGrader.db_assignments = [dict(name="ps1")]
7
c.NbGrader.db_students = [dict(id=get_username())]
8
9