functionalthreading 0.6.1__tar.gz → 0.6.2__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.
- {functionalthreading-0.6.1 → functionalthreading-0.6.2}/PKG-INFO +5 -2
- {functionalthreading-0.6.1 → functionalthreading-0.6.2}/README.md +4 -1
- {functionalthreading-0.6.1 → functionalthreading-0.6.2}/functionalthreading.egg-info/PKG-INFO +5 -2
- {functionalthreading-0.6.1 → functionalthreading-0.6.2}/pyproject.toml +1 -1
- {functionalthreading-0.6.1 → functionalthreading-0.6.2}/LICENSE +0 -0
- {functionalthreading-0.6.1 → functionalthreading-0.6.2}/functionalthreading/__init__.py +0 -0
- {functionalthreading-0.6.1 → functionalthreading-0.6.2}/functionalthreading/classes/__init__.py +0 -0
- {functionalthreading-0.6.1 → functionalthreading-0.6.2}/functionalthreading/functions/__init__.py +0 -0
- {functionalthreading-0.6.1 → functionalthreading-0.6.2}/functionalthreading.egg-info/SOURCES.txt +0 -0
- {functionalthreading-0.6.1 → functionalthreading-0.6.2}/functionalthreading.egg-info/dependency_links.txt +0 -0
- {functionalthreading-0.6.1 → functionalthreading-0.6.2}/functionalthreading.egg-info/top_level.txt +0 -0
- {functionalthreading-0.6.1 → functionalthreading-0.6.2}/setup.cfg +0 -0
- {functionalthreading-0.6.1 → functionalthreading-0.6.2}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: functionalthreading
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.2
|
|
4
4
|
Summary: Concurrent functional programming with thread-based parallelism
|
|
5
5
|
Author-email: Richard Tong <richytong@gmail.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/richytong/functionalthreading
|
|
@@ -13,7 +13,7 @@ License-File: LICENSE
|
|
|
13
13
|
Dynamic: license-file
|
|
14
14
|
|
|
15
15
|
# functionalthreading
|
|
16
|
-
functionalthreading -
|
|
16
|
+
functionalthreading - Concurrent functional programming with thread-based parallelism
|
|
17
17
|
|
|
18
18
|
```python
|
|
19
19
|
from functionalthreading import chain, tap, tmap
|
|
@@ -30,6 +30,9 @@ chain(
|
|
|
30
30
|
## Introduction
|
|
31
31
|
The functionalthreading module provides functions for concurrent functional programming with thread-based parallelism. Functional programming is a programming paradigm where a program is thought to be a tree of functions. This module offers functions and classes that enable the functional programming paradigm and concurrent programming in Python.
|
|
32
32
|
|
|
33
|
+
## Functional Programming
|
|
34
|
+
See [Functional Programming HOWTO](https://docs.python.org/3/howto/functional.html).
|
|
35
|
+
|
|
33
36
|
## Reference
|
|
34
37
|
|
|
35
38
|
### Thread(group=None, target=None, name=None, args=(), kwargs={}, *, daemon=None, context=None)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# functionalthreading
|
|
2
|
-
functionalthreading -
|
|
2
|
+
functionalthreading - Concurrent functional programming with thread-based parallelism
|
|
3
3
|
|
|
4
4
|
```python
|
|
5
5
|
from functionalthreading import chain, tap, tmap
|
|
@@ -16,6 +16,9 @@ chain(
|
|
|
16
16
|
## Introduction
|
|
17
17
|
The functionalthreading module provides functions for concurrent functional programming with thread-based parallelism. Functional programming is a programming paradigm where a program is thought to be a tree of functions. This module offers functions and classes that enable the functional programming paradigm and concurrent programming in Python.
|
|
18
18
|
|
|
19
|
+
## Functional Programming
|
|
20
|
+
See [Functional Programming HOWTO](https://docs.python.org/3/howto/functional.html).
|
|
21
|
+
|
|
19
22
|
## Reference
|
|
20
23
|
|
|
21
24
|
### Thread(group=None, target=None, name=None, args=(), kwargs={}, *, daemon=None, context=None)
|
{functionalthreading-0.6.1 → functionalthreading-0.6.2}/functionalthreading.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: functionalthreading
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.2
|
|
4
4
|
Summary: Concurrent functional programming with thread-based parallelism
|
|
5
5
|
Author-email: Richard Tong <richytong@gmail.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/richytong/functionalthreading
|
|
@@ -13,7 +13,7 @@ License-File: LICENSE
|
|
|
13
13
|
Dynamic: license-file
|
|
14
14
|
|
|
15
15
|
# functionalthreading
|
|
16
|
-
functionalthreading -
|
|
16
|
+
functionalthreading - Concurrent functional programming with thread-based parallelism
|
|
17
17
|
|
|
18
18
|
```python
|
|
19
19
|
from functionalthreading import chain, tap, tmap
|
|
@@ -30,6 +30,9 @@ chain(
|
|
|
30
30
|
## Introduction
|
|
31
31
|
The functionalthreading module provides functions for concurrent functional programming with thread-based parallelism. Functional programming is a programming paradigm where a program is thought to be a tree of functions. This module offers functions and classes that enable the functional programming paradigm and concurrent programming in Python.
|
|
32
32
|
|
|
33
|
+
## Functional Programming
|
|
34
|
+
See [Functional Programming HOWTO](https://docs.python.org/3/howto/functional.html).
|
|
35
|
+
|
|
33
36
|
## Reference
|
|
34
37
|
|
|
35
38
|
### Thread(group=None, target=None, name=None, args=(), kwargs={}, *, daemon=None, context=None)
|
|
File without changes
|
|
File without changes
|
{functionalthreading-0.6.1 → functionalthreading-0.6.2}/functionalthreading/classes/__init__.py
RENAMED
|
File without changes
|
{functionalthreading-0.6.1 → functionalthreading-0.6.2}/functionalthreading/functions/__init__.py
RENAMED
|
File without changes
|
{functionalthreading-0.6.1 → functionalthreading-0.6.2}/functionalthreading.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{functionalthreading-0.6.1 → functionalthreading-0.6.2}/functionalthreading.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|