Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Submit with grading #13

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 3 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

## use Jupyter notebook

1. Copy the `submit.py` file to the same folder as the Exercise Notebook.
1. Copy the `instructores_example/submit.py` file to the same folder as the Exercise Notebook.
2. Install the requirements on this repo

```bash
cd nb-grades-collector
cd instructores_example
pip install -r requirements.txt
```

Expand All @@ -17,30 +18,10 @@ cd Week\ 00/SLU00\ -\ Jupyter\ Notebook/
pip freeze > requirements.txt
```

To enable students to submit a LU you'll need to add 3 cells at the bottom of the notebook, as follows:
4. To enable students to submit a SLU, please copy the cells regarding work submission on `instructores_example/Exercise Notebook.ipynb`, to yours.

<img src='assets/submit.png' alt='Finder' width="75%" />

**Cell 1** markdown, read-only
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

despite this info also being in the in the example notebook, i want to keep it here because instructors will quickly be able to know exactly what to put in their exercise notebooks based on this info

```markdown
# Submit your work!

To submit your work, [get your slack id](https://moshfeu.medium.com/how-to-find-my-member-id-in-slack-workspace-d4bba942e38c) and fill it in the `slack_id` variable.

Example: `slack_id = "UTS63FC02"`
```

**Cell 2** code, Autograded Answer
```python
slack_id = None
```

**Cell 3** code, Autograded tests
```python
from submit import submit

submit(slack_id, 0)
```

This serves to collect the student slack ids so that we know who has submitted the LU.

Expand Down
103 changes: 0 additions & 103 deletions example.ipynb

This file was deleted.

Loading