rgwfuncs 0.0.6__py3-none-any.whl → 0.0.7__py3-none-any.whl
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.6.dist-info → rgwfuncs-0.0.7.dist-info}/METADATA +78 -4
- rgwfuncs-0.0.7.dist-info/RECORD +8 -0
- rgwfuncs-0.0.6.dist-info/RECORD +0 -8
- {rgwfuncs-0.0.6.dist-info → rgwfuncs-0.0.7.dist-info}/LICENSE +0 -0
- {rgwfuncs-0.0.6.dist-info → rgwfuncs-0.0.7.dist-info}/WHEEL +0 -0
- {rgwfuncs-0.0.6.dist-info → rgwfuncs-0.0.7.dist-info}/entry_points.txt +0 -0
- {rgwfuncs-0.0.6.dist-info → rgwfuncs-0.0.7.dist-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.7
|
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
|
@@ -28,16 +28,90 @@ Requires-Dist: google-api-python-client
|
|
28
28
|
|
29
29
|
***By Ryan Gerard Wilson (https://ryangerardwilson.com)***
|
30
30
|
|
31
|
-
This library
|
31
|
+
This library is meant to make ML/ Data Science pipelines more readable. It assumes a linux environment, and the existence of a `rgwml.config` file for certain features (like db querying, sending data to slack, etc.)
|
32
32
|
|
33
33
|
--------------------------------------------------------------------------------
|
34
34
|
|
35
35
|
## Installation
|
36
36
|
|
37
37
|
Install the package using:
|
38
|
-
bash
|
39
|
-
pip install rgwfuncs
|
40
38
|
|
39
|
+
pip install rgwfuncs
|
40
|
+
|
41
|
+
--------------------------------------------------------------------------------
|
42
|
+
|
43
|
+
## Create a `rgwml.config` File
|
44
|
+
|
45
|
+
A `rgwml.config` file (located at `vi ~/Documents/rgwml.config) is required for MSSQL, CLICKHOUSE, MYSQL, GOOGLE BIG QUERY, SLACK, TELEGRAM, and GMAIL integrations.
|
46
|
+
|
47
|
+
{
|
48
|
+
"db_presets" : [
|
49
|
+
{
|
50
|
+
"name": "mssql_db9",
|
51
|
+
"db_type": "mssql",
|
52
|
+
"host": "",
|
53
|
+
"username": "",
|
54
|
+
"password": "",
|
55
|
+
"database": ""
|
56
|
+
},
|
57
|
+
{
|
58
|
+
"name": "clickhouse_db7",
|
59
|
+
"db_type": "clickhouse",
|
60
|
+
"host": "",
|
61
|
+
"username": "",
|
62
|
+
"password": "",
|
63
|
+
"database": ""
|
64
|
+
},
|
65
|
+
{
|
66
|
+
"name": "mysql_db2",
|
67
|
+
"db_type": "mysql",
|
68
|
+
"host": "",
|
69
|
+
"username": "",
|
70
|
+
"password": "",
|
71
|
+
"database": ""
|
72
|
+
},
|
73
|
+
{
|
74
|
+
"name": "bq_db1",
|
75
|
+
"db_type": "google_big_query",
|
76
|
+
"json_file_path": "",
|
77
|
+
"project_id": ""
|
78
|
+
}
|
79
|
+
],
|
80
|
+
"vm_presets": [
|
81
|
+
{
|
82
|
+
"name": "main_server",
|
83
|
+
"host": "",
|
84
|
+
"ssh_user": "",
|
85
|
+
"ssh_key_path": ""
|
86
|
+
}
|
87
|
+
],
|
88
|
+
"cloud_storage_presets": [
|
89
|
+
{
|
90
|
+
"name": "gcs_bucket_name",
|
91
|
+
"credential_path": "path/to/your/credentials.json"
|
92
|
+
}
|
93
|
+
],
|
94
|
+
"telegram_bot_presets": [
|
95
|
+
{
|
96
|
+
"name": "rgwml-bot",
|
97
|
+
"chat_id": "",
|
98
|
+
"bot_token": ""
|
99
|
+
}
|
100
|
+
],
|
101
|
+
"slack_bot_presets": [
|
102
|
+
{
|
103
|
+
"name": "labs-channel",
|
104
|
+
"channel_id": "",
|
105
|
+
"bot_token": ""
|
106
|
+
}
|
107
|
+
],
|
108
|
+
"gmail_bot_presets": [
|
109
|
+
{
|
110
|
+
"name": "info@xyz.com",
|
111
|
+
"service_account_credentials_path": "/home/user/Documents/credentials/your_creds.json"
|
112
|
+
}
|
113
|
+
]
|
114
|
+
}
|
41
115
|
|
42
116
|
--------------------------------------------------------------------------------
|
43
117
|
|
@@ -0,0 +1,8 @@
|
|
1
|
+
rgwfuncs/__init__.py,sha256=o4BBYVERWwAx8dknJ03yVCHqV9o8D1qrRgFeJrtpDWg,1041
|
2
|
+
rgwfuncs/df_lib.py,sha256=vYKElOUyMqBMC5EYA6vaqknpmVoOzNIyOWdJxMlzGcs,61137
|
3
|
+
rgwfuncs-0.0.7.dist-info/LICENSE,sha256=7EI8xVBu6h_7_JlVw-yPhhOZlpY9hP8wal7kHtqKT_E,1074
|
4
|
+
rgwfuncs-0.0.7.dist-info/METADATA,sha256=CoUF-aVOBZmywYKpz2fLgd18Y0YRQieXGYp1E6ggMw8,31226
|
5
|
+
rgwfuncs-0.0.7.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
6
|
+
rgwfuncs-0.0.7.dist-info/entry_points.txt,sha256=j-c5IOPIQ0252EaOV6j6STio56sbXl2C4ym_fQ0lXx0,43
|
7
|
+
rgwfuncs-0.0.7.dist-info/top_level.txt,sha256=aGuVIzWsKiV1f2gCb6mynx0zx5ma0B1EwPGFKVEMTi4,9
|
8
|
+
rgwfuncs-0.0.7.dist-info/RECORD,,
|
rgwfuncs-0.0.6.dist-info/RECORD
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
rgwfuncs/__init__.py,sha256=o4BBYVERWwAx8dknJ03yVCHqV9o8D1qrRgFeJrtpDWg,1041
|
2
|
-
rgwfuncs/df_lib.py,sha256=vYKElOUyMqBMC5EYA6vaqknpmVoOzNIyOWdJxMlzGcs,61137
|
3
|
-
rgwfuncs-0.0.6.dist-info/LICENSE,sha256=7EI8xVBu6h_7_JlVw-yPhhOZlpY9hP8wal7kHtqKT_E,1074
|
4
|
-
rgwfuncs-0.0.6.dist-info/METADATA,sha256=xFzwEq1qgtxKJ0kJk7OcU3tWDz8XRg47DqpGouIds_E,29328
|
5
|
-
rgwfuncs-0.0.6.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
6
|
-
rgwfuncs-0.0.6.dist-info/entry_points.txt,sha256=j-c5IOPIQ0252EaOV6j6STio56sbXl2C4ym_fQ0lXx0,43
|
7
|
-
rgwfuncs-0.0.6.dist-info/top_level.txt,sha256=aGuVIzWsKiV1f2gCb6mynx0zx5ma0B1EwPGFKVEMTi4,9
|
8
|
-
rgwfuncs-0.0.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|