README.org

March 31, 2020 ยท View on GitHub

#+TITLE: Fall 2019 06-623 Mathematical Modeling of Chemical Engineering Processes

See the [[./syllabus.org]].

#+BEGIN_SRC python import json

d = {'title': 'Mathematical Modeling of Chemical Engineering Processes', 'label': 'f19-06623', 'year': 2019, 'semester': 'Fall', 'submit-email': 'submiss.qhe8tdgpgxpfbxc4@u.box.com', 'course-repo': 'https://github.com/jkitchin/f19-06623/', 'instructor': 'John Kitchin', 'instructor-email': 'jkitchin@andrew.cmu.edu', 'admin-names': ["John Kitchin", "Mingjie Liu", "Yilin Yang"], 'admin-andrewids': ['jkitchin', 'mingjie1', 'yiliny2'], 'categories': [['homework', 'quiz', 'exam-1', 'exam-2', 'final-exam'], [0.1, 0.25, 0.15, 0.2, 0.3]], 'rubrics': {'default': [['technical', 'presentation'], [0.9, 0.1]]}, 'admin-box-path': '~/Box Sync/classes/F19-06623'}

with open('course-data.json', 'w') as f: f.write(json.dumps(d, indent=4)) #+END_SRC

#+RESULTS: