squirrels 0.2.1__py3-none-any.whl → 0.3.0__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.

Potentially problematic release.


This version of squirrels might be problematic. Click here for more details.

Files changed (48) hide show
  1. squirrels/__init__.py +11 -4
  2. squirrels/_api_response_models.py +118 -0
  3. squirrels/_api_server.py +140 -75
  4. squirrels/_authenticator.py +10 -8
  5. squirrels/_command_line.py +17 -11
  6. squirrels/_connection_set.py +2 -2
  7. squirrels/_constants.py +13 -5
  8. squirrels/_initializer.py +23 -13
  9. squirrels/_manifest.py +20 -10
  10. squirrels/_models.py +303 -148
  11. squirrels/_parameter_configs.py +195 -57
  12. squirrels/_parameter_sets.py +14 -17
  13. squirrels/_py_module.py +2 -4
  14. squirrels/_seeds.py +38 -0
  15. squirrels/_utils.py +41 -33
  16. squirrels/arguments/run_time_args.py +76 -34
  17. squirrels/data_sources.py +172 -51
  18. squirrels/dateutils.py +3 -3
  19. squirrels/package_data/assets/index.js +14 -14
  20. squirrels/package_data/base_project/connections.yml +1 -1
  21. squirrels/package_data/base_project/database/expenses.db +0 -0
  22. squirrels/package_data/base_project/docker/Dockerfile +1 -1
  23. squirrels/package_data/base_project/environcfg.yml +7 -7
  24. squirrels/package_data/base_project/models/dbviews/database_view1.py +25 -14
  25. squirrels/package_data/base_project/models/dbviews/database_view1.sql +21 -14
  26. squirrels/package_data/base_project/models/federates/dataset_example.py +6 -5
  27. squirrels/package_data/base_project/models/federates/dataset_example.sql +1 -1
  28. squirrels/package_data/base_project/parameters.yml +57 -28
  29. squirrels/package_data/base_project/pyconfigs/auth.py +11 -10
  30. squirrels/package_data/base_project/pyconfigs/connections.py +6 -8
  31. squirrels/package_data/base_project/pyconfigs/context.py +49 -33
  32. squirrels/package_data/base_project/pyconfigs/parameters.py +62 -30
  33. squirrels/package_data/base_project/seeds/seed_categories.csv +6 -0
  34. squirrels/package_data/base_project/seeds/seed_subcategories.csv +15 -0
  35. squirrels/package_data/base_project/squirrels.yml.j2 +37 -20
  36. squirrels/parameter_options.py +30 -10
  37. squirrels/parameters.py +300 -70
  38. squirrels/user_base.py +3 -13
  39. squirrels-0.3.0.dist-info/LICENSE +201 -0
  40. {squirrels-0.2.1.dist-info → squirrels-0.3.0.dist-info}/METADATA +15 -15
  41. squirrels-0.3.0.dist-info/RECORD +56 -0
  42. {squirrels-0.2.1.dist-info → squirrels-0.3.0.dist-info}/WHEEL +1 -1
  43. squirrels/package_data/base_project/seeds/mocks/category.csv +0 -3
  44. squirrels/package_data/base_project/seeds/mocks/max_filter.csv +0 -2
  45. squirrels/package_data/base_project/seeds/mocks/subcategory.csv +0 -6
  46. squirrels-0.2.1.dist-info/LICENSE +0 -22
  47. squirrels-0.2.1.dist-info/RECORD +0 -55
  48. {squirrels-0.2.1.dist-info → squirrels-0.3.0.dist-info}/entry_points.txt +0 -0
squirrels/user_base.py CHANGED
@@ -13,30 +13,20 @@ class User:
13
13
  """
14
14
  username: str
15
15
  is_internal: bool
16
-
17
- def __init__(self, username: str, is_internal: bool):
18
- """
19
- Constructor for the User base class
20
-
21
- Parameters:
22
- ...see Attributes of User
23
- """
24
- self.username = username
25
- self.is_internal = is_internal
26
16
 
27
17
  def __hash__(self) -> int:
28
18
  return hash(self.username)
29
19
 
30
- def set_attributes(self, user_dict: dict[str, Any]) -> None:
20
+ def set_attributes(self, **kwargs) -> None:
31
21
  """
