pyflowlauncher 0.3.0.dev0__tar.gz → 0.4.0.dev0__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.
- {pyflowlauncher-0.3.0.dev0 → pyflowlauncher-0.4.0.dev0}/PKG-INFO +3 -3
- {pyflowlauncher-0.3.0.dev0 → pyflowlauncher-0.4.0.dev0}/README.md +2 -2
- {pyflowlauncher-0.3.0.dev0 → pyflowlauncher-0.4.0.dev0}/pyflowlauncher/__init__.py +4 -2
- {pyflowlauncher-0.3.0.dev0 → pyflowlauncher-0.4.0.dev0}/pyflowlauncher.egg-info/PKG-INFO +3 -3
- {pyflowlauncher-0.3.0.dev0 → pyflowlauncher-0.4.0.dev0}/pyproject.toml +2 -2
- {pyflowlauncher-0.3.0.dev0 → pyflowlauncher-0.4.0.dev0}/pyflowlauncher/api.py +0 -0
- {pyflowlauncher-0.3.0.dev0 → pyflowlauncher-0.4.0.dev0}/pyflowlauncher/event.py +0 -0
- {pyflowlauncher-0.3.0.dev0 → pyflowlauncher-0.4.0.dev0}/pyflowlauncher/icons.py +0 -0
- {pyflowlauncher-0.3.0.dev0 → pyflowlauncher-0.4.0.dev0}/pyflowlauncher/jsonrpc.py +0 -0
- {pyflowlauncher-0.3.0.dev0 → pyflowlauncher-0.4.0.dev0}/pyflowlauncher/manifest.py +0 -0
- {pyflowlauncher-0.3.0.dev0 → pyflowlauncher-0.4.0.dev0}/pyflowlauncher/method.py +0 -0
- {pyflowlauncher-0.3.0.dev0 → pyflowlauncher-0.4.0.dev0}/pyflowlauncher/plugin.py +0 -0
- {pyflowlauncher-0.3.0.dev0 → pyflowlauncher-0.4.0.dev0}/pyflowlauncher/result.py +0 -0
- {pyflowlauncher-0.3.0.dev0 → pyflowlauncher-0.4.0.dev0}/pyflowlauncher/shared.py +0 -0
- {pyflowlauncher-0.3.0.dev0 → pyflowlauncher-0.4.0.dev0}/pyflowlauncher/string_matcher.py +0 -0
- {pyflowlauncher-0.3.0.dev0 → pyflowlauncher-0.4.0.dev0}/pyflowlauncher.egg-info/SOURCES.txt +0 -0
- {pyflowlauncher-0.3.0.dev0 → pyflowlauncher-0.4.0.dev0}/pyflowlauncher.egg-info/dependency_links.txt +0 -0
- {pyflowlauncher-0.3.0.dev0 → pyflowlauncher-0.4.0.dev0}/pyflowlauncher.egg-info/requires.txt +0 -0
- {pyflowlauncher-0.3.0.dev0 → pyflowlauncher-0.4.0.dev0}/pyflowlauncher.egg-info/top_level.txt +0 -0
- {pyflowlauncher-0.3.0.dev0 → pyflowlauncher-0.4.0.dev0}/setup.cfg +0 -0
- {pyflowlauncher-0.3.0.dev0 → pyflowlauncher-0.4.0.dev0}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pyflowlauncher
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0.dev0
|
|
4
4
|
Summary: Python library to help build Flow Launcher plugins.
|
|
5
5
|
Author-email: William McAllister <dev.garulf@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -26,7 +26,7 @@ A basic plugin using a function as the query method.
|
|
|
26
26
|
|
|
27
27
|
```py
|
|
28
28
|
from pyflowlauncher import Plugin, Result, send_results
|
|
29
|
-
from pyflowlauncher.result import
|
|
29
|
+
from pyflowlauncher.result import ResultResponse
|
|
30
30
|
|
|
31
31
|
plugin = Plugin()
|
|
32
32
|
|
|
@@ -50,7 +50,7 @@ A more advanced usage using a `Method` class as the query method.
|
|
|
50
50
|
|
|
51
51
|
```py
|
|
52
52
|
from pyflowlauncher import Plugin, Result, Method
|
|
53
|
-
from pyflowlauncher.result import
|
|
53
|
+
from pyflowlauncher.result import ResultResponse
|
|
54
54
|
|
|
55
55
|
plugin = Plugin()
|
|
56
56
|
|
|
@@ -14,7 +14,7 @@ A basic plugin using a function as the query method.
|
|
|
14
14
|
|
|
15
15
|
```py
|
|
16
16
|
from pyflowlauncher import Plugin, Result, send_results
|
|
17
|
-
from pyflowlauncher.result import
|
|
17
|
+
from pyflowlauncher.result import ResultResponse
|
|
18
18
|
|
|
19
19
|
plugin = Plugin()
|
|
20
20
|
|
|
@@ -38,7 +38,7 @@ A more advanced usage using a `Method` class as the query method.
|
|
|
38
38
|
|
|
39
39
|
```py
|
|
40
40
|
from pyflowlauncher import Plugin, Result, Method
|
|
41
|
-
from pyflowlauncher.result import
|
|
41
|
+
from pyflowlauncher.result import ResultResponse
|
|
42
42
|
|
|
43
43
|
plugin = Plugin()
|
|
44
44
|
|
|
@@ -2,8 +2,9 @@ import importlib.metadata
|
|
|
2
2
|
import logging
|
|
3
3
|
import os
|
|
4
4
|
|
|
5
|
-
from .plugin import Plugin
|
|
6
|
-
from .result import JsonRPCAction, Result, send_results
|
|
5
|
+
from .plugin import Plugin
|
|
6
|
+
from .result import JsonRPCAction, Result, send_results, ResultResponse
|
|
7
|
+
from .method import Method
|
|
7
8
|
|
|
8
9
|
log_level = os.environ.get("FLOW_LAUNCHER_API_LOG_LEVEL", "INFO")
|
|
9
10
|
|
|
@@ -19,6 +20,7 @@ __all__ = [
|
|
|
19
20
|
"send_results",
|
|
20
21
|
"Result",
|
|
21
22
|
"JsonRPCAction",
|
|
23
|
+
"Method",
|
|
22
24
|
]
|
|
23
25
|
|
|
24
26
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pyflowlauncher
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0.dev0
|
|
4
4
|
Summary: Python library to help build Flow Launcher plugins.
|
|
5
5
|
Author-email: William McAllister <dev.garulf@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -26,7 +26,7 @@ A basic plugin using a function as the query method.
|
|
|
26
26
|
|
|
27
27
|
```py
|
|
28
28
|
from pyflowlauncher import Plugin, Result, send_results
|
|
29
|
-
from pyflowlauncher.result import
|
|
29
|
+
from pyflowlauncher.result import ResultResponse
|
|
30
30
|
|
|
31
31
|
plugin = Plugin()
|
|
32
32
|
|
|
@@ -50,7 +50,7 @@ A more advanced usage using a `Method` class as the query method.
|
|
|
50
50
|
|
|
51
51
|
```py
|
|
52
52
|
from pyflowlauncher import Plugin, Result, Method
|
|
53
|
-
from pyflowlauncher.result import
|
|
53
|
+
from pyflowlauncher.result import ResultResponse
|
|
54
54
|
|
|
55
55
|
plugin = Plugin()
|
|
56
56
|
|
|
@@ -6,7 +6,7 @@ name = "pyflowlauncher"
|
|
|
6
6
|
authors = [
|
|
7
7
|
{name = "William McAllister", email = "dev.garulf@gmail.com"}
|
|
8
8
|
]
|
|
9
|
-
version = '0.
|
|
9
|
+
version = '0.4.0-dev.0'
|
|
10
10
|
description = "Python library to help build Flow Launcher plugins."
|
|
11
11
|
readme = "README.md"
|
|
12
12
|
requires-python = ">=3.8"
|
|
@@ -24,7 +24,7 @@ dependencies = [
|
|
|
24
24
|
packages = ["pyflowlauncher"]
|
|
25
25
|
|
|
26
26
|
[tool.bumpversion]
|
|
27
|
-
current_version = "0.
|
|
27
|
+
current_version = "0.4.0-dev.0"
|
|
28
28
|
parse = """(?x)
|
|
29
29
|
(?P<major>[0-9]+)
|
|
30
30
|
\\.(?P<minor>[0-9]+)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyflowlauncher-0.3.0.dev0 → pyflowlauncher-0.4.0.dev0}/pyflowlauncher.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{pyflowlauncher-0.3.0.dev0 → pyflowlauncher-0.4.0.dev0}/pyflowlauncher.egg-info/requires.txt
RENAMED
|
File without changes
|
{pyflowlauncher-0.3.0.dev0 → pyflowlauncher-0.4.0.dev0}/pyflowlauncher.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|