Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update the badges in the README #124

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 18 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,32 @@
# chispa

![![image](https://github.com/MrPowers/chispa/workflows/build/badge.svg)](https://github.com/MrPowers/chispa/actions/workflows/ci.yml/badge.svg)
![PyPI - Downloads](https://img.shields.io/pypi/dm/chispa)
[![PyPI version](https://badge.fury.io/py/chispa.svg)](https://badge.fury.io/py/chispa)

chispa provides fast PySpark test helper methods that output descriptive error messages.
[![Release](https://img.shields.io/github/v/release/MrPowers/chispa)](https://pypi.org/project/chispa/)
[![Build status](https://github.com/MrPowers/chispa/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/MrPowers/chispa/actions/workflows/ci.yml)
[![Supported Python versions](https://img.shields.io/pypi/pyversions/chispa)](https://pypi.org/project/chispa/)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/chispa)](https://pypistats.org/packages/chispa)
[![License](https://img.shields.io/github/license/MrPowers/chispa)](https://img.shields.io/github/license/MrPowers/chispa)


*chispa* provides fast PySpark test helper methods that output descriptive error messages.

This library makes it easy to write high quality PySpark code.

Fun fact: "chispa" means Spark in Spanish ;)

## Installation

Install the latest version with `pip install chispa`.
Install the latest version with

```sh
pip install chispa
```

Or if you use Poetry add this library as a development dependency with

If you use Poetry, add this library as a development dependency with `poetry add chispa -G dev`.
```sh
poetry add chispa --group dev
```

## Column equality

Expand Down
Loading