Skip to main content

Static type checking of pandas DataFrames

Project description

I love Pandas! But in production code I’m always a bit wary when I see:

import pandas as pd

def foo(df: pd.DataFrame) -> pd.DataFrame:
    # do stuff
    return df

Because… How do I know which columns are supposed to be in df?

Using strictly_typed_pandas, we can be more explicit about what these data should look like.

from strictly_typed_pandas import DataSet

class Schema:
    id: int
    name: str

def foo(df: DataSet[Schema]) -> DataSet[Schema]:
    # do stuff
    return df
Where DataSet:
  • is a subclass of pd.DataFrame and hence has the same functionality as DataFrame.

  • validates whether the data adheres to the provided schema upon its initialization.

  • is immutable, so its schema cannot be changed using inplace modifications.

The DataSet[Schema] annotations are compatible with:
  • mypy for type checking during linting-time (i.e. while you write your code).

  • typeguard (<v3.0) for type checking during run-time (i.e. while you run your unit tests).

To get the most out of strictly_typed_pandas, be sure to:
  • set up mypy in your IDE.

  • run your unit tests with pytest –stp-typeguard-packages=foo.bar (where foo.bar is your package name).

Installation

pip install strictly-typed-pandas

Documentation

For example notebooks and API documentation, please see our ReadTheDocs.

FAQ

Do you know of something similar for pyspark?
Yes! Check out our package typedspark.

Why use Python if you want static typing?
There are just so many good packages for data science in Python. Rather than sacrificing all of that by moving to a different language, I’d like to make the Pythonverse a little bit better.

I found a bug! What should I do?
Great! Contact me and I’ll look into it.

I have a great idea to improve strictly_typed_pandas! How can we make this work?
Awesome, drop me a line!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

strictly_typed_pandas-0.3.7.tar.gz (24.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

strictly_typed_pandas-0.3.7-py3-none-any.whl (25.5 kB view details)

Uploaded Python 3

File details

Details for the file strictly_typed_pandas-0.3.7.tar.gz.

File metadata

  • Download URL: strictly_typed_pandas-0.3.7.tar.gz
  • Upload date:
  • Size: 24.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for strictly_typed_pandas-0.3.7.tar.gz
Algorithm Hash digest
SHA256 516eaf52762d5c6b1a787b7bc7b40a88d3bc61fd28743d7a71ffd6e29a0adb39
MD5 ad66470f317bf9d2db0ee3475c58725a
BLAKE2b-256 50463e17cf0200a5329491e823bb26581e411db322781ff0a2c118ed36fba364

See more details on using hashes here.

File details

Details for the file strictly_typed_pandas-0.3.7-py3-none-any.whl.

File metadata

File hashes

Hashes for strictly_typed_pandas-0.3.7-py3-none-any.whl
Algorithm Hash digest
SHA256 2e17eaf9067fe74be421132d33ce05be5d29717cec305694c27db0e4b9c035ea
MD5 d54e230848777ddf722e9eed65249a08
BLAKE2b-256 7e6d19cb138f19ba6fff4d5de7f3343eab44893ae9b5d8a75a6b58504af73180

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page