From 50fd2002d41789cbbf0a605e0d15f0418dc44e64 Mon Sep 17 00:00:00 2001 From: mattalhonte Date: Thu, 22 Aug 2019 17:15:25 -0400 Subject: [PATCH] Added itertools (from the Standard Library) and the toolz library. They've both got sequence-processing functions that are incredibly useful for data cleaning & transformations. --- src/pyforest/_imports.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pyforest/_imports.py b/src/pyforest/_imports.py index a6d425e..9ef11ca 100644 --- a/src/pyforest/_imports.py +++ b/src/pyforest/_imports.py @@ -35,6 +35,9 @@ load_workbook = LazyImport("from openpyxl import load_workbook") +it = LazyImport("import itertools as it") + +tz = LazyImport("import toolz as tz") ### Data Visualization and Plotting mpl = LazyImport("import matplotlib as mpl")