Metadata-Version: 2.1
Name: pandit
Version: 0.0.3
Summary: Pandas with some cool additional features
Home-page: https://github.com/sileod/pandit
Author: sileod
License: GPL
Description-Content-Type: text/markdown
License-File: LICENSE

# pandit
Pandas with some cool additional features

### `sieve`
```python
df.sieve(column=value) # returns df rows where column equals value
df.sieve(column=[value1,value2]) # returns df rows where column is value1 or value2
# It's like pd.query but with a pythonic syntax instead of the sql string.
```

### `show`
```python
df.show() # shows multiple rows column by column (one line per column) with nice formatting
df.rshow(n) # random sample of size n
```

Also:

### `read_tsv`
### `read_jsonl`
### `read_wandb(project_name)`
### `drop_constant`
