pybyu 0.1.0__tar.gz

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.
Files changed (56) hide show
  1. pybyu-0.1.0/PKG-INFO +53 -0
  2. pybyu-0.1.0/README.md +42 -0
  3. pybyu-0.1.0/pybyu/__init__.py +8 -0
  4. pybyu-0.1.0/pybyu/cli.py +17 -0
  5. pybyu-0.1.0/pybyu/content/__init__.py +21 -0
  6. pybyu-0.1.0/pybyu/content/conditions.py +1120 -0
  7. pybyu-0.1.0/pybyu/content/data_types.py +1008 -0
  8. pybyu-0.1.0/pybyu/content/dictionaries.py +1629 -0
  9. pybyu-0.1.0/pybyu/content/file_handling.py +1307 -0
  10. pybyu-0.1.0/pybyu/content/functions.py +1247 -0
  11. pybyu-0.1.0/pybyu/content/input_output.py +929 -0
  12. pybyu-0.1.0/pybyu/content/installation.py +829 -0
  13. pybyu-0.1.0/pybyu/content/lists.py +1576 -0
  14. pybyu-0.1.0/pybyu/content/loops.py +1076 -0
  15. pybyu-0.1.0/pybyu/content/modules.py +1217 -0
  16. pybyu-0.1.0/pybyu/content/operators.py +1370 -0
  17. pybyu-0.1.0/pybyu/content/sets.py +1460 -0
  18. pybyu-0.1.0/pybyu/content/tuples.py +1421 -0
  19. pybyu-0.1.0/pybyu/content/variables.py +1065 -0
  20. pybyu-0.1.0/pybyu/course_dashboard.py +134 -0
  21. pybyu-0.1.0/pybyu/course_progress.py +112 -0
  22. pybyu-0.1.0/pybyu/course_registry.py +144 -0
  23. pybyu-0.1.0/pybyu/learning/__init__.py +0 -0
  24. pybyu-0.1.0/pybyu/learning/examples.py +478 -0
  25. pybyu-0.1.0/pybyu/learning/exams.py +660 -0
  26. pybyu-0.1.0/pybyu/learning/info.py +354 -0
  27. pybyu-0.1.0/pybyu/learning/tasks.py +1075 -0
  28. pybyu-0.1.0/pybyu/learning/topic.py +650 -0
  29. pybyu-0.1.0/pybyu/main.py +423 -0
  30. pybyu-0.1.0/pybyu/navigation/__init__.py +0 -0
  31. pybyu-0.1.0/pybyu/navigation/back.py +0 -0
  32. pybyu-0.1.0/pybyu/navigation/exit.py +0 -0
  33. pybyu-0.1.0/pybyu/navigation/forward.py +0 -0
  34. pybyu-0.1.0/pybyu/navigation/home.py +0 -0
  35. pybyu-0.1.0/pybyu/navigation/navigator.py +225 -0
  36. pybyu-0.1.0/pybyu/progress/__init__.py +0 -0
  37. pybyu-0.1.0/pybyu/progress/exam_scores.py +105 -0
  38. pybyu-0.1.0/pybyu/progress/progress_manager.py +261 -0
  39. pybyu-0.1.0/pybyu/progress/task_progress.py +371 -0
  40. pybyu-0.1.0/pybyu/progress/topic_progress.py +98 -0
  41. pybyu-0.1.0/pybyu/resume_learning.py +375 -0
  42. pybyu-0.1.0/pybyu/tests/__init__.py +0 -0
  43. pybyu-0.1.0/pybyu/tests/test_content.py +34 -0
  44. pybyu-0.1.0/pybyu/topic_manager.py +189 -0
  45. pybyu-0.1.0/pybyu/verification/__init__.py +0 -0
  46. pybyu-0.1.0/pybyu/verification/code_checker.py +89 -0
  47. pybyu-0.1.0/pybyu/verification/error_handler.py +108 -0
  48. pybyu-0.1.0/pybyu/verification/executor.py +175 -0
  49. pybyu-0.1.0/pybyu/verification/test_cases.py +843 -0
  50. pybyu-0.1.0/pybyu.egg-info/PKG-INFO +53 -0
  51. pybyu-0.1.0/pybyu.egg-info/SOURCES.txt +54 -0
  52. pybyu-0.1.0/pybyu.egg-info/dependency_links.txt +1 -0
  53. pybyu-0.1.0/pybyu.egg-info/entry_points.txt +2 -0
  54. pybyu-0.1.0/pybyu.egg-info/top_level.txt +1 -0
  55. pybyu-0.1.0/pyproject.toml +24 -0
  56. pybyu-0.1.0/setup.cfg +4 -0