32
22
  Can be overwritten in "auth.py" to introduce custom attributes. Does nothing by default
33
23
  """
34
24
  pass
35
25
 
36
26
  @classmethod
37
- def Create(cls, username: str, user_dict: dict[str, Any], *, is_internal: bool = False, **kwargs):
27
+ def Create(cls, username: str, *, is_internal: bool = False, **kwargs):
38
28
  user = cls(username, is_internal)
39
- user.set_attributes(user_dict)
29
+ user.set_attributes(**kwargs)
40
30
  return user
41
31
 
42
32
  @classmethod
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2024 Tim Huang
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: squirrels
3
- Version: 0.2.1
3
+ Version: 0.3.0
4
4
  Summary: Squirrels - API Framework for Data Analytics
5
- Home-page: https://squirrels-nest.github.io
5
+ Home-page: https://squirrels-analytics.github.io
6
6
  License: MIT
7
7
  Author: Tim Huang
8
8
  Author-email: tim.yuting@hotmail.com
@@ -19,29 +19,29 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
19
19
  Classifier: Typing :: Typed
20
20
  Provides-Extra: duckdb
21
21
  Requires-Dist: cachetools (>=5.3.2,<6.0.0)
22
- Requires-Dist: cryptography (>=41.0.7,<42.0.0)
23
- Requires-Dist: duckdb (>=0.10.0) ; extra == "duckdb"
24
- Requires-Dist: fastapi (>=0.109.2,<0.110.0)
22
+ Requires-Dist: duckdb-engine (>=0.13.0,<1.0.0) ; extra == "duckdb"
23
+ Requires-Dist: fastapi (>=0.110.1,<1.0.0)
25
24
  Requires-Dist: gitpython (>=3.1.41,<4.0.0)
26
25
  Requires-Dist: inquirer (>=3.2.1,<4.0.0)
27
26
  Requires-Dist: jinja2 (>=3.1.3,<4.0.0)
27
+ Requires-Dist: matplotlib (>=3.8.3,<4.0.0)
28
+ Requires-Dist: networkx (>=3.2.1,<4.0.0)
28
29
  Requires-Dist: pandas (>=2.1.4,<3.0.0)
29
- Requires-Dist: python-jose (>=3.3.0,<4.0.0)
30
- Requires-Dist: python-multipart (>=0.0.9,<0.0.10)
30
+ Requires-Dist: pyjwt (>=2.8.0,<3.0.0)
31
31
  Requires-Dist: pyyaml (>=6.0.1,<7.0.0)
32
32
  Requires-Dist: sqlalchemy (>=2.0.25,<3.0.0)
33
- Requires-Dist: uvicorn (>=0.27.1,<0.28.0)
34
- Project-URL: Documentation, https://squirrels-nest.github.io
35
- Project-URL: Repository, https://github.com/squirrels-nest/squirrels
33
+ Requires-Dist: uvicorn (>=0.29.0,<1.0.0)
34
+ Project-URL: Documentation, https://squirrels-analytics.github.io
35
+ Project-URL: Repository, https://github.com/squirrels-analytics/squirrels
36
36
  Description-Content-Type: text/markdown
37
37
 
38
38
  # Squirrels
39
39
 
40
40
  Squirrels is an API framework that lets you create REST APIs for dynamic data analytics!
41
41
 
42
- **Documentation**: <a href="https://squirrels-nest.github.io/squirrels-docs" target="_blank">https://squirrels-nest.github.io/squirrels-docs</a>
42
+ **Documentation**: <a href="https://squirrels-analytics.github.io/" target="_blank">https://squirrels-analytics.github.io/</a>
43
43
 
44
- **Source Code**: <a href="https://github.com/squirrels-nest/squirrels" target="_blank">https://github.com/squirrels-nest/squirrels</a>
44
+ **Source Code**: <a href="https://github.com/squirrels-analytics/squirrels" target="_blank">https://github.com/squirrels-analytics/squirrels</a>
45
45
 
46
46
  ## Table of Contents
47
47
 
@@ -56,8 +56,8 @@ Squirrels is an API framework that lets you create REST APIs for dynamic data an
56
56
 
57
57
  Here are a few of the things that squirrels can do:
58
58
 
59
- - Connect to any database by specifying its sqlalchemy url without code (in `squirrels.yml`) or by using its native connector library in python (in `connections.py`).
60
- - Configure API routes without code (in `squirrels.yml`) for all datasets.
59
+ - Connect to any database by specifying its SQLAlchemy url (in `squirrels.yml`) or by using its native connector library in python (in `connections.py`).
60
+ - Configure API routes for datasets (in `squirrels.yml`) without writing code.
61
61
  - Configure parameter widgets (types include single-select, multi-select, date, number, etc.) for your datasets (in `parameters.py`).
62
62
  - Use Jinja SQL templates (just like dbt!) or python functions (that return a pandas dataframe) to define dynamic query logic based on parameter selections.
63
63
  - Query multiple databases and join the results together in a final view in one API endpoint/dataset!
@@ -66,7 +66,7 @@ Here are a few of the things that squirrels can do:
66
66
 
67
67
  ## License
68
68
 
69
- Squirrels is released under the MIT license.
69
+ Squirrels is released under the Apache 2.0 license.
70
70
 
71
71
  See the file LICENSE for more details.
72
72
 
@@ -0,0 +1,56 @@
1
+ squirrels/__init__.py,sha256=aycHryN95OA-n7FJ-WaDVMGNwLwXIxSjFFutfaEBe-c,816
2
+ squirrels/_api_response_models.py,sha256=dnxEsct43omtopCmjqxCAuYng0zaBB4DQHPf_QWzP9A,3909
3
+ squirrels/_api_server.py,sha256=Sn4m5lGZJOdpaGN9H_TrDL_wGAXaP6cvRdtU-g-RGKs,19138
4
+ squirrels/_authenticator.py,sha256=BAa7JHE5WISaApf5PODQXD2GCH4s4WCtgC_w0GS5eTM,3876
5
+ squirrels/_command_line.py,sha256=CyOejIrSdRUAq7wuA5__T-n0fbsKPKZNuS0ZwmbZbO4,5955
6
+ squirrels/_connection_set.py,sha256=Bk14m63vrMbHwEMeHang4mdaCB1nJ76mqzhiLdlID9s,2609
7
+ squirrels/_constants.py,sha256=Y9a-TFdz6DQKvF22VbgmzlekWTui05wn6Gp21AIZmPE,4129
8
+ squirrels/_environcfg.py,sha256=0zCRxcJ_r1JA_0J-F79341_ezZsbGGdpfdNxTgsoMK4,2761
9
+ squirrels/_initializer.py,sha256=dZ0QlmgVjT9Q3tsr93Guu1PiwO70IU26mR0PkA0YN1U,8108
10
+ squirrels/_manifest.py,sha256=T4tQeuUqIMfeYIMbdITYpDqFPgfWN2u5UGIS2xx-hpE,9334
11
+ squirrels/_models.py,sha256=83MW5bM8iDilMjUjSyaU3KILaJuGROqK87JixW3YUnE,28832
12
+ squirrels/_package_loader.py,sha256=-EZ8qsmp6QEdZyHUKYi5e4OPOx3EnL2rxr1IYe1NwEI,1020
13
+ squirrels/_parameter_configs.py,sha256=GGpinpd8nS2wIB-rZUb1jed5kkPnGbXEpi-wojqYA2I,23211
14
+ squirrels/_parameter_sets.py,sha256=NDiyJRpD9xld2UyUJdlMockt9QXVGAaPAK6SKtg5U7U,8823
15
+ squirrels/_py_module.py,sha256=fkQ0-BV5teQpE7wcShMOtDbwX_yDrCHFW9YZ8UFE6ng,2526
16
+ squirrels/_seeds.py,sha256=XXTPcm4LqlZ25P27ScCPGhFLft8jk7krOpjmfC4LwIg,1274
17
+ squirrels/_timer.py,sha256=pFgz6dJKypmap07dfzZvwBS686DuBXwJWj0e6PnkWFU,802
18
+ squirrels/_utils.py,sha256=gyDJp08pWbST2MhzNo_rTtUN6Otmjz6bSi-eibTNdq0,5354
19
+ squirrels/_version.py,sha256=ySOetuKYm0mnm1J9-D3IcEZkf4kFrP8SVDKX97awBxo,109
20
+ squirrels/arguments/init_time_args.py,sha256=w7bqlq9-gF85skxzxaVs8U6bk58TA39y7DlfXwUMbW0,783
21
+ squirrels/arguments/run_time_args.py,sha256=4wuhpgWAZK6Lnth-tz5lrDhEZ6dviZRNbXyX1Y-mkzE,4889
22
+ squirrels/data_sources.py,sha256=MFaQtBuPaBIwyv4jqRxerlcBsJdrxtrHkMLDi4j9wxY,30739
23
+ squirrels/dateutils.py,sha256=aAdUeiBCIN13xvYddE-BLjKCbL0mh2vSgR7PW11syCk,16496
24
+ squirrels/package_data/assets/favicon.ico,sha256=FZx26dn50cp0rgYdyBptJJob2TTVNiY0NZ-MeeL_uY0,61022
25
+ squirrels/package_data/assets/index.css,sha256=btE9XnSZP2ydCSKG7y0_Sm_9Mdp4RVpI41ht1SsZrUc,11572
26
+ squirrels/package_data/assets/index.js,sha256=kvAX7TQmb7Xcsez5JObujveUQrNzIY2RLVO-JidJj38,260555
27
+ squirrels/package_data/base_project/.gitignore,sha256=OD3TgclEDFD7tI-SR3yoloYu3EOwdZksUNHEjm9TTJg,134
28
+ squirrels/package_data/base_project/connections.yml,sha256=f7xAUF9QmiRZ7GnMEaqElzHrcs8QpNpGUKPB77t4brE,266
29
+ squirrels/package_data/base_project/database/expenses.db,sha256=47ichjBqC25th7B0G5rz_yYJ4V3uQeF3cnttekQYa68,28672
30
+ squirrels/package_data/base_project/database/weather.db,sha256=PldWB7PLY_ltY-OWxN9ALcFEdiVDaP3Kef0I2k7WPso,188416
31
+ squirrels/package_data/base_project/docker/.dockerignore,sha256=sY6T-_UtTVw1jFBOfiMQ8XFS9191YqEotxYPCEsdNJ4,90
32
+ squirrels/package_data/base_project/docker/Dockerfile,sha256=VpanaF8xjeQrSmOyW1ZlbAzfCzvmGjFtgqy5-7ssNMg,484
33
+ squirrels/package_data/base_project/docker/compose.yml,sha256=UbChIXPuBm9p_lCiYEE_0t-gCZ_k1WhF7scDv6iEMZ8,125
34
+ squirrels/package_data/base_project/environcfg.yml,sha256=EkTKiDpiqeuIYJXMlVz2ISs4cRYBOoXCDorT0Vic7Ls,931
35
+ squirrels/package_data/base_project/models/dbviews/database_view1.py,sha256=vsXNwXkg1rBkMsaMQAReOTkaNKg-aKy4CK-qQkwdO08,1986
36
+ squirrels/package_data/base_project/models/dbviews/database_view1.sql,sha256=kHzFQDnI1n-Ykm7TtYMMRj_BvkL27M252thw7lCvtRw,924
37
+ squirrels/package_data/base_project/models/federates/dataset_example.py,sha256=tGMKw2gawxiUdWlJ2ICwapImpNR2V1uNvUz6cORA_GY,710
38
+ squirrels/package_data/base_project/models/federates/dataset_example.sql,sha256=eD6-9nbF-AHg0RqYOx8AwT8K9vPQOs--9U-on3MD3zs,75
39
+ squirrels/package_data/base_project/parameters.yml,sha256=p38XUhPkcmFY4Xe8osUl2vyfqT0utR-L_EuaQEBQipk,6224
40
+ squirrels/package_data/base_project/pyconfigs/auth.py,sha256=rDfOE6Srdwf18Tt6jv_-lGhCNC-JCcDbH4-4J8W9JHM,1560
41
+ squirrels/package_data/base_project/pyconfigs/connections.py,sha256=4QFD02YIOFSIvqNe8Zf5KN3xnwks0X--Xw15MyBs6nc,760
42
+ squirrels/package_data/base_project/pyconfigs/context.py,sha256=i9qGd6i3T9RuI3TW6kuhs3jVdP6Tl-hgKxKbBaJyy14,3440
43
+ squirrels/package_data/base_project/pyconfigs/parameters.py,sha256=rvKeQY1M9CB81f82aAC20q6Bb7CG89Qt9ANlEzQomZA,4292
44
+ squirrels/package_data/base_project/seeds/seed_categories.csv,sha256=jppjf1nOIxy7-bi5lJn5CVqmnLfJHHq0ABgp6UqbXnw,104
45
+ squirrels/package_data/base_project/seeds/seed_subcategories.csv,sha256=aZkBJ6KioyYjEwRunYiA8ec0X1ygiEmLRVicJecFzfY,327
46
+ squirrels/package_data/base_project/squirrels.yml.j2,sha256=yZfsZ7yrh5mZMVkppXZ6MlyDDoDzppGLN4HM3LZ85jI,2819
47
+ squirrels/package_data/base_project/tmp/.gitignore,sha256=XImoqcWvJY0C0L_TWCx1ljvqU7qh9fUTJmK4ACCmNFI,13
48
+ squirrels/package_data/templates/index.html,sha256=zMiM1w77Rs6xcYXiGwgh_WksOXlMBmEjpcAbAfhAyDA,572
49
+ squirrels/parameter_options.py,sha256=bO6M_55ZDl-A6yUkWdxVPniSL-VrwlLgsWLbVeq-EsU,16581
50
+ squirrels/parameters.py,sha256=XkTLkBS1bxBB0Rb1Ze8dtcpYhWIb7Pr8GGiRWrU_Wqc,41552
51
+ squirrels/user_base.py,sha256=WbhLBldOe1CNthAR2Gyvuz_XT0wSslDEuHdw1NzOlyo,1395
52
+ squirrels-0.3.0.dist-info/LICENSE,sha256=CItkBKs5m4J5jhkjXoW7IAnFyOC86x4hyOATpczUMmM,11338
53
+ squirrels-0.3.0.dist-info/METADATA,sha256=OQxvuUHx8EvOeW859k7u9m4QTQ55qKM7jnZQ0OMWtDw,5205
54
+ squirrels-0.3.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
55
+ squirrels-0.3.0.dist-info/entry_points.txt,sha256=mYQRuGxbg8X82hjNRJuWiON4S6kE5CPvmXmxNPtYTbg,92
56
+ squirrels-0.3.0.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.8.1
2
+ Generator: poetry-core 1.9.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,3 +0,0 @@
1
- category_id,category
2
- 0,Food
3
- 1,Bills
@@ -1,2 +0,0 @@
1
- min_value,max_value,increment
2
- 0,500,10
@@ -1,6 +0,0 @@
1
- subcategory_id,subcategory,category_id
2
- 0,Dining Out,0
3
- 1,Groceries,0
4
- 2,Utilities,1
5
- 3,Mobile,1
6
- 4,Internet,1
@@ -1,22 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2023 Tim Huang
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
22
-
@@ -1,55 +0,0 @@
1
- squirrels/__init__.py,sha256=bGHpTBlv0lhf4WLmz37Y05S8nTQ2pEdUk7twncIanXI,664
2
- squirrels/_api_server.py,sha256=a6wUXN7ZBg2EYiHGE5jneEjllZHEUWDCrlk5pVLhDc0,15499
3
- squirrels/_authenticator.py,sha256=XLFECIZANIs1ecE1y-JU_PYMI-FCHiygI1FL4GKcMgg,3742
4
- squirrels/_command_line.py,sha256=EahzH5dsveWjJ88DzPzrNaKNCp-mbE19-9_Q4MHiNHM,5668
5
- squirrels/_connection_set.py,sha256=5X-1i9eVL5F1xbOSN5frEosbONIUKVqLmMOIUfBhy-Y,2563
6
- squirrels/_constants.py,sha256=oDJsDA3A-Fgvb8tQCvNRMSzeTcr2WcpP08Cj7eNlzXw,3865
7
- squirrels/_environcfg.py,sha256=0zCRxcJ_r1JA_0J-F79341_ezZsbGGdpfdNxTgsoMK4,2761
8
- squirrels/_initializer.py,sha256=1xAY8Yyz8KM9wPzgOQWiD_RN_m7h_rtNbC9l3NJQ2wg,7750
9
- squirrels/_manifest.py,sha256=xF070LtRm3fI5ctljYx_OA-JYUs-TA-U33WwLJQI9tk,8599
10
- squirrels/_models.py,sha256=kdOHa9sXnb2kM0GeppDlR0abhaCs6F4CsEfmwVllMbk,21728
11
- squirrels/_package_loader.py,sha256=-EZ8qsmp6QEdZyHUKYi5e4OPOx3EnL2rxr1IYe1NwEI,1020
12
- squirrels/_parameter_configs.py,sha256=gU-dLpdp0WIVrxB4EYh3URrdDxn0wp8uW-D3h9uP9us,17120
13
- squirrels/_parameter_sets.py,sha256=9Eu6FakgmrdZ2a_RMnCRnXe-o-8R6DlHaAI5XaOeQpA,8917
14
- squirrels/_py_module.py,sha256=ViEH-DNDSvX9BnA7Bo18sz5TeqspG14z4aMU2uAgjw8,2624
15
- squirrels/_timer.py,sha256=pFgz6dJKypmap07dfzZvwBS686DuBXwJWj0e6PnkWFU,802
16
- squirrels/_utils.py,sha256=S_3wYL4zviGpiWu_b7QbIAhwkAnUDDScWia1VgSS7a0,5438
17
- squirrels/_version.py,sha256=ySOetuKYm0mnm1J9-D3IcEZkf4kFrP8SVDKX97awBxo,109
18
- squirrels/arguments/init_time_args.py,sha256=w7bqlq9-gF85skxzxaVs8U6bk58TA39y7DlfXwUMbW0,783
19
- squirrels/arguments/run_time_args.py,sha256=T2yJ5Zdfa6e2gexcxyzCj8_6CIRVCVIhsBqvrjBSYco,3195
20
- squirrels/data_sources.py,sha256=IzAHjQPJsrhRXTjPG36p_E5cX3UafDaAOUU79irX_oA,25864
21
- squirrels/dateutils.py,sha256=o-jQ0p3wGKomzFVn59qDdaadLtzKPeyXyKSfm0GMQPs,16487
22
- squirrels/package_data/assets/favicon.ico,sha256=FZx26dn50cp0rgYdyBptJJob2TTVNiY0NZ-MeeL_uY0,61022
23
- squirrels/package_data/assets/index.css,sha256=btE9XnSZP2ydCSKG7y0_Sm_9Mdp4RVpI41ht1SsZrUc,11572
24
- squirrels/package_data/assets/index.js,sha256=sIrGfIZDuHoPvLLTgo8VmuxivxmjEY8nXf0ELDi_7jw,260298
25
- squirrels/package_data/base_project/.gitignore,sha256=OD3TgclEDFD7tI-SR3yoloYu3EOwdZksUNHEjm9TTJg,134
26
- squirrels/package_data/base_project/connections.yml,sha256=9ZbmX2onQNlX7WrzhLt2Iw7jH7CQDHliRLUBYYFXgtY,255
27
- squirrels/package_data/base_project/database/expenses.db,sha256=igxfJMxGhX1mTTgdIQMthoILyFoP8K682Mit-CRC-ss,36864
28
- squirrels/package_data/base_project/database/weather.db,sha256=PldWB7PLY_ltY-OWxN9ALcFEdiVDaP3Kef0I2k7WPso,188416
29
- squirrels/package_data/base_project/docker/.dockerignore,sha256=sY6T-_UtTVw1jFBOfiMQ8XFS9191YqEotxYPCEsdNJ4,90
30
- squirrels/package_data/base_project/docker/Dockerfile,sha256=7t8BMaMoDExj_3VOh86RjOXerEolxlbqUgZGJTfnPJs,467
31
- squirrels/package_data/base_project/docker/compose.yml,sha256=UbChIXPuBm9p_lCiYEE_0t-gCZ_k1WhF7scDv6iEMZ8,125
32
- squirrels/package_data/base_project/environcfg.yml,sha256=vrmocpeaHdHhwXRuXyUlFSCILpaz8N2viaZ_6xXSa8I,859
33
- squirrels/package_data/base_project/models/dbviews/database_view1.py,sha256=GdqVEQJZoIM6iTN-QsH5ZyUOoC005AqVZUl-5W97QO0,1655
34
- squirrels/package_data/base_project/models/dbviews/database_view1.sql,sha256=RDeL1JWZrUDACRxOVDrKMSpvLvjthT0IA570s2c54do,488
35
- squirrels/package_data/base_project/models/federates/dataset_example.py,sha256=7OGgPS-m1nkRhF3JfF8T1XEEM-gJL2RGfthZe-Ct0pk,686
36
- squirrels/package_data/base_project/models/federates/dataset_example.sql,sha256=cH9rVjXEJIFcxqZpW8dCvHLf_c-YwDuiGlcjoTIy6CM,78
37
- squirrels/package_data/base_project/parameters.yml,sha256=vs3SOI-XM3g7xT38r7Fdf34a3q-Nhs_DL90yctdmAwc,4463
38
- squirrels/package_data/base_project/pyconfigs/auth.py,sha256=jSDuUps7mzVV__IWkju1KVw43c8hldhAA1KY1ppWZIo,1567
39
- squirrels/package_data/base_project/pyconfigs/connections.py,sha256=hOCpr71h-Gxs573rPwGerYCTVrDgmJwhj9w9hrCdCc8,809
40
- squirrels/package_data/base_project/pyconfigs/context.py,sha256=327DV8A4sQ_p70c4JbxnTa04WBZefUUuAdvSvosa4pE,2599
41
- squirrels/package_data/base_project/pyconfigs/parameters.py,sha256=ljS9uB-X6l-5vGKkb3tJTudDDo4unDsXsOv2h90OM2U,3077
42
- squirrels/package_data/base_project/seeds/mocks/category.csv,sha256=iZB9Ncv-hRJlDK2VRdW3P_fgY0fMBB0S4IAL7YYQ7-s,35
43
- squirrels/package_data/base_project/seeds/mocks/max_filter.csv,sha256=H34nwpvZVEhfTOgIJZez_UJ8N3nslxkh3CCSYUgs6w0,38
44
- squirrels/package_data/base_project/seeds/mocks/subcategory.csv,sha256=Vsc7tEghLhGN4zz7uUzR2un50SMTDhbxDa4Fll58-vw,105
45
- squirrels/package_data/base_project/squirrels.yml.j2,sha256=PbNpNmkJQ_gGeDITOK-yP5mVRxxNk87P2S2Ltq7PMf0,1727
46
- squirrels/package_data/base_project/tmp/.gitignore,sha256=XImoqcWvJY0C0L_TWCx1ljvqU7qh9fUTJmK4ACCmNFI,13
47
- squirrels/package_data/templates/index.html,sha256=zMiM1w77Rs6xcYXiGwgh_WksOXlMBmEjpcAbAfhAyDA,572
48
- squirrels/parameter_options.py,sha256=YKbS_XtXyXi5FUK4U40SK0O9PNUn7AB-VCxhsudJD34,15638
49
- squirrels/parameters.py,sha256=9TDEvs5LjSKcc8-BoFqt_FiUSUYE_CWwEz_kt8PxsHg,32401
50
- squirrels/user_base.py,sha256=dVDc9pi95DFGFS93xuloyWvETN7BEkQ3TZ0UtB7UFh0,1698
51
- squirrels-0.2.1.dist-info/LICENSE,sha256=rW94rBQiFGQtHU_v2IQJbvg715cQF-bXup4pEJVFHXA,1067
52
- squirrels-0.2.1.dist-info/METADATA,sha256=SejOgVmhVssin3pkUvPQmEfO4RCb33af-wvaizi5G_g,5208
53
- squirrels-0.2.1.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
54
- squirrels-0.2.1.dist-info/entry_points.txt,sha256=mYQRuGxbg8X82hjNRJuWiON4S6kE5CPvmXmxNPtYTbg,92
55
- squirrels-0.2.1.dist-info/RECORD,,