cs50p-python-reviewer 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cs50p-python-reviewer
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: An interactive CLI study reviewer for CS50P students.
|
|
5
|
+
Author: Ian Carlo G. Ventura
|
|
6
|
+
License: MIT
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: rich>=10.0.0
|
|
12
|
+
|
|
13
|
+
# CS50P Python Reviewer TUI
|
|
14
|
+
#### Video Demo: https://youtu.be/YOUR_VIDEO_URL
|
|
15
|
+
#### Description:
|
|
16
|
+
The CS50P Python Reviewer TUI is an interactive terminal application designed for students mastering Python fundamentals. The software uses a structured JSON database (`questions.json`) containing 5 questions per module spanning Weeks 0 through 8 of CS50P.
|
|
17
|
+
|
|
18
|
+
Features include user session tracking, personalized history viewing restricted to the current user, randomized question shuffling, optional timed challenge mode, and a missed-questions review round. The interface uses the `rich` library for formatted panels, tables, and colored prompts.
|
|
19
|
+
|
|
20
|
+
### Files Included:
|
|
21
|
+
- `project.py`: Main application code handling menu logic, user prompts, scoring, and history logging.
|
|
22
|
+
- `questions.json`: Database of multiple-choice and identification questions.
|
|
23
|
+
- `test_project.py`: Pytest test suite for core logic validation.
|
|
24
|
+
- `requirements.txt`: Package dependency list (`rich`, `pytest`).
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
cs50p_python_reviewer-1.0.0.dist-info/METADATA,sha256=t1sTj3hfTC7qF5BeGAW2Su_HpEOvldl3ZdH60NUJ4Hk,1333
|
|
2
|
+
cs50p_python_reviewer-1.0.0.dist-info/WHEEL,sha256=YVMoNqKzERt-wjUZwJ33xBGAwnFl-4cqbYkTtWa4itE,91
|
|
3
|
+
cs50p_python_reviewer-1.0.0.dist-info/entry_points.txt,sha256=v7TYdcZJjPqYWQmxnAAoLQvJs03F1JGGf70aOPBTn5U,46
|
|
4
|
+
cs50p_python_reviewer-1.0.0.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
5
|
+
cs50p_python_reviewer-1.0.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|