You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A few of the newer functions in the utils module are specifically being added to allow users to easily perform a proof-of-concept with a multi-table dataset. It would be nice to group these functions in a sub-module to keep them organized and communicate exactly what these functions are needed for.
Expected behavior
Create a submodule called poc inside of utils. We will expect users to import the poc submodule specifically in order to access the functions.
Note that these function should not be accessible through utils alone -- only through poc. It is also ok if users want to import these functions alone:
fromutils.pocimportdrop_unknown_references
The text was updated successfully, but these errors were encountered:
Problem Description
A few of the newer functions in the
utils
module are specifically being added to allow users to easily perform a proof-of-concept with a multi-table dataset. It would be nice to group these functions in a sub-module to keep them organized and communicate exactly what these functions are needed for.Expected behavior
Create a submodule called
poc
inside ofutils
. We will expect users to import thepoc
submodule specifically in order to access the functions.The relevant functions inside
poc
should be:drop_unknown_references
(Add verbosity todrop_unknown_references
#1845)simplify_schema
(Add utility function to simplify multi-table schemas #1832)get_random_subset
(to be filed)Note that these function should not be accessible through
utils
alone -- only throughpoc
. It is also ok if users want to import these functions alone:The text was updated successfully, but these errors were encountered: