rgwfuncs 0.0.37__tar.gz → 0.0.39__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.
- {rgwfuncs-0.0.37/src/rgwfuncs.egg-info → rgwfuncs-0.0.39}/PKG-INFO +2 -1
- {rgwfuncs-0.0.37 → rgwfuncs-0.0.39}/pyproject.toml +2 -1
- {rgwfuncs-0.0.37 → rgwfuncs-0.0.39}/setup.cfg +2 -1
- {rgwfuncs-0.0.37 → rgwfuncs-0.0.39}/src/rgwfuncs/df_lib.py +2 -1
- {rgwfuncs-0.0.37 → rgwfuncs-0.0.39/src/rgwfuncs.egg-info}/PKG-INFO +2 -1
- {rgwfuncs-0.0.37 → rgwfuncs-0.0.39}/src/rgwfuncs.egg-info/requires.txt +1 -0
- {rgwfuncs-0.0.37 → rgwfuncs-0.0.39}/LICENSE +0 -0
- {rgwfuncs-0.0.37 → rgwfuncs-0.0.39}/README.md +0 -0
- {rgwfuncs-0.0.37 → rgwfuncs-0.0.39}/src/rgwfuncs/__init__.py +0 -0
- {rgwfuncs-0.0.37 → rgwfuncs-0.0.39}/src/rgwfuncs/algebra_lib.py +0 -0
- {rgwfuncs-0.0.37 → rgwfuncs-0.0.39}/src/rgwfuncs/docs_lib.py +0 -0
- {rgwfuncs-0.0.37 → rgwfuncs-0.0.39}/src/rgwfuncs/interactive_shell_lib.py +0 -0
- {rgwfuncs-0.0.37 → rgwfuncs-0.0.39}/src/rgwfuncs/str_lib.py +0 -0
- {rgwfuncs-0.0.37 → rgwfuncs-0.0.39}/src/rgwfuncs.egg-info/SOURCES.txt +0 -0
- {rgwfuncs-0.0.37 → rgwfuncs-0.0.39}/src/rgwfuncs.egg-info/dependency_links.txt +0 -0
- {rgwfuncs-0.0.37 → rgwfuncs-0.0.39}/src/rgwfuncs.egg-info/entry_points.txt +0 -0
- {rgwfuncs-0.0.37 → rgwfuncs-0.0.39}/src/rgwfuncs.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: rgwfuncs
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.39
|
4
4
|
Summary: A functional programming paradigm for mathematical modelling and data science
|
5
5
|
Home-page: https://github.com/ryangerardwilson/rgwfunc
|
6
6
|
Author: Ryan Gerard Wilson
|
@@ -23,6 +23,7 @@ Requires-Dist: xgboost
|
|
23
23
|
Requires-Dist: requests
|
24
24
|
Requires-Dist: slack-sdk
|
25
25
|
Requires-Dist: google-api-python-client
|
26
|
+
Requires-Dist: boto
|
26
27
|
|
27
28
|
# RGWFUNCS
|
28
29
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "rgwfuncs"
|
7
|
-
version = "0.0.
|
7
|
+
version = "0.0.39"
|
8
8
|
authors = [
|
9
9
|
{ name = "Ryan Gerard Wilson", email = "ryangerardwilson@gmail.com" },
|
10
10
|
]
|
@@ -27,6 +27,7 @@ dependencies = [
|
|
27
27
|
"requests",
|
28
28
|
"slack-sdk",
|
29
29
|
"google-api-python-client",
|
30
|
+
"boto"
|
30
31
|
]
|
31
32
|
|
32
33
|
dynamic = ["scripts"]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[metadata]
|
2
2
|
name = rgwfuncs
|
3
|
-
version = 0.0.
|
3
|
+
version = 0.0.39
|
4
4
|
author = Ryan Gerard Wilson
|
5
5
|
author_email = ryangerardwilson@gmail.com
|
6
6
|
description = A functional programming paradigm for mathematical modelling and data science
|
@@ -28,6 +28,7 @@ install_requires =
|
|
28
28
|
requests
|
29
29
|
slack-sdk
|
30
30
|
google-api-python-client
|
31
|
+
boto
|
31
32
|
|
32
33
|
[options.packages.find]
|
33
34
|
where = src
|
@@ -21,6 +21,7 @@ from email.mime.base import MIMEBase
|
|
21
21
|
from email import encoders
|
22
22
|
from googleapiclient.discovery import build
|
23
23
|
import base64
|
24
|
+
import boto3
|
24
25
|
# import inspect
|
25
26
|
from typing import Optional, Dict, List, Tuple, Any
|
26
27
|
import warnings
|
@@ -434,7 +435,7 @@ def load_data_from_query(db_preset_name: str, query: str) -> pd.DataFrame:
|
|
434
435
|
return pd.DataFrame(data, columns=columns)
|
435
436
|
|
436
437
|
|
437
|
-
aws_region = db_preset['
|
438
|
+
aws_region = db_preset['aws_region']
|
438
439
|
database = db_preset['database']
|
439
440
|
output_bucket = db_preset['output_bucket']
|
440
441
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: rgwfuncs
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.39
|
4
4
|
Summary: A functional programming paradigm for mathematical modelling and data science
|
5
5
|
Home-page: https://github.com/ryangerardwilson/rgwfunc
|
6
6
|
Author: Ryan Gerard Wilson
|
@@ -23,6 +23,7 @@ Requires-Dist: xgboost
|
|
23
23
|
Requires-Dist: requests
|
24
24
|
Requires-Dist: slack-sdk
|
25
25
|
Requires-Dist: google-api-python-client
|
26
|
+
Requires-Dist: boto
|
26
27
|
|
27
28
|
# RGWFUNCS
|
28
29
|
|
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
|