Metadata-Version: 2.4
Name: pandas-inshard
Version: 0.1.0
Summary: Hash-based sharding for pandas DataFrames
Author: Tanner Hobson
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/player1537/pandas-inshard
Project-URL: Changelog, https://github.com/player1537/pandas-inshard/releases
Project-URL: Issues, https://github.com/player1537/pandas-inshard/issues
Project-URL: CI, https://github.com/player1537/pandas-inshard/actions
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas>=2.0
Dynamic: license-file

# pandas-inshard

[![PyPI](https://img.shields.io/pypi/v/pandas-inshard.svg)](https://pypi.org/project/pandas-inshard/)
[![Tests](https://github.com/player1537/pandas-inshard/actions/workflows/test.yml/badge.svg)](https://github.com/player1537/pandas-inshard/actions/workflows/test.yml)
[![Changelog](https://img.shields.io/github/v/release/player1537/pandas-inshard?include_prereleases&label=changelog)](https://github.com/player1537/pandas-inshard/releases)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/player1537/pandas-inshard/blob/main/LICENSE)

null

## Installation

Install this library using `pip`:
```bash
pip install pandas-inshard
```
## Usage

Usage instructions go here.

## Development

To contribute to this library, first checkout the code. Then create a new virtual environment:
```bash
cd pandas-inshard
python -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:
```bash
python -m pip install -e '.[test]'
```
To run the tests:
```bash
python -m pytest
```
