python-quantumflow 2.0.2__py3-none-any.whl → 2.0.3__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,92 @@
1
+ Metadata-Version: 2.4
2
+ Name: python-quantumflow
3
+ Version: 2.0.3
4
+ Summary: Python QuantumFlow: Advanced type conversion for Python
5
+ Home-page: https://github.com/magi8101/python-quantumflow
6
+ Author: Magi Sharma
7
+ Author-email: magi@example.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Development Status :: 5 - Production/Stable
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
14
+ Requires-Python: >=3.7
15
+ Description-Content-Type: text/markdown
16
+ Dynamic: author
17
+ Dynamic: author-email
18
+ Dynamic: classifier
19
+ Dynamic: description
20
+ Dynamic: description-content-type
21
+ Dynamic: home-page
22
+ Dynamic: requires-python
23
+ Dynamic: summary
24
+
25
+
26
+ # Python QuantumFlow
27
+
28
+ A next-generation type-and-data-flow framework for Python with a lightweight footprint.
29
+
30
+ ## Overview
31
+
32
+ Python QuantumFlow is a powerful yet lightweight framework that enhances Python's data flow capabilities with:
33
+
34
+ - Automatic type conversion with `flow()` and `TypeFlowContext`
35
+ - Function decorators for creating intelligent flows with `@qflow`
36
+ - Asynchronous operations with `@async_flow`
37
+ - Robust error handling with retry logic
38
+ - Beautiful terminal output with color and styling
39
+
40
+ ## Installation
41
+
42
+ ```bash
43
+ pip install python-quantumflow
44
+ ```
45
+
46
+ ## Features Comparison
47
+
48
+ Version 1.x vs Version 2.x:
49
+
50
+ | Feature | python-typeflow V1 | Python QuantumFlow V2 |
51
+ |-------------------|-------------------------------------|-------------------------------------|
52
+ | Type Conversion | Basic types only | Complex nested structures |
53
+ | Error Handling | Manual try/except | Automatic with @retry |
54
+ | Async Support | Limited | Full async/await with backpressure |
55
+ | Flow Composition | Manual chaining | Operator-based (>>, +, etc.) |
56
+ | Memory Usage | Moderate | Optimized with streaming support |
57
+ | Visualization | None | Interactive flow diagrams |
58
+ | CLI Tools | None | Complete development toolkit |
59
+ | Terminal Output | Plain text | Rich colors and animations |
60
+ | Testing Support | Minimal | Comprehensive mocking framework |
61
+ | Performance | Standard | Up to 3x faster |
62
+
63
+ ## Quick Start
64
+
65
+ ```python
66
+ from python_quantumflow.core import flow, qflow
67
+
68
+ # Simple type conversion
69
+ numbers = [1, 2, 3, 4, 5]
70
+ str_numbers = flow(str)(numbers)
71
+ print(str_numbers) # "[1, 2, 3, 4, 5]"
72
+
73
+ # Function decorator for automatic flow
74
+ @qflow
75
+ def process_data(items):
76
+ return [item * 2 for item in items]
77
+
78
+ result = process_data(numbers)
79
+ print(result) # [2, 4, 6, 8, 10]
80
+ ```
81
+
82
+ ## Documentation
83
+
84
+ For detailed documentation and examples, visit:
85
+ - [GitHub Repository](https://github.com/magi8101/python-quantumflow)
86
+ - [API Reference](https://python-quantumflow.readthedocs.io/)
87
+
88
+ ## Made by
89
+
90
+ Created with ❤️ by Magi Sharma
91
+
92
+
@@ -5,7 +5,7 @@ quantumflow/core.py,sha256=UWDRjhmnXqAdXzM-jwAep9w-aX402SaT4gFxqrzr3GU,13273
5
5
  quantumflow/execution.py,sha256=1YJVPOm2Uemzj22ihWjrlSkk8NFWdvsDG3ULEQVKnmY,3834
6
6
  quantumflow/metrics.py,sha256=a5F60nLs7Fib6tsACEBmNvs06__rvkK6VOi_HY8RfIY,5654
7
7
  quantumflow/validation.py,sha256=_GI1mCojnvo8cmT7b59RXqnMP4yBYuFAzYWqvAb6a6s,2758
8
- python_quantumflow-2.0.2.dist-info/METADATA,sha256=VZs5JpW_bddsU595B3jOKSwtkT9DvkZCLl1wnm9UaWE,1332
9
- python_quantumflow-2.0.2.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
10
- python_quantumflow-2.0.2.dist-info/top_level.txt,sha256=0Vm4TjDFAIyzMHSkwDlRjZjV15yYbWdI85OOsHdpKqU,12
11
- python_quantumflow-2.0.2.dist-info/RECORD,,
8
+ python_quantumflow-2.0.3.dist-info/METADATA,sha256=B__P0KdRM2E9iVhVulVmSI17ncNJgP_-i6sVAAHEQfg,3312
9
+ python_quantumflow-2.0.3.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
10
+ python_quantumflow-2.0.3.dist-info/top_level.txt,sha256=0Vm4TjDFAIyzMHSkwDlRjZjV15yYbWdI85OOsHdpKqU,12
11
+ python_quantumflow-2.0.3.dist-info/RECORD,,
@@ -1,39 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: python-quantumflow
3
- Version: 2.0.2
4
- Summary: Python QuantumFlow: Advanced type conversion for Python
5
- Home-page: https://github.com/magi8101/python-quantumflow
6
- Author: Magi Sharma
7
- Author-email: magi@example.com
8
- Classifier: Programming Language :: Python :: 3
9
- Classifier: License :: OSI Approved :: MIT License
10
- Classifier: Operating System :: OS Independent
11
- Classifier: Development Status :: 5 - Production/Stable
12
- Classifier: Intended Audience :: Developers
13
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
14
- Requires-Python: >=3.7
15
- Description-Content-Type: text/markdown
16
- Dynamic: author
17
- Dynamic: author-email
18
- Dynamic: classifier
19
- Dynamic: description
20
- Dynamic: description-content-type
21
- Dynamic: home-page
22
- Dynamic: requires-python
23
- Dynamic: summary
24
-
25
- # Python QuantumFlow
26
-
27
- A next-generation type-and-data-flow framework for Python with a lightweight footprint.
28
-
29
- ## Overview
30
-
31
- Python QuantumFlow is a powerful yet lightweight framework that enhances Python's data flow capabilities.
32
-
33
- ## Features
34
-
35
- | Feature | Version 1.x | Version 2.x |
36
- |---------|------------|-------------|
37
- | Type Conversion | Basic types only | Complex nested structures |
38
- | Error Handling | Manual try/except | Automatic with @retry |
39
- | Async Support | Limited | Full async/await |