feat: Add multiple new paradigms for Sales Report showcase#73
Open
PatrykQuantumNomad wants to merge 1 commit intoArjanCodes:mainfrom
Open
feat: Add multiple new paradigms for Sales Report showcase#73PatrykQuantumNomad wants to merge 1 commit intoArjanCodes:mainfrom
PatrykQuantumNomad wants to merge 1 commit intoArjanCodes:mainfrom
Conversation
Added new paradigm implementations including: • async_report.py – asyncio-based metrics concurrency (pandas) • async_no_pandas_report.py – true async streaming using aiofiles • config_report.py – config-driven execution from YAML • declarative_report.py – Pandera-validated declarative pipeline • logic_report.py – logic/relational facts via Kanren • reactive_report.py – RxPY reactive stream processing • report_actor_model.py – actor model concurrency using asyncio queues • report_dataflow.py – DAG-based dataflow execution model • messy_report.py – baseline procedural reference implementation Also included: • verify_reports.py – output validation across paradigms • run_reports.sh – helper script to execute multiple implementations Changes: - Unified logging, error handling, and output file structure - Standardized metric computation and report schema across all versions - Prepared the project for verification and automated comparisons
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi! 👋
I had some fun on a Sunday morning and decided to explore multiple ways to implement the same logic across different programming paradigms in Python.
Added new paradigm implementations, including:
• async_report.py – asyncio-based metrics concurrency (pandas)
• async_no_pandas_report.py – true async streaming using aiofiles
• config_report.py – config-driven execution from YAML
• declarative_report.py – Pandera-validated declarative pipeline
• logic_report.py – logic/relational facts via Kanren
• reactive_report.py – RxPY reactive stream processing
• report_actor_model.py – actor model concurrency using asyncio queues
• report_dataflow.py – DAG-based dataflow execution model
Also included:
• verify_reports.py – output validation across paradigms
• run_reports.sh – helper script to execute multiple implementations
Changes: