Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorfturner committed Jun 12, 2024
1 parent 3454093 commit 0cd5614
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions dataprofiler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,22 @@
from .validators.base_validators import Validator
from .version import __version__

try:
import snappy
except ImportError:
import warnings

warnings.warn(
"Snappy must be installed to use parquet/avro datasets."
"\n\n"
"For macOS use Homebrew:\n"
"\t`brew install snappy`"
"\n\n"
"For linux use apt-get:\n`"
"\tsudo apt-get -y install libsnappy-dev`\n",
ImportWarning,
)


def set_seed(seed=None):
# also check it's an integer
Expand Down

0 comments on commit 0cd5614

Please sign in to comment.