gooddata-flexconnect 1.30.1.dev2__tar.gz → 1.31.1.dev1__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.
Files changed (19) hide show
  1. {gooddata_flexconnect-1.30.1.dev2 → gooddata_flexconnect-1.31.1.dev1}/PKG-INFO +15 -44
  2. gooddata_flexconnect-1.31.1.dev1/README.md +32 -0
  3. {gooddata_flexconnect-1.30.1.dev2 → gooddata_flexconnect-1.31.1.dev1}/gooddata_flexconnect.egg-info/PKG-INFO +15 -44
  4. {gooddata_flexconnect-1.30.1.dev2 → gooddata_flexconnect-1.31.1.dev1}/gooddata_flexconnect.egg-info/requires.txt +2 -2
  5. {gooddata_flexconnect-1.30.1.dev2 → gooddata_flexconnect-1.31.1.dev1}/setup.py +4 -4
  6. gooddata_flexconnect-1.30.1.dev2/README.md +0 -61
  7. {gooddata_flexconnect-1.30.1.dev2 → gooddata_flexconnect-1.31.1.dev1}/LICENSE.txt +0 -0
  8. {gooddata_flexconnect-1.30.1.dev2 → gooddata_flexconnect-1.31.1.dev1}/gooddata_flexconnect/__init__.py +0 -0
  9. {gooddata_flexconnect-1.30.1.dev2 → gooddata_flexconnect-1.31.1.dev1}/gooddata_flexconnect/function/__init__.py +0 -0
  10. {gooddata_flexconnect-1.30.1.dev2 → gooddata_flexconnect-1.31.1.dev1}/gooddata_flexconnect/function/execution_context.py +0 -0
  11. {gooddata_flexconnect-1.30.1.dev2 → gooddata_flexconnect-1.31.1.dev1}/gooddata_flexconnect/function/flight_methods.py +0 -0
  12. {gooddata_flexconnect-1.30.1.dev2 → gooddata_flexconnect-1.31.1.dev1}/gooddata_flexconnect/function/function.py +0 -0
  13. {gooddata_flexconnect-1.30.1.dev2 → gooddata_flexconnect-1.31.1.dev1}/gooddata_flexconnect/function/function_registry.py +0 -0
  14. {gooddata_flexconnect-1.30.1.dev2 → gooddata_flexconnect-1.31.1.dev1}/gooddata_flexconnect/function/function_task.py +0 -0
  15. {gooddata_flexconnect-1.30.1.dev2 → gooddata_flexconnect-1.31.1.dev1}/gooddata_flexconnect/py.typed +0 -0
  16. {gooddata_flexconnect-1.30.1.dev2 → gooddata_flexconnect-1.31.1.dev1}/gooddata_flexconnect.egg-info/SOURCES.txt +0 -0
  17. {gooddata_flexconnect-1.30.1.dev2 → gooddata_flexconnect-1.31.1.dev1}/gooddata_flexconnect.egg-info/dependency_links.txt +0 -0
  18. {gooddata_flexconnect-1.30.1.dev2 → gooddata_flexconnect-1.31.1.dev1}/gooddata_flexconnect.egg-info/top_level.txt +0 -0
  19. {gooddata_flexconnect-1.30.1.dev2 → gooddata_flexconnect-1.31.1.dev1}/setup.cfg +0 -0
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: gooddata-flexconnect
3
- Version: 1.30.1.dev2
3
+ Version: 1.31.1.dev1
4
4
  Summary: Build your own data source for GoodData Cloud and GoodData Cloud Native.
5
5
  Author: GoodData
6
6
  Author-email: support@gooddata.com
7
7
  License: MIT
8
- Project-URL: Documentation, https://gooddata-flexconnect.readthedocs.io/en/v1.30.1.dev2
8
+ Project-URL: Documentation, https://gooddata-flexconnect.readthedocs.io/en/v1.31.1.dev1
9
9
  Project-URL: Source, https://github.com/gooddata/gooddata-python-sdk
10
10
  Keywords: gooddata,flight,rpc,flight rpc,custom functions,analytics,headless,business,intelligence,headless-bi,cloud,native,semantic,layer,sql,metrics
11
11
  Classifier: Development Status :: 4 - Beta
@@ -23,8 +23,8 @@ Requires-Python: >=3.9.0
23
23
  Description-Content-Type: text/markdown
24
24
  License-File: LICENSE.txt
25
25
  Requires-Dist: dynaconf<4.0.0,>=3.1.11
