sqlframe 1.8.0__py3-none-any.whl → 1.10.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.
- sqlframe/_version.py +2 -2
- sqlframe/base/column.py +1 -1
- sqlframe/base/function_alternatives.py +96 -0
- sqlframe/base/functions.py +4066 -19
- sqlframe/base/session.py +2 -2
- sqlframe/base/types.py +1 -1
- sqlframe/base/util.py +5 -0
- sqlframe/bigquery/functions.py +4 -0
- sqlframe/bigquery/functions.pyi +37 -1
- sqlframe/duckdb/functions.py +3 -0
- sqlframe/duckdb/functions.pyi +29 -0
- sqlframe/postgres/functions.py +6 -0
- sqlframe/postgres/functions.pyi +28 -0
- sqlframe/snowflake/functions.py +3 -0
- sqlframe/snowflake/functions.pyi +27 -0
- sqlframe/spark/functions.pyi +163 -0
- {sqlframe-1.8.0.dist-info → sqlframe-1.10.0.dist-info}/METADATA +5 -5
- {sqlframe-1.8.0.dist-info → sqlframe-1.10.0.dist-info}/RECORD +21 -21
- {sqlframe-1.8.0.dist-info → sqlframe-1.10.0.dist-info}/LICENSE +0 -0
- {sqlframe-1.8.0.dist-info → sqlframe-1.10.0.dist-info}/WHEEL +0 -0
- {sqlframe-1.8.0.dist-info → sqlframe-1.10.0.dist-info}/top_level.txt +0 -0
sqlframe/spark/functions.pyi
CHANGED
|
@@ -7,20 +7,30 @@ from sqlframe.base.functions import (
|
|
|
7
7
|
abs as abs,
|
|
8
8
|
acos as acos,
|
|
9
9
|
acosh as acosh,
|
|
10
|
+
aes_decrypt as aes_decrypt,
|
|
11
|
+
aes_encrypt as aes_encrypt,
|
|
10
12
|
aggregate as aggregate,
|
|
13
|
+
any_value as any_value,
|
|
11
14
|
approxCountDistinct as approxCountDistinct,
|
|
12
15
|
approx_count_distinct as approx_count_distinct,
|
|
16
|
+
approx_percentile as approx_percentile,
|
|
13
17
|
array as array,
|
|
18
|
+
array_agg as array_agg,
|
|
19
|
+
array_append as array_append,
|
|
20
|
+
array_compact as array_compact,
|
|
14
21
|
array_contains as array_contains,
|
|
15
22
|
array_distinct as array_distinct,
|
|
16
23
|
array_except as array_except,
|
|
24
|
+
array_insert as array_insert,
|
|
17
25
|
array_intersect as array_intersect,
|
|
18
26
|
array_join as array_join,
|
|
19
27
|
array_max as array_max,
|
|
20
28
|
array_min as array_min,
|
|
21
29
|
array_position as array_position,
|
|
30
|
+
array_prepend as array_prepend,
|
|
22
31
|
array_remove as array_remove,
|
|
23
32
|
array_repeat as array_repeat,
|
|
33
|
+
array_size as array_size,
|
|
24
34
|
array_sort as array_sort,
|
|
25
35
|
array_union as array_union,
|
|
26
36
|
arrays_zip as arrays_zip,
|
|
@@ -37,20 +47,42 @@ from sqlframe.base.functions import (
|
|
|
37
47
|
avg as avg,
|
|
38
48
|
base64 as base64,
|
|
39
49
|
bin as bin,
|
|
50
|
+
bit_and as bit_and,
|
|
51
|
+
bit_count as bit_count,
|
|
52
|
+
bit_get as bit_get,
|
|
40
53
|
bit_length as bit_length,
|
|
54
|
+
bit_or as bit_or,
|
|
55
|
+
bit_xor as bit_xor,
|
|
56
|
+
bitmap_bit_position as bitmap_bit_position,
|
|
57
|
+
bitmap_bucket_number as bitmap_bucket_number,
|
|
58
|
+
bitmap_construct_agg as bitmap_construct_agg,
|
|
59
|
+
bitmap_count as bitmap_count,
|
|
60
|
+
bitmap_or_agg as bitmap_or_agg,
|
|
41
61
|
bitwiseNOT as bitwiseNOT,
|
|
42
62
|
bitwise_not as bitwise_not,
|
|
63
|
+
bool_and as bool_and,
|
|
64
|
+
bool_or as bool_or,
|
|
65
|
+
broadcast as broadcast,
|
|
43
66
|
bround as bround,
|
|
67
|
+
btrim as btrim,
|
|
68
|
+
bucket as bucket,
|
|
69
|
+
call_function as call_function,
|
|
70
|
+
cardinality as cardinality,
|
|
44
71
|
cbrt as cbrt,
|
|
45
72
|
ceil as ceil,
|
|
46
73
|
ceiling as ceiling,
|
|
74
|
+
char as char,
|
|
75
|
+
char_length as char_length,
|
|
76
|
+
character_length as character_length,
|
|
47
77
|
coalesce as coalesce,
|
|
48
78
|
col as col,
|
|
49
79
|
collect_list as collect_list,
|
|
50
80
|
collect_set as collect_set,
|
|
51
81
|
concat as concat,
|
|
52
82
|
concat_ws as concat_ws,
|
|
83
|
+
contains as contains,
|
|
53
84
|
conv as conv,
|
|
85
|
+
convert_timezone as convert_timezone,
|
|
54
86
|
corr as corr,
|
|
55
87
|
cos as cos,
|
|
56
88
|
cosh as cosh,
|
|
@@ -58,22 +90,37 @@ from sqlframe.base.functions import (
|
|
|
58
90
|
count as count,
|
|
59
91
|
countDistinct as countDistinct,
|
|
60
92
|
count_distinct as count_distinct,
|
|
93
|
+
count_if as count_if,
|
|
94
|
+
count_min_sketch as count_min_sketch,
|
|
61
95
|
covar_pop as covar_pop,
|
|
62
96
|
covar_samp as covar_samp,
|
|
63
97
|
crc32 as crc32,
|
|
64
98
|
create_map as create_map,
|
|
65
99
|
csc as csc,
|
|
66
100
|
cume_dist as cume_dist,
|
|
101
|
+
curdate as curdate,
|
|
102
|
+
current_catalog as current_catalog,
|
|
103
|
+
current_database as current_database,
|
|
67
104
|
current_date as current_date,
|
|
105
|
+
current_schema as current_schema,
|
|
68
106
|
current_timestamp as current_timestamp,
|
|
107
|
+
current_timezone as current_timezone,
|
|
108
|
+
current_user as current_user,
|
|
69
109
|
date_add as date_add,
|
|
70
110
|
date_diff as date_diff,
|
|
71
111
|
date_format as date_format,
|
|
112
|
+
date_from_unix_date as date_from_unix_date,
|
|
113
|
+
date_part as date_part,
|
|
72
114
|
date_sub as date_sub,
|
|
73
115
|
date_trunc as date_trunc,
|
|
116
|
+
dateadd as dateadd,
|
|
117
|
+
datediff as datediff,
|
|
118
|
+
datepart as datepart,
|
|
119
|
+
day as day,
|
|
74
120
|
dayofmonth as dayofmonth,
|
|
75
121
|
dayofweek as dayofweek,
|
|
76
122
|
dayofyear as dayofyear,
|
|
123
|
+
days as days,
|
|
77
124
|
decode as decode,
|
|
78
125
|
degrees as degrees,
|
|
79
126
|
dense_rank as dense_rank,
|
|
@@ -82,16 +129,23 @@ from sqlframe.base.functions import (
|
|
|
82
129
|
desc_nulls_last as desc_nulls_last,
|
|
83
130
|
e as e,
|
|
84
131
|
element_at as element_at,
|
|
132
|
+
elt as elt,
|
|
85
133
|
encode as encode,
|
|
134
|
+
endswith as endswith,
|
|
135
|
+
equal_null as equal_null,
|
|
136
|
+
every as every,
|
|
86
137
|
exists as exists,
|
|
87
138
|
exp as exp,
|
|
88
139
|
explode as explode,
|
|
89
140
|
explode_outer as explode_outer,
|
|
90
141
|
expm1 as expm1,
|
|
91
142
|
expr as expr,
|
|
143
|
+
extract as extract,
|
|
92
144
|
factorial as factorial,
|
|
93
145
|
filter as filter,
|
|
146
|
+
find_in_set as find_in_set,
|
|
94
147
|
first as first,
|
|
148
|
+
first_value as first_value,
|
|
95
149
|
flatten as flatten,
|
|
96
150
|
floor as floor,
|
|
97
151
|
forall as forall,
|
|
@@ -101,28 +155,52 @@ from sqlframe.base.functions import (
|
|
|
101
155
|
from_json as from_json,
|
|
102
156
|
from_unixtime as from_unixtime,
|
|
103
157
|
from_utc_timestamp as from_utc_timestamp,
|
|
158
|
+
get as get,
|
|
159
|
+
get_active_spark_context as get_active_spark_context,
|
|
104
160
|
get_json_object as get_json_object,
|
|
161
|
+
getbit as getbit,
|
|
105
162
|
greatest as greatest,
|
|
163
|
+
grouping as grouping,
|
|
106
164
|
grouping_id as grouping_id,
|
|
107
165
|
hash as hash,
|
|
108
166
|
hex as hex,
|
|
167
|
+
histogram_numeric as histogram_numeric,
|
|
168
|
+
hll_sketch_agg as hll_sketch_agg,
|
|
169
|
+
hll_sketch_estimate as hll_sketch_estimate,
|
|
170
|
+
hll_union as hll_union,
|
|
171
|
+
hll_union_agg as hll_union_agg,
|
|
109
172
|
hour as hour,
|
|
173
|
+
hours as hours,
|
|
110
174
|
hypot as hypot,
|
|
175
|
+
ifnull as ifnull,
|
|
176
|
+
ilike as ilike,
|
|
111
177
|
initcap as initcap,
|
|
178
|
+
inline as inline,
|
|
179
|
+
inline_outer as inline_outer,
|
|
112
180
|
input_file_name as input_file_name,
|
|
113
181
|
instr as instr,
|
|
114
182
|
isnan as isnan,
|
|
183
|
+
isnotnull as isnotnull,
|
|
115
184
|
isnull as isnull,
|
|
185
|
+
java_method as java_method,
|
|
186
|
+
json_array_length as json_array_length,
|
|
187
|
+
json_object_keys as json_object_keys,
|
|
116
188
|
json_tuple as json_tuple,
|
|
117
189
|
kurtosis as kurtosis,
|
|
118
190
|
lag as lag,
|
|
119
191
|
last as last,
|
|
120
192
|
last_day as last_day,
|
|
193
|
+
last_value as last_value,
|
|
194
|
+
lcase as lcase,
|
|
121
195
|
lead as lead,
|
|
122
196
|
least as least,
|
|
197
|
+
left as left,
|
|
123
198
|
length as length,
|
|
124
199
|
levenshtein as levenshtein,
|
|
200
|
+
like as like,
|
|
125
201
|
lit as lit,
|
|
202
|
+
ln as ln,
|
|
203
|
+
localtimestamp as localtimestamp,
|
|
126
204
|
locate as locate,
|
|
127
205
|
log as log,
|
|
128
206
|
log10 as log10,
|
|
@@ -132,8 +210,14 @@ from sqlframe.base.functions import (
|
|
|
132
210
|
lpad as lpad,
|
|
133
211
|
ltrim as ltrim,
|
|
134
212
|
make_date as make_date,
|
|
213
|
+
make_dt_interval as make_dt_interval,
|
|
135
214
|
make_interval as make_interval,
|
|
215
|
+
make_timestamp as make_timestamp,
|
|
216
|
+
make_timestamp_ltz as make_timestamp_ltz,
|
|
217
|
+
make_timestamp_ntz as make_timestamp_ntz,
|
|
218
|
+
make_ym_interval as make_ym_interval,
|
|
136
219
|
map_concat as map_concat,
|
|
220
|
+
map_contains_key as map_contains_key,
|
|
137
221
|
map_entries as map_entries,
|
|
138
222
|
map_filter as map_filter,
|
|
139
223
|
map_from_arrays as map_from_arrays,
|
|
@@ -141,39 +225,76 @@ from sqlframe.base.functions import (
|
|
|
141
225
|
map_keys as map_keys,
|
|
142
226
|
map_values as map_values,
|
|
143
227
|
map_zip_with as map_zip_with,
|
|
228
|
+
mask as mask,
|
|
144
229
|
max as max,
|
|
145
230
|
max_by as max_by,
|
|
146
231
|
md5 as md5,
|
|
147
232
|
mean as mean,
|
|
233
|
+
median as median,
|
|
148
234
|
min as min,
|
|
149
235
|
min_by as min_by,
|
|
150
236
|
minute as minute,
|
|
237
|
+
mode as mode,
|
|
151
238
|
monotonically_increasing_id as monotonically_increasing_id,
|
|
152
239
|
month as month,
|
|
240
|
+
months as months,
|
|
153
241
|
months_between as months_between,
|
|
242
|
+
named_struct as named_struct,
|
|
154
243
|
nanvl as nanvl,
|
|
244
|
+
negate as negate,
|
|
245
|
+
negative as negative,
|
|
155
246
|
next_day as next_day,
|
|
247
|
+
now as now,
|
|
156
248
|
nth_value as nth_value,
|
|
157
249
|
ntile as ntile,
|
|
158
250
|
nullif as nullif,
|
|
251
|
+
nvl as nvl,
|
|
252
|
+
nvl2 as nvl2,
|
|
159
253
|
octet_length as octet_length,
|
|
160
254
|
overlay as overlay,
|
|
255
|
+
parse_url as parse_url,
|
|
161
256
|
percent_rank as percent_rank,
|
|
162
257
|
percentile_approx as percentile_approx,
|
|
258
|
+
pi as pi,
|
|
259
|
+
pmod as pmod,
|
|
163
260
|
posexplode as posexplode,
|
|
164
261
|
posexplode_outer as posexplode_outer,
|
|
262
|
+
position as position,
|
|
263
|
+
positive as positive,
|
|
165
264
|
pow as pow,
|
|
265
|
+
power as power,
|
|
266
|
+
printf as printf,
|
|
166
267
|
quarter as quarter,
|
|
167
268
|
radians as radians,
|
|
168
269
|
raise_error as raise_error,
|
|
169
270
|
rand as rand,
|
|
170
271
|
randn as randn,
|
|
171
272
|
rank as rank,
|
|
273
|
+
reduce as reduce,
|
|
274
|
+
reflect as reflect,
|
|
275
|
+
regexp as regexp,
|
|
276
|
+
regexp_count as regexp_count,
|
|
172
277
|
regexp_extract as regexp_extract,
|
|
278
|
+
regexp_extract_all as regexp_extract_all,
|
|
279
|
+
regexp_instr as regexp_instr,
|
|
280
|
+
regexp_like as regexp_like,
|
|
173
281
|
regexp_replace as regexp_replace,
|
|
282
|
+
regexp_substr as regexp_substr,
|
|
283
|
+
regr_avgx as regr_avgx,
|
|
284
|
+
regr_avgy as regr_avgy,
|
|
285
|
+
regr_count as regr_count,
|
|
286
|
+
regr_intercept as regr_intercept,
|
|
287
|
+
regr_r2 as regr_r2,
|
|
288
|
+
regr_slope as regr_slope,
|
|
289
|
+
regr_sxx as regr_sxx,
|
|
290
|
+
regr_sxy as regr_sxy,
|
|
291
|
+
regr_syy as regr_syy,
|
|
174
292
|
repeat as repeat,
|
|
293
|
+
replace as replace,
|
|
175
294
|
reverse as reverse,
|
|
295
|
+
right as right,
|
|
176
296
|
rint as rint,
|
|
297
|
+
rlike as rlike,
|
|
177
298
|
round as round,
|
|
178
299
|
row_number as row_number,
|
|
179
300
|
rpad as rpad,
|
|
@@ -184,6 +305,7 @@ from sqlframe.base.functions import (
|
|
|
184
305
|
second as second,
|
|
185
306
|
sentences as sentences,
|
|
186
307
|
sequence as sequence,
|
|
308
|
+
sha as sha,
|
|
187
309
|
sha1 as sha1,
|
|
188
310
|
sha2 as sha2,
|
|
189
311
|
shiftLeft as shiftLeft,
|
|
@@ -193,21 +315,29 @@ from sqlframe.base.functions import (
|
|
|
193
315
|
shiftright as shiftright,
|
|
194
316
|
shiftrightunsigned as shiftrightunsigned,
|
|
195
317
|
shuffle as shuffle,
|
|
318
|
+
sign as sign,
|
|
196
319
|
signum as signum,
|
|
197
320
|
sin as sin,
|
|
198
321
|
sinh as sinh,
|
|
199
322
|
size as size,
|
|
200
323
|
skewness as skewness,
|
|
201
324
|
slice as slice,
|
|
325
|
+
some as some,
|
|
202
326
|
sort_array as sort_array,
|
|
203
327
|
soundex as soundex,
|
|
328
|
+
spark_partition_id as spark_partition_id,
|
|
204
329
|
split as split,
|
|
330
|
+
split_part as split_part,
|
|
205
331
|
sqrt as sqrt,
|
|
206
332
|
stack as stack,
|
|
333
|
+
startswith as startswith,
|
|
334
|
+
std as std,
|
|
207
335
|
stddev as stddev,
|
|
208
336
|
stddev_pop as stddev_pop,
|
|
209
337
|
stddev_samp as stddev_samp,
|
|
338
|
+
str_to_map as str_to_map,
|
|
210
339
|
struct as struct,
|
|
340
|
+
substr as substr,
|
|
211
341
|
substring as substring,
|
|
212
342
|
substring_index as substring_index,
|
|
213
343
|
sum as sum,
|
|
@@ -215,14 +345,23 @@ from sqlframe.base.functions import (
|
|
|
215
345
|
sum_distinct as sum_distinct,
|
|
216
346
|
tan as tan,
|
|
217
347
|
tanh as tanh,
|
|
348
|
+
timestamp_micros as timestamp_micros,
|
|
349
|
+
timestamp_millis as timestamp_millis,
|
|
218
350
|
timestamp_seconds as timestamp_seconds,
|
|
219
351
|
toDegrees as toDegrees,
|
|
220
352
|
toRadians as toRadians,
|
|
353
|
+
to_binary as to_binary,
|
|
354
|
+
to_char as to_char,
|
|
221
355
|
to_csv as to_csv,
|
|
222
356
|
to_date as to_date,
|
|
223
357
|
to_json as to_json,
|
|
358
|
+
to_number as to_number,
|
|
224
359
|
to_timestamp as to_timestamp,
|
|
360
|
+
to_timestamp_ltz as to_timestamp_ltz,
|
|
361
|
+
to_timestamp_ntz as to_timestamp_ntz,
|
|
362
|
+
to_unix_timestamp as to_unix_timestamp,
|
|
225
363
|
to_utc_timestamp as to_utc_timestamp,
|
|
364
|
+
to_varchar as to_varchar,
|
|
226
365
|
transform as transform,
|
|
227
366
|
transform_keys as transform_keys,
|
|
228
367
|
transform_values as transform_values,
|
|
@@ -230,24 +369,48 @@ from sqlframe.base.functions import (
|
|
|
230
369
|
trim as trim,
|
|
231
370
|
trunc as trunc,
|
|
232
371
|
try_add as try_add,
|
|
372
|
+
try_aes_decrypt as try_aes_decrypt,
|
|
233
373
|
try_avg as try_avg,
|
|
234
374
|
try_divide as try_divide,
|
|
375
|
+
try_element_at as try_element_at,
|
|
235
376
|
try_multiply as try_multiply,
|
|
236
377
|
try_subtract as try_subtract,
|
|
237
378
|
try_sum as try_sum,
|
|
238
379
|
try_to_binary as try_to_binary,
|
|
239
380
|
try_to_number as try_to_number,
|
|
381
|
+
try_to_timestamp as try_to_timestamp,
|
|
240
382
|
typeof as typeof,
|
|
383
|
+
ucase as ucase,
|
|
241
384
|
unbase64 as unbase64,
|
|
242
385
|
unhex as unhex,
|
|
386
|
+
unix_date as unix_date,
|
|
387
|
+
unix_micros as unix_micros,
|
|
388
|
+
unix_millis as unix_millis,
|
|
389
|
+
unix_seconds as unix_seconds,
|
|
243
390
|
unix_timestamp as unix_timestamp,
|
|
244
391
|
upper as upper,
|
|
392
|
+
url_decode as url_decode,
|
|
393
|
+
url_encode as url_encode,
|
|
394
|
+
user as user,
|
|
245
395
|
var_pop as var_pop,
|
|
246
396
|
var_samp as var_samp,
|
|
247
397
|
variance as variance,
|
|
398
|
+
version as version,
|
|
399
|
+
weekday as weekday,
|
|
248
400
|
weekofyear as weekofyear,
|
|
249
401
|
when as when,
|
|
402
|
+
width_bucket as width_bucket,
|
|
403
|
+
xpath as xpath,
|
|
404
|
+
xpath_boolean as xpath_boolean,
|
|
405
|
+
xpath_double as xpath_double,
|
|
406
|
+
xpath_float as xpath_float,
|
|
407
|
+
xpath_int as xpath_int,
|
|
408
|
+
xpath_long as xpath_long,
|
|
409
|
+
xpath_number as xpath_number,
|
|
410
|
+
xpath_short as xpath_short,
|
|
411
|
+
xpath_string as xpath_string,
|
|
250
412
|
xxhash64 as xxhash64,
|
|
251
413
|
year as year,
|
|
414
|
+
years as years,
|
|
252
415
|
zip_with as zip_with,
|
|
253
416
|
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: sqlframe
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.10.0
|
|
4
4
|
Summary: Turning PySpark Into a Universal DataFrame API
|
|
5
5
|
Home-page: https://github.com/eakmanrq/sqlframe
|
|
6
6
|
Author: Ryan Eakman
|
|
@@ -18,7 +18,7 @@ Requires-Python: >=3.8
|
|
|
18
18
|
Description-Content-Type: text/markdown
|
|
19
19
|
License-File: LICENSE
|
|
20
20
|
Requires-Dist: prettytable (<3.11.0)
|
|
21
|
-
Requires-Dist: sqlglot (<25.
|
|
21
|
+
Requires-Dist: sqlglot (<25.4,>=24.0.0)
|
|
22
22
|
Requires-Dist: typing-extensions (<5,>=4.8)
|
|
23
23
|
Provides-Extra: bigquery
|
|
24
24
|
Requires-Dist: google-cloud-bigquery-storage (<3,>=2) ; extra == 'bigquery'
|
|
@@ -26,7 +26,7 @@ Requires-Dist: google-cloud-bigquery[pandas] (<4,>=3) ; extra == 'bigquery'
|
|
|
26
26
|
Provides-Extra: dev
|
|
27
27
|
Requires-Dist: duckdb (<1.1,>=0.9) ; extra == 'dev'
|
|
28
28
|
Requires-Dist: mypy (<1.11,>=1.10.0) ; extra == 'dev'
|
|
29
|
-
Requires-Dist: openai (<1.
|
|
29
|
+
Requires-Dist: openai (<1.36,>=1.30) ; extra == 'dev'
|
|
30
30
|
Requires-Dist: pandas-stubs (<3,>=2) ; extra == 'dev'
|
|
31
31
|
Requires-Dist: pandas (<3,>=2) ; extra == 'dev'
|
|
32
32
|
Requires-Dist: psycopg (<4,>=3.1) ; extra == 'dev'
|
|
@@ -49,7 +49,7 @@ Provides-Extra: duckdb
|
|
|
49
49
|
Requires-Dist: duckdb (<1.1,>=0.9) ; extra == 'duckdb'
|
|
50
50
|
Requires-Dist: pandas (<3,>=2) ; extra == 'duckdb'
|
|
51
51
|
Provides-Extra: openai
|
|
52
|
-
Requires-Dist: openai (<1.
|
|
52
|
+
Requires-Dist: openai (<1.36,>=1.30) ; extra == 'openai'
|
|
53
53
|
Provides-Extra: pandas
|
|
54
54
|
Requires-Dist: pandas (<3,>=2) ; extra == 'pandas'
|
|
55
55
|
Provides-Extra: postgres
|
|
@@ -57,7 +57,7 @@ Requires-Dist: psycopg2 (<3,>=2.8) ; extra == 'postgres'
|
|
|
57
57
|
Provides-Extra: redshift
|
|
58
58
|
Requires-Dist: redshift-connector (<2.2.0,>=2.1.1) ; extra == 'redshift'
|
|
59
59
|
Provides-Extra: snowflake
|
|
60
|
-
Requires-Dist: snowflake-connector-python[secure-local-storage] (<3.
|
|
60
|
+
Requires-Dist: snowflake-connector-python[secure-local-storage] (<3.12,>=3.10.0) ; extra == 'snowflake'
|
|
61
61
|
Provides-Extra: spark
|
|
62
62
|
Requires-Dist: pyspark (<3.6,>=2) ; extra == 'spark'
|
|
63
63
|
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
sqlframe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
sqlframe/_version.py,sha256=
|
|
2
|
+
sqlframe/_version.py,sha256=PEdW0PLUrZm2JiH_V3EAqPOK-ZxEDfT2nPsBGV10Pow,413
|
|
3
3
|
sqlframe/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
sqlframe/base/_typing.py,sha256=DuTay8-o9W-pw3RPZCgLunKNJLS9PkaV11G_pxXp9NY,1256
|
|
5
5
|
sqlframe/base/catalog.py,sha256=ATDGirouUjal05P4ymL-wIi8rgjg_8w4PoACamiO64A,37245
|
|
6
|
-
sqlframe/base/column.py,sha256=
|
|
6
|
+
sqlframe/base/column.py,sha256=5bfJWj9dnStHUxLSrWMD-gwiC4-aHKC8lhoC62nhM1k,16153
|
|
7
7
|
sqlframe/base/dataframe.py,sha256=uL4neDTMy1a9XJH46YLQryzdDci4iDxNXBtiJOzfHfs,67718
|
|
8
8
|
sqlframe/base/decorators.py,sha256=I5osMgx9BuCgbtp4jVM2DNwYJVLzCv-OtTedhQEik0g,1882
|
|
9
9
|
sqlframe/base/exceptions.py,sha256=pCB9hXX4jxZWzNg3JN1i38cv3BmpUlee5NoLYx3YXIQ,208
|
|
10
|
-
sqlframe/base/function_alternatives.py,sha256=
|
|
11
|
-
sqlframe/base/functions.py,sha256=
|
|
10
|
+
sqlframe/base/function_alternatives.py,sha256=QESqZy7Osp9-CV5Yoi6XFat5SE8PzCVZ3o7gOFmIY7g,45888
|
|
11
|
+
sqlframe/base/functions.py,sha256=hJDpE7GYQpQ1iHjdr1hG_hu0mAIb60vNoghjEcgMREI,187550
|
|
12
12
|
sqlframe/base/group.py,sha256=TES9CleVmH3x-0X-tqmuUKfCKSWjH5vg1aU3R6dDmFc,4059
|
|
13
13
|
sqlframe/base/normalize.py,sha256=nXAJ5CwxVf4DV0GsH-q1w0p8gmjSMlv96k_ez1eVul8,3880
|
|
14
14
|
sqlframe/base/operations.py,sha256=-AhNuEzcV7ZExoP1oY3blaKip-joQyJeQVvfBTs_2g4,3456
|
|
15
15
|
sqlframe/base/readerwriter.py,sha256=5NPQMiOrw6I54U243R_6-ynnWYsNksgqwRpPp4IFjIw,25288
|
|
16
|
-
sqlframe/base/session.py,sha256=
|
|
16
|
+
sqlframe/base/session.py,sha256=2C0OsPoP49AuqVNtPiazTdVpwQA1668g5WOydrYP6SA,22001
|
|
17
17
|
sqlframe/base/transforms.py,sha256=y0j3SGDz3XCmNGrvassk1S-owllUWfkHyMgZlY6SFO4,467
|
|
18
|
-
sqlframe/base/types.py,sha256=
|
|
19
|
-
sqlframe/base/util.py,sha256=
|
|
18
|
+
sqlframe/base/types.py,sha256=QbJaJvSv2jaKRxOnIVpun1zHPn8AqJeWVWMbDvNwavE,11977
|
|
19
|
+
sqlframe/base/util.py,sha256=o97w8XUXqLDGEjwwjJG-87LRINDsozmVPUo1gB7yw4w,9364
|
|
20
20
|
sqlframe/base/window.py,sha256=8hOv-ignPPIsZA9FzvYzcLE9J_glalVaYjIAUdRUX3o,4943
|
|
21
21
|
sqlframe/base/mixins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
22
|
sqlframe/base/mixins/catalog_mixins.py,sha256=NhuPGxIqPjyuC_V_NALN1sn9v9h0-xwFOlJyJgsvyek,14212
|
|
@@ -26,8 +26,8 @@ sqlframe/bigquery/__init__.py,sha256=i2NsMbiXOj2xphCtPuNk6cVw4iYeq5_B1I9dVI9aGAk
|
|
|
26
26
|
sqlframe/bigquery/catalog.py,sha256=h3aQAQAJg6MMvFpP8Ku0S4pcx30n5qYrqHhWSomxb6A,9319
|
|
27
27
|
sqlframe/bigquery/column.py,sha256=E1tUa62Y5HajkhgFuebU9zohrGyieudcHzTT8gfalio,40
|
|
28
28
|
sqlframe/bigquery/dataframe.py,sha256=fPQ6043aSS_ds30WsvrYOgNZJPH0jq7BeNHGLQ2MEW4,1372
|
|
29
|
-
sqlframe/bigquery/functions.py,sha256=
|
|
30
|
-
sqlframe/bigquery/functions.pyi,sha256=
|
|
29
|
+
sqlframe/bigquery/functions.py,sha256=2YqJmBG0F0o10cztFZoP-G4px1QMKuHST6jlj1snUfY,11331
|
|
30
|
+
sqlframe/bigquery/functions.pyi,sha256=JiyLFLiO0jyJec6j1o4ujPVQ7Tma-c9YHlm-3UQYD9M,13642
|
|
31
31
|
sqlframe/bigquery/group.py,sha256=UVBNBRTo8OqS-_cS5YwvTeJYgYxeG-d6R3kfyHmlFqw,391
|
|
32
32
|
sqlframe/bigquery/readwriter.py,sha256=WAD3ZMwkkjOpvPPoZXfaLLNM6tRTeUvdEj-hQZAzXeo,870
|
|
33
33
|
sqlframe/bigquery/session.py,sha256=1-hE1Wr2b6SqfD4M_-OGMqjaSbhD6wSQd74v71xHZv8,2709
|
|
@@ -37,8 +37,8 @@ sqlframe/duckdb/__init__.py,sha256=t85TA3ufZtL1weQNFmEs8itCSwbJFtw03-p0GT4XGf8,6
|
|
|
37
37
|
sqlframe/duckdb/catalog.py,sha256=rt3XuP3m4DbhuibOFyvx_95F2zZa6uDwCI_TmcvKy1A,3895
|
|
38
38
|
sqlframe/duckdb/column.py,sha256=wkEPcp3xVsH5nC3kpacXqNkRv9htPtBgt-0uFRxIRNs,56
|
|
39
39
|
sqlframe/duckdb/dataframe.py,sha256=RPdXSOv_wCB0R5E5fzRMYOGFHilb4egqRk3UgiT6WEU,1530
|
|
40
|
-
sqlframe/duckdb/functions.py,sha256=
|
|
41
|
-
sqlframe/duckdb/functions.pyi,sha256=
|
|
40
|
+
sqlframe/duckdb/functions.py,sha256=pz40eqR4U_s42p7UeaefJD5yU1vo6mqNoVz0iKN5eRk,1671
|
|
41
|
+
sqlframe/duckdb/functions.pyi,sha256=nU-6a2cfLDkuMCdYrNRLfa6-i8Aa0CxQQ1nLT6roIdI,5813
|
|
42
42
|
sqlframe/duckdb/group.py,sha256=IkhbW42Ng1U5YT3FkIdiB4zBqRkW4QyTb-1detY1e_4,383
|
|
43
43
|
sqlframe/duckdb/readwriter.py,sha256=6xiyE3JKzY9ieKqvbAOBlifiHE6NpYISHul3Idlmoa0,4542
|
|
44
44
|
sqlframe/duckdb/session.py,sha256=j75iIsmaxl5x7oqyhN_VolvEclKj7QmaFfIis-SmoKM,2147
|
|
@@ -48,8 +48,8 @@ sqlframe/postgres/__init__.py,sha256=Sz_MtgV_oh_QhfZTC7iKM07ICUmNcJEDV0kEkSW9ZKU
|
|
|
48
48
|
sqlframe/postgres/catalog.py,sha256=L5heEav8PTtKJDofJTf-51_cCLpZud5lDvZC-RFZIaw,3722
|
|
49
49
|
sqlframe/postgres/column.py,sha256=E1tUa62Y5HajkhgFuebU9zohrGyieudcHzTT8gfalio,40
|
|
50
50
|
sqlframe/postgres/dataframe.py,sha256=feGvQo7GD-YGmWWGc5h94CMVZm0gcgUQsdlAktXS4Ac,1492
|
|
51
|
-
sqlframe/postgres/functions.py,sha256=
|
|
52
|
-
sqlframe/postgres/functions.pyi,sha256=
|
|
51
|
+
sqlframe/postgres/functions.py,sha256=b9ccP5vY8EDZXkJbhE_LjAlH50_6wcUF9VbzPrariec,2374
|
|
52
|
+
sqlframe/postgres/functions.pyi,sha256=um-qE2g9iPs0-53vJ46lArbfvDqAbFIwrxLJgcrPM_8,5536
|
|
53
53
|
sqlframe/postgres/group.py,sha256=KUXeSFKWTSH9yCRJAhW85OvjZaG6Zr4In9LR_ie3yGU,391
|
|
54
54
|
sqlframe/postgres/readwriter.py,sha256=L1e3yKXzFVNR_W5s1DHaWol7G8x7l4jcZ5sLGualyMk,870
|
|
55
55
|
sqlframe/postgres/session.py,sha256=oKh8-j9MN6msVheQNCYoGmej9ktFLTTHmlMP58uZ3nw,1936
|
|
@@ -69,8 +69,8 @@ sqlframe/snowflake/__init__.py,sha256=nuQ3cuHjDpW4ELZfbd2qOYmtXmcYl7MtsrdOrRdozo
|
|
|
69
69
|
sqlframe/snowflake/catalog.py,sha256=uDjBgDdCyxaDkGNX_8tb-lol7MwwazcClUBAZsOSj70,5014
|
|
70
70
|
sqlframe/snowflake/column.py,sha256=E1tUa62Y5HajkhgFuebU9zohrGyieudcHzTT8gfalio,40
|
|
71
71
|
sqlframe/snowflake/dataframe.py,sha256=OJ27NudBUE3XX9mc8ywooGhYV4ijF9nX2K_nkHRcTx4,1393
|
|
72
|
-
sqlframe/snowflake/functions.py,sha256=
|
|
73
|
-
sqlframe/snowflake/functions.pyi,sha256=
|
|
72
|
+
sqlframe/snowflake/functions.py,sha256=cIO56ZsOpjg6ICLjTh-osG1h1UjjEtM39_ieMiWkmyI,2466
|
|
73
|
+
sqlframe/snowflake/functions.pyi,sha256=MkNif_sIceHMNhl-qvLir2DJ1jPqwyaahltdpgY4Jq0,6213
|
|
74
74
|
sqlframe/snowflake/group.py,sha256=pPP1l2RRo_LgkXrji8a87n2PKo-63ZRPT-WUtvVcBME,395
|
|
75
75
|
sqlframe/snowflake/readwriter.py,sha256=yhRc2HcMq6PwV3ghZWC-q-qaE7LE4aEjZEXCip4OOlQ,884
|
|
76
76
|
sqlframe/snowflake/session.py,sha256=bDOlnuIiQ9j_zfF7F5H1gTLmpHUjruIxr2CfXcS_7YU,3284
|
|
@@ -81,7 +81,7 @@ sqlframe/spark/catalog.py,sha256=rIX5DtPnINbcPZRUe4Z1bOpkJoNRlrO9qWkUeTQClNc,326
|
|
|
81
81
|
sqlframe/spark/column.py,sha256=E1tUa62Y5HajkhgFuebU9zohrGyieudcHzTT8gfalio,40
|
|
82
82
|
sqlframe/spark/dataframe.py,sha256=V3z5Bx9snLgYh4bDwJfJb5mj1P7UsZF8DMlLwZXopBg,1309
|
|
83
83
|
sqlframe/spark/functions.py,sha256=PkK4MBpVADhnDbrgFDii5zFaNrhi4y-OYX3Lcu-SW0k,530
|
|
84
|
-
sqlframe/spark/functions.pyi,sha256=
|
|
84
|
+
sqlframe/spark/functions.pyi,sha256=bjz6s8E6OB0c4KfTTsls7rhb_R9mIYvkaeaXefMziqM,11617
|
|
85
85
|
sqlframe/spark/group.py,sha256=MrvV_v-YkBc6T1zz882WrEqtWjlooWIyHBCmTQg3fCA,379
|
|
86
86
|
sqlframe/spark/readwriter.py,sha256=w68EImTcGJv64X7pc1tk5tDjDxb1nAnn-MiIaaN9Dc8,812
|
|
87
87
|
sqlframe/spark/session.py,sha256=ztIS7VCFxjR3B7i4JXaXo0evTUhUjOsIAZb7Ssqt2cU,4254
|
|
@@ -97,8 +97,8 @@ sqlframe/standalone/readwriter.py,sha256=EZNyDJ4ID6sGNog3uP4-e9RvchX4biJJDNtc5hk
|
|
|
97
97
|
sqlframe/standalone/session.py,sha256=wQmdu2sv6KMTAv0LRFk7TY7yzlh3xvmsyqilEtRecbY,1191
|
|
98
98
|
sqlframe/standalone/types.py,sha256=KwNyuXIo-2xVVd4bZED3YrQOobKCtemlxGrJL7DrTC8,34
|
|
99
99
|
sqlframe/standalone/window.py,sha256=6GKPzuxeSapJakBaKBeT9VpED1ACdjggDv9JRILDyV0,35
|
|
100
|
-
sqlframe-1.
|
|
101
|
-
sqlframe-1.
|
|
102
|
-
sqlframe-1.
|
|
103
|
-
sqlframe-1.
|
|
104
|
-
sqlframe-1.
|
|
100
|
+
sqlframe-1.10.0.dist-info/LICENSE,sha256=VZu79YgW780qxaFJMr0t5ZgbOYEh04xWoxaWOaqIGWk,1068
|
|
101
|
+
sqlframe-1.10.0.dist-info/METADATA,sha256=Z983jSJyRrSOcfu5Y8DFI-aROxse_TVWFPVGkJ-WV70,7497
|
|
102
|
+
sqlframe-1.10.0.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
103
|
+
sqlframe-1.10.0.dist-info/top_level.txt,sha256=T0_RpoygaZSF6heeWwIDQgaP0varUdSK1pzjeJZRjM8,9
|
|
104
|
+
sqlframe-1.10.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|