python-quantumflow 2.0.2__tar.gz → 2.0.3__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.
- python_quantumflow-2.0.3/PKG-INFO +92 -0
- python_quantumflow-2.0.3/setup.py +96 -0
- python_quantumflow-2.0.3/src/python_quantumflow.egg-info/PKG-INFO +92 -0
- python_quantumflow-2.0.2/PKG-INFO +0 -39
- python_quantumflow-2.0.2/setup.py +0 -43
- python_quantumflow-2.0.2/src/python_quantumflow.egg-info/PKG-INFO +0 -39
- {python_quantumflow-2.0.2 → python_quantumflow-2.0.3}/README.md +0 -0
- {python_quantumflow-2.0.2 → python_quantumflow-2.0.3}/pyproject.toml +0 -0
- {python_quantumflow-2.0.2 → python_quantumflow-2.0.3}/setup.cfg +0 -0
- {python_quantumflow-2.0.2 → python_quantumflow-2.0.3}/src/python_quantumflow.egg-info/SOURCES.txt +0 -0
- {python_quantumflow-2.0.2 → python_quantumflow-2.0.3}/src/python_quantumflow.egg-info/dependency_links.txt +0 -0
- {python_quantumflow-2.0.2 → python_quantumflow-2.0.3}/src/python_quantumflow.egg-info/top_level.txt +0 -0
- {python_quantumflow-2.0.2 → python_quantumflow-2.0.3}/src/quantumflow/__init__.py +0 -0
- {python_quantumflow-2.0.2 → python_quantumflow-2.0.3}/src/quantumflow/cli.py +0 -0
- {python_quantumflow-2.0.2 → python_quantumflow-2.0.3}/src/quantumflow/config.py +0 -0
- {python_quantumflow-2.0.2 → python_quantumflow-2.0.3}/src/quantumflow/core.py +0 -0
- {python_quantumflow-2.0.2 → python_quantumflow-2.0.3}/src/quantumflow/execution.py +0 -0
- {python_quantumflow-2.0.2 → python_quantumflow-2.0.3}/src/quantumflow/metrics.py +0 -0
- {python_quantumflow-2.0.2 → python_quantumflow-2.0.3}/src/quantumflow/validation.py +0 -0
@@ -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
|
+
|
@@ -0,0 +1,96 @@
|
|
1
|
+
|
2
|
+
from setuptools import setup, find_packages
|
3
|
+
|
4
|
+
# Using the existing README_PYPI.md content
|
5
|
+
long_description = """
|
6
|
+
# Python QuantumFlow
|
7
|
+
|
8
|
+
A next-generation type-and-data-flow framework for Python with a lightweight footprint.
|
9
|
+
|
10
|
+
## Overview
|
11
|
+
|
12
|
+
Python QuantumFlow is a powerful yet lightweight framework that enhances Python's data flow capabilities with:
|
13
|
+
|
14
|
+
- Automatic type conversion with `flow()` and `TypeFlowContext`
|
15
|
+
- Function decorators for creating intelligent flows with `@qflow`
|
16
|
+
- Asynchronous operations with `@async_flow`
|
17
|
+
- Robust error handling with retry logic
|
18
|
+
- Beautiful terminal output with color and styling
|
19
|
+
|
20
|
+
## Installation
|
21
|
+
|
22
|
+
```bash
|
23
|
+
pip install python-quantumflow
|
24
|
+
```
|
25
|
+
|
26
|
+
## Features Comparison
|
27
|
+
|
28
|
+
Version 1.x vs Version 2.x:
|
29
|
+
|
30
|
+
| Feature | python-typeflow V1 | Python QuantumFlow V2 |
|
31
|
+
|-------------------|-------------------------------------|-------------------------------------|
|
32
|
+
| Type Conversion | Basic types only | Complex nested structures |
|
33
|
+
| Error Handling | Manual try/except | Automatic with @retry |
|
34
|
+
| Async Support | Limited | Full async/await with backpressure |
|
35
|
+
| Flow Composition | Manual chaining | Operator-based (>>, +, etc.) |
|
36
|
+
| Memory Usage | Moderate | Optimized with streaming support |
|
37
|
+
| Visualization | None | Interactive flow diagrams |
|
38
|
+
| CLI Tools | None | Complete development toolkit |
|
39
|
+
| Terminal Output | Plain text | Rich colors and animations |
|
40
|
+
| Testing Support | Minimal | Comprehensive mocking framework |
|
41
|
+
| Performance | Standard | Up to 3x faster |
|
42
|
+
|
43
|
+
## Quick Start
|
44
|
+
|
45
|
+
```python
|
46
|
+
from python_quantumflow.core import flow, qflow
|
47
|
+
|
48
|
+
# Simple type conversion
|
49
|
+
numbers = [1, 2, 3, 4, 5]
|
50
|
+
str_numbers = flow(str)(numbers)
|
51
|
+
print(str_numbers) # "[1, 2, 3, 4, 5]"
|
52
|
+
|
53
|
+
# Function decorator for automatic flow
|
54
|
+
@qflow
|
55
|
+
def process_data(items):
|
56
|
+
return [item * 2 for item in items]
|
57
|
+
|
58
|
+
result = process_data(numbers)
|
59
|
+
print(result) # [2, 4, 6, 8, 10]
|
60
|
+
```
|
61
|
+
|
62
|
+
## Documentation
|
63
|
+
|
64
|
+
For detailed documentation and examples, visit:
|
65
|
+
- [GitHub Repository](https://github.com/magi8101/python-quantumflow)
|
66
|
+
- [API Reference](https://python-quantumflow.readthedocs.io/)
|
67
|
+
|
68
|
+
## Made by
|
69
|
+
|
70
|
+
Created with ❤️ by Magi Sharma
|
71
|
+
|
72
|
+
|
73
|
+
"""
|
74
|
+
|
75
|
+
setup(
|
76
|
+
name="python-quantumflow",
|
77
|
+
version="2.0.3",
|
78
|
+
author="Magi Sharma",
|
79
|
+
author_email="magi@example.com",
|
80
|
+
description="Python QuantumFlow: Advanced type conversion for Python",
|
81
|
+
long_description=long_description,
|
82
|
+
long_description_content_type="text/markdown",
|
83
|
+
url="https://github.com/magi8101/python-quantumflow",
|
84
|
+
packages=find_packages(where="src"),
|
85
|
+
package_dir={"": "src"},
|
86
|
+
classifiers=[
|
87
|
+
"Programming Language :: Python :: 3",
|
88
|
+
"License :: OSI Approved :: MIT License",
|
89
|
+
"Operating System :: OS Independent",
|
90
|
+
"Development Status :: 5 - Production/Stable",
|
91
|
+
"Intended Audience :: Developers",
|
92
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
93
|
+
],
|
94
|
+
python_requires=">=3.7",
|
95
|
+
install_requires=[],
|
96
|
+
)
|
@@ -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
|
+
|
@@ -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 |
|
@@ -1,43 +0,0 @@
|
|
1
|
-
|
2
|
-
from setuptools import setup, find_packages
|
3
|
-
|
4
|
-
# Using direct string for the long description to avoid file loading issues
|
5
|
-
long_description = """# Python QuantumFlow
|
6
|
-
|
7
|
-
A next-generation type-and-data-flow framework for Python with a lightweight footprint.
|
8
|
-
|
9
|
-
## Overview
|
10
|
-
|
11
|
-
Python QuantumFlow is a powerful yet lightweight framework that enhances Python's data flow capabilities.
|
12
|
-
|
13
|
-
## Features
|
14
|
-
|
15
|
-
| Feature | Version 1.x | Version 2.x |
|
16
|
-
|---------|------------|-------------|
|
17
|
-
| Type Conversion | Basic types only | Complex nested structures |
|
18
|
-
| Error Handling | Manual try/except | Automatic with @retry |
|
19
|
-
| Async Support | Limited | Full async/await |
|
20
|
-
"""
|
21
|
-
|
22
|
-
setup(
|
23
|
-
name="python-quantumflow",
|
24
|
-
version="2.0.2",
|
25
|
-
author="Magi Sharma",
|
26
|
-
author_email="magi@example.com",
|
27
|
-
description="Python QuantumFlow: Advanced type conversion for Python",
|
28
|
-
long_description=long_description,
|
29
|
-
long_description_content_type="text/markdown",
|
30
|
-
url="https://github.com/magi8101/python-quantumflow",
|
31
|
-
packages=find_packages(where="src"),
|
32
|
-
package_dir={"": "src"},
|
33
|
-
classifiers=[
|
34
|
-
"Programming Language :: Python :: 3",
|
35
|
-
"License :: OSI Approved :: MIT License",
|
36
|
-
"Operating System :: OS Independent",
|
37
|
-
"Development Status :: 5 - Production/Stable",
|
38
|
-
"Intended Audience :: Developers",
|
39
|
-
"Topic :: Software Development :: Libraries :: Python Modules",
|
40
|
-
],
|
41
|
-
python_requires=">=3.7",
|
42
|
-
install_requires=[],
|
43
|
-
)
|
@@ -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 |
|
File without changes
|
File without changes
|
File without changes
|
{python_quantumflow-2.0.2 → python_quantumflow-2.0.3}/src/python_quantumflow.egg-info/SOURCES.txt
RENAMED
File without changes
|
File without changes
|
{python_quantumflow-2.0.2 → python_quantumflow-2.0.3}/src/python_quantumflow.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|