Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download

📚 The CoCalc Library - books, templates and other resources

Views: 96157
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