Skip to content

Commit cd83969

Browse files
committed
DRAFT: more init import tweaking
1 parent 29d72c1 commit cd83969

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

siuba/__init__.py

+20-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
__version__ = "0.4.2"
33

44
# default imports--------------------------------------------------------------
5-
from .siu import _, Fx, Lam
5+
from .siu import _, Fx, Lam, pipe
66
from .dply.across import across
77
from .dply.verbs import (
88
# Dply ----
@@ -24,12 +24,29 @@
2424
if_else, case_when,
2525
collect, show_query,
2626
tbl,
27-
pipe
2827
)
2928

3029
# necessary, since _ won't be exposed in import * by default
3130
__all__ = [
3231
'_',
3332
"Fx",
33+
"pipe",
3434
"across",
35-
]
35+
"group_by", "ungroup",
36+
"select", "rename",
37+
"mutate", "transmute", "filter", "summarize",
38+
"arrange", "distinct",
39+
"count", "add_count",
40+
"head",
41+
"top_n",
42+
# Tidy ----
43+
"spread", "gather",
44+
"nest", "unnest",
45+
"expand", "complete",
46+
"separate", "unite", "extract",
47+
# Joins ----
48+
"join", "inner_join", "full_join", "left_join", "right_join", "semi_join", "anti_join",
49+
"if_else", "case_when",
50+
"collect", "show_query",
51+
"tbl"
52+
]

0 commit comments

Comments
 (0)