pybyu-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,53 @@
1
+ Metadata-Version: 2.4
2
+ Name: pybyu
3
+ Version: 0.1.0
4
+ Summary: An interactive Python learning package
5
+ Author: Prasanth Thalapaneni
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/prasanththalapenids-lgtm/pybyu
8
+ Project-URL: Repository, https://github.com/prasanththalapenids-lgtm/pybyu
9
+ Requires-Python: >=3.10
10
+ Description-Content-Type: text/markdown
11
+
12
+ # PYBYU
13
+
14
+ An interactive Python learning package that helps beginners learn Python through lessons, examples, coding tasks, exams, and progress tracking.
15
+
16
+ ## Features
17
+
18
+ - 📚 Structured Python lessons
19
+ - 💡 Explanations and examples
20
+ - 💻 Hands-on coding tasks
21
+ - ✅ Automatic task verification
22
+ - 📝 Topic-based exams
23
+ - 📊 Task and exam progress tracking
24
+ - 🧭 Learning navigation
25
+ - 🔄 Retry failed tasks
26
+ - 🎯 Completion requirements
27
+ - 🐍 Beginner-friendly Python learning path
28
+
29
+ ## Topics
30
+
31
+ PYBYU currently includes:
32
+
33
+ 1. Installation
34
+ 2. Variables
35
+ 3. Data Types
36
+ 4. Operators
37
+ 5. Conditions
38
+ 6. Loops
39
+ 7. Lists
40
+ 8. Tuples
41
+ 9. Sets
42
+ 10. Dictionaries
43
+ 11. Functions
44
+ 12. Modules
45
+ 13. Input/Output
46
+ 14. File Handling
47
+
48
+ ## Installation
49
+
50
+ Install PYBYU with pip:
51
+
52
+ ```bash
53
+ pip install pybyu
pybyu-0.1.0/README.md ADDED
@@ -0,0 +1,42 @@
1
+ # PYBYU
2
+
3
+ An interactive Python learning package that helps beginners learn Python through lessons, examples, coding tasks, exams, and progress tracking.
4
+
5
+ ## Features
6
+
7
+ - 📚 Structured Python lessons
8
+ - 💡 Explanations and examples
9
+ - 💻 Hands-on coding tasks
10
+ - ✅ Automatic task verification
11
+ - 📝 Topic-based exams
12
+ - 📊 Task and exam progress tracking
13
+ - 🧭 Learning navigation
14
+ - 🔄 Retry failed tasks
15
+ - 🎯 Completion requirements
16
+ - 🐍 Beginner-friendly Python learning path
17
+
18
+ ## Topics
19
+
20
+ PYBYU currently includes:
21
+
22
+ 1. Installation
23
+ 2. Variables
24
+ 3. Data Types
25
+ 4. Operators
26
+ 5. Conditions
27
+ 6. Loops
28
+ 7. Lists
29
+ 8. Tuples
30
+ 9. Sets
31
+ 10. Dictionaries
32
+ 11. Functions
33
+ 12. Modules
34
+ 13. Input/Output
35
+ 14. File Handling
36
+
37
+ ## Installation
38
+
39
+ Install PYBYU with pip:
40
+
41
+ ```bash
42
+ pip install pybyu
@@ -0,0 +1,8 @@
1
+ """
2
+ PYBYU - Interactive Python Learning Package.
3
+
4
+ Learn Python through lessons, examples,
5
+ tasks, exams, and progress tracking.
6
+ """
7
+
8
+ __version__ = "0.1.0"
@@ -0,0 +1,17 @@
1
+ """
2
+ PYBYU Command-Line Entry Point.
3
+ """
4
+
5
+
6
+ def main():
7
+ """
8
+ Start the PYBYU application.
9
+ """
10
+
11
+ from pybyu.main import main as run_application
12
+
13
+ run_application()
14
+
15
+
16
+ if __name__ == "__main__":
17
+ main()
@@ -0,0 +1,21 @@
1
+ """
2
+ PYBYU learning content.
3
+
4
+ Contains structured Python lessons from beginner
5
+ to advanced topics.
6
+ """
7
+
8
+ from .installation import *
9
+ from .variables import *
10
+ from .data_types import *
11
+ from .operators import *
12
+ from .conditions import *
13
+ from .loops import *
14
+ from .lists import *
15
+ from .tuples import *
16
+ from .sets import *
17
+ from .dictionaries import *
18
+ from .functions import *
19
+ from .modules import *
20
+ from .input_output import *
21
+ from .file_handling import *