26
- Requires-Dist: gooddata-flight-server~=1.30.1.dev2
27
- Requires-Dist: gooddata-sdk~=1.30.1.dev2
26
+ Requires-Dist: gooddata-flight-server~=1.31.1.dev1
27
+ Requires-Dist: gooddata-sdk~=1.31.1.dev1
28
28
  Requires-Dist: orjson<4.0.0,>=3.9.15
29
29
  Requires-Dist: pyarrow>=16.1.0
30
30
  Requires-Dist: structlog<25.0.0,>=24.0.0
@@ -44,49 +44,20 @@ from database technologies.
44
44
  and from then on can be used during report computation.
45
45
 
46
46
 
47
- ## Getting Started using the FlexConnect Template
47
+ ## Getting Started using the FlexConnect
48
48
 
49
- The easiest way to get started writing FlexConnect functions is to use [the template repository](https://github.com/gooddata/gooddata-flexconnect-template).
50
- It provides a simple example of a FlexConnect function that can be used as a starting point for your own FlexConnect functions with all the necessary infrastructure in place.
51
- It also has a README that explains how to get started with the template and some general tips on how to write FlexConnect functions.
49
+ The easiest and recommended way to get started with FlexConnect is to use [the template repository](https://github.com/gooddata/gooddata-flexconnect-template).
52
50
 
53
- ## Getting started using the FlexConnect package directly
51
+ The template repository is set up with project infrastructure and boilerplate related to testing, packaging and
52
+ running your FlexConnect functions. You can start building your own data source in under a minute.
54
53
 
55
- Install the package alongside the gooddata-flight-server using pip:
54
+ The template also comes with extensive documentation which will guide you through all important steps and facets
55
+ of building production-ready FlexConnect functions.
56
56
 
57
- ```bash
58
- pip install gooddata-flight-server gooddata-flexconnect
59
- ```
60
-
61
- Next, update the GoodData Flight Server configuration to load the FlexConnect functions.
62
-
63
- ```toml
64
- [flexconnect]
65
-
66
- # specify one or more modules that contain your FlexConnect function implementations
67
- #
68
- functions = [
69
- "flexconnect.your_function"
70
- ]
71
- ```
72
-
73
- Then when running the GoodData Flight Server, use the `--methods-provider` option to load the FlexConnect.
74
- For example:
75
-
76
- ```bash
77
- #!/bin/bash
78
-
79
- SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
80
- SERVER_CMD="${SCRIPT_DIR}/.venv/bin/gooddata-flight-server"
81
-
82
- export PYTHONPATH="${SCRIPT_DIR}/src"
83
- export CONFIG_ENV="${1:-dev}"
57
+ If you are eager to get started, here is a short snippet to bootstrap a new FlexConnect project:
84
58
 
85
- $SERVER_CMD start \
86
- --methods-provider gooddata_flexconnect \
87
- --config \
88
- config/${CONFIG_ENV}.server.toml \
89
- config/flexconnect.config.toml \
90
- --logging-config config/default.logging.ini \
91
- --dev-log
59
+ ```shell
60
+ git clone https://github.com/gooddata/gooddata-flexconnect-template.git my-flexconnect
61
+ cd my-flexconnect
62
+ rm -rf .git && git init && git add . && git commit -m "Initial commit"
92
63
  ```
@@ -0,0 +1,32 @@
1
+ # GoodData FlexConnect
2
+
3
+ GoodData FlexConnect allows you to build your own data source for GoodData Cloud or Cloud Native.
4
+
5
+ FlexConnect works with a concept similar to 'table functions' that you may already know
6
+ from database technologies.
7
+
8
+ - To build your own data source, you implement one or more FlexConnect functions. The
9
+ functions compute and return tabular data - how they do it is completely up to you.
10
+ - The functions are hosted and invoked inside a FlexConnect server (which is included in this package).
11
+ - A running FlexConnect server can be added as a data source to your GoodData Cloud or GoodData Cloud Native.
12
+ - The functions available on FlexConnect server will be mapped to data sets within GoodData's Semantic Model
13
+ and from then on can be used during report computation.
14
+
15
+
16
+ ## Getting Started using the FlexConnect
17
+
18
+ The easiest and recommended way to get started with FlexConnect is to use [the template repository](https://github.com/gooddata/gooddata-flexconnect-template).
19
+
20
+ The template repository is set up with project infrastructure and boilerplate related to testing, packaging and
21
+ running your FlexConnect functions. You can start building your own data source in under a minute.
22
+
23
+ The template also comes with extensive documentation which will guide you through all important steps and facets
24
+ of building production-ready FlexConnect functions.
25
+
26
+ If you are eager to get started, here is a short snippet to bootstrap a new FlexConnect project:
27
+
28
+ ```shell
29
+ git clone https://github.com/gooddata/gooddata-flexconnect-template.git my-flexconnect
30
+ cd my-flexconnect
31
+ rm -rf .git && git init && git add . && git commit -m "Initial commit"
32
+ ```
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: gooddata-flexconnect
3
- Version: 1.30.1.dev2
3
+ Version: 1.31.1.dev1
4
4
  Summary: Build your own data source for GoodData Cloud and GoodData Cloud Native.
5
5
  Author: GoodData
6
6
  Author-email: support@gooddata.com
7
7
  License: MIT
8
- Project-URL: Documentation, https://gooddata-flexconnect.readthedocs.io/en/v1.30.1.dev2
8
+ Project-URL: Documentation, https://gooddata-flexconnect.readthedocs.io/en/v1.31.1.dev1
9
9
  Project-URL: Source, https://github.com/gooddata/gooddata-python-sdk
10
10
  Keywords: gooddata,flight,rpc,flight rpc,custom functions,analytics,headless,business,intelligence,headless-bi,cloud,native,semantic,layer,sql,metrics
11
11
  Classifier: Development Status :: 4 - Beta
@@ -23,8 +23,8 @@ Requires-Python: >=3.9.0
23
23
  Description-Content-Type: text/markdown
24
24
  License-File: LICENSE.txt
25
25
  Requires-Dist: dynaconf<4.0.0,>=3.1.11
26
- Requires-Dist: gooddata-flight-server~=1.30.1.dev2
27
- Requires-Dist: gooddata-sdk~=1.30.1.dev2
26
+ Requires-Dist: gooddata-flight-server~=1.31.1.dev1
27
+ Requires-Dist: gooddata-sdk~=1.31.1.dev1
28
28
  Requires-Dist: orjson<4.0.0,>=3.9.15
29
29
  Requires-Dist: pyarrow>=16.1.0
30
30
  Requires-Dist: structlog<25.0.0,>=24.0.0
@@ -44,49 +44,20 @@ from database technologies.
44
44
  and from then on can be used during report computation.
45
45
 
46
46
 
47
- ## Getting Started using the FlexConnect Template
47
+ ## Getting Started using the FlexConnect
48
48
 
49
- The easiest way to get started writing FlexConnect functions is to use [the template repository](https://github.com/gooddata/gooddata-flexconnect-template).
50
- It provides a simple example of a FlexConnect function that can be used as a starting point for your own FlexConnect functions with all the necessary infrastructure in place.
51
- It also has a README that explains how to get started with the template and some general tips on how to write FlexConnect functions.
49
+ The easiest and recommended way to get started with FlexConnect is to use [the template repository](https://github.com/gooddata/gooddata-flexconnect-template).
52
50
 
53
- ## Getting started using the FlexConnect package directly
51
+ The template repository is set up with project infrastructure and boilerplate related to testing, packaging and
52
+ running your FlexConnect functions. You can start building your own data source in under a minute.
54
53
 
55
- Install the package alongside the gooddata-flight-server using pip:
54
+ The template also comes with extensive documentation which will guide you through all important steps and facets
55
+ of building production-ready FlexConnect functions.
56
56
 
57
- ```bash
58
- pip install gooddata-flight-server gooddata-flexconnect
59
- ```
60
-
61
- Next, update the GoodData Flight Server configuration to load the FlexConnect functions.
62
-
63
- ```toml
64
- [flexconnect]
65
-
66
- # specify one or more modules that contain your FlexConnect function implementations
67
- #
68
- functions = [
69
- "flexconnect.your_function"
70
- ]
71
- ```
72
-
73
- Then when running the GoodData Flight Server, use the `--methods-provider` option to load the FlexConnect.
74
- For example:
75
-
76
- ```bash
77
- #!/bin/bash
78
-
79
- SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
80
- SERVER_CMD="${SCRIPT_DIR}/.venv/bin/gooddata-flight-server"
81
-
82
- export PYTHONPATH="${SCRIPT_DIR}/src"
83
- export CONFIG_ENV="${1:-dev}"
57
+ If you are eager to get started, here is a short snippet to bootstrap a new FlexConnect project:
84
58
 
85
- $SERVER_CMD start \
86
- --methods-provider gooddata_flexconnect \
87
- --config \
88
- config/${CONFIG_ENV}.server.toml \
89
- config/flexconnect.config.toml \
90
- --logging-config config/default.logging.ini \
91
- --dev-log
59
+ ```shell
60
+ git clone https://github.com/gooddata/gooddata-flexconnect-template.git my-flexconnect
61
+ cd my-flexconnect
62
+ rm -rf .git && git init && git add . && git commit -m "Initial commit"
92
63
  ```
@@ -1,6 +1,6 @@
1
1
  dynaconf<4.0.0,>=3.1.11
2
- gooddata-flight-server~=1.30.1.dev2
3
- gooddata-sdk~=1.30.1.dev2
2
+ gooddata-flight-server~=1.31.1.dev1
3
+ gooddata-sdk~=1.31.1.dev1
4
4
  orjson<4.0.0,>=3.9.15
5
5
  pyarrow>=16.1.0
6
6
  structlog<25.0.0,>=24.0.0
@@ -8,8 +8,8 @@ long_description = (this_directory / "README.md").read_text(encoding="utf-8")
8
8
 
9
9
  REQUIRES = [
10
10
  "dynaconf>=3.1.11,<4.0.0",
11
- "gooddata-flight-server~=1.30.1.dev2",
12
- "gooddata-sdk~=1.30.1.dev2",
11
+ "gooddata-flight-server~=1.31.1.dev1",
12
+ "gooddata-sdk~=1.31.1.dev1",
13
13
  "orjson>=3.9.15,<4.0.0",
14
14
  "pyarrow>=16.1.0",
15
15
  "structlog>=24.0.0,<25.0.0",
@@ -20,7 +20,7 @@ setup(
20
20
  description="Build your own data source for GoodData Cloud and GoodData Cloud Native.",
21
21
  long_description=long_description,
22
22
  long_description_content_type="text/markdown",
23
- version="1.30.1.dev2",
23
+ version="1.31.1.dev1",
24
24
  author="GoodData",
25
25
  author_email="support@gooddata.com",
26
26
  license="MIT",
@@ -31,7 +31,7 @@ setup(
31
31
  include_package_data=True,
32
32
  python_requires=">=3.9.0",
33
33
  project_urls={
34
- "Documentation": "https://gooddata-flexconnect.readthedocs.io/en/v1.30.1.dev2",
34
+ "Documentation": "https://gooddata-flexconnect.readthedocs.io/en/v1.31.1.dev1",
35
35
  "Source": "https://github.com/gooddata/gooddata-python-sdk",
36
36
  },
37
37
  classifiers=[
@@ -1,61 +0,0 @@
1
- # GoodData FlexConnect
2
-
3
- GoodData FlexConnect allows you to build your own data source for GoodData Cloud or Cloud Native.
4
-
5
- FlexConnect works with a concept similar to 'table functions' that you may already know
6
- from database technologies.
7
-
8
- - To build your own data source, you implement one or more FlexConnect functions. The
9
- functions compute and return tabular data - how they do it is completely up to you.
10
- - The functions are hosted and invoked inside a FlexConnect server (which is included in this package).
11
- - A running FlexConnect server can be added as a data source to your GoodData Cloud or GoodData Cloud Native.
12
- - The functions available on FlexConnect server will be mapped to data sets within GoodData's Semantic Model
13
- and from then on can be used during report computation.
14
-
15
-
16
- ## Getting Started using the FlexConnect Template
17
-
18
- The easiest way to get started writing FlexConnect functions is to use [the template repository](https://github.com/gooddata/gooddata-flexconnect-template).
19
- It provides a simple example of a FlexConnect function that can be used as a starting point for your own FlexConnect functions with all the necessary infrastructure in place.
20
- It also has a README that explains how to get started with the template and some general tips on how to write FlexConnect functions.
21
-
22
- ## Getting started using the FlexConnect package directly
23
-
24
- Install the package alongside the gooddata-flight-server using pip:
25
-
26
- ```bash
27
- pip install gooddata-flight-server gooddata-flexconnect
28
- ```
29
-
30
- Next, update the GoodData Flight Server configuration to load the FlexConnect functions.
31
-
32
- ```toml
33
- [flexconnect]
34
-
35
- # specify one or more modules that contain your FlexConnect function implementations
36
- #
37
- functions = [
38
- "flexconnect.your_function"
39
- ]
40
- ```
41
-
42
- Then when running the GoodData Flight Server, use the `--methods-provider` option to load the FlexConnect.
43
- For example:
44
-
45
- ```bash
46
- #!/bin/bash
47
-
48
- SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
49
- SERVER_CMD="${SCRIPT_DIR}/.venv/bin/gooddata-flight-server"
50
-
51
- export PYTHONPATH="${SCRIPT_DIR}/src"
52
- export CONFIG_ENV="${1:-dev}"
53
-
54
- $SERVER_CMD start \
55
- --methods-provider gooddata_flexconnect \
56
- --config \
57
- config/${CONFIG_ENV}.server.toml \
58
- config/flexconnect.config.toml \
59
- --logging-config config/default.logging.ini \
60
- --dev-log
61
- ```