This repository has been archived on 2023-12-11. You can view files and clone it, but cannot push or open issues or pull requests.
ib-clearance/README.md

57 lines
2.2 KiB
Markdown
Raw Normal View History

2018-10-23 17:10:40 +02:00
# ib-clearance
2018-10-23 16:54:28 +02:00
2018-11-03 10:07:26 +01:00
ib-clearance is a program which helps schools manage the entrance and exiting of their IB students. Due to the unique nature of IB students' timetables, the program helps check individual timetables and give clearance to students who have finished for the day.
2018-10-23 16:54:28 +02:00
2018-12-01 08:35:07 +01:00
## Building
2018-10-23 16:54:28 +02:00
2018-11-03 10:07:26 +01:00
The code is currently designed to run on Python 3.6.*.
I recommend building executables with `pyinstaller` with `pyinstaller --onefile ib-clearance.py`.
2018-12-01 08:35:07 +01:00
## Database specification
2018-12-16 11:48:40 +01:00
The program requires SQLite databases for each IB class.
2018-12-01 08:35:07 +01:00
Each database must contain:
| Table | Description |
| ----------- | ---------------------------------------------------------- |
| `students` | Contains students' names, ID numbers and class preferences |
| `timetable` | Timetable information for class |
### `students`
| Column | Data type | Description |
| ------ | --------- | --------------------------------- |
| `id` | `INTEGER` | Student ID number used in program |
| `g1` | `TEXT` | Group 1 subject ID |
| `g2` | `TEXT` | Group 2 subject ID |
| `g3` | `TEXT` | Group 3 subject ID |
| `g4` | `TEXT` | Group 4 subject ID |
| `g5` | `TEXT` | Group 5 subject ID |
| `g6` | `TEXT` | Group 6 subject ID |
| `name` | `TEXT` | Full name of student |
### `timetable`
| Column | Data type | Description |
| ----------- | --------- | --------------------------------------------- |
| `day` | `TEXT` | Day of the week (e.g. `monday`) |
| `end_time` | `TEXT` | Ending time of lesson (e.g. `09:55`, `13:05`) |
2018-12-16 11:48:40 +01:00
| `lesson_id` | `TEXT` | Subject ID of the lesson (e.g. `tok`) |
2018-12-01 08:35:07 +01:00
#### Subject IDs
Subject IDs may be anything, as long as consistency is maintained throughout the tables. There are two hard-coded IDs that are always taken by every student:
| Subject | ID |
| ------------------- | ----- |
| Theory of Knowledge | `tok` |
| Guidance | `gu` |
2018-11-03 10:07:26 +01:00
2018-10-23 16:54:28 +02:00
## License
Copyright (C) 2018 Abdulkadir Furkan Şanlı
2018-10-23 17:10:40 +02:00
ib-clearance is made available under the Apache License 2.0.