Skip to main content

A module to build Textual widgets that represent data from the Pandas library

Project description

textual-pandas

A module to display Pandas DataFrames in Textual's DataTable widget.

Background

Pandas is a popular Python library for data analysis. One of the core components of Pandas is the DataFrame object. A DataFrame is a two-dimensional data structure that represents data in rows and columns.

Given Pandas DataFrames are tabular in nature, it makes sense to be able to render them in Textual using the DataTable widget. Enter the DataFrameTable widget...

Installation

Install textual-pandas via pip:

pip install textual-pandas

Getting Started

textual-pandas introduces a new widget called DataFrameTable, which uses Textual's DataTable widget as a base.

First, you'll need to import the DataFrameTable widget.

from textual_pandas.widgets import DataFrameTable

After importing the widget, you'll need to yield the DataFrameTable widget in your Textual app's compose() method (like you would with the DataTable widget). Once you're ready to draw the table with your DataFrame data (most likely on_mount()), you'll simply call the add_df() method and pass in a Pandas DataFrame.

from textual.app import App
from textual_pandas.widgets import DataFrameTable
import pandas as pd

# Pandas DataFrame
df = pd.DataFrame()
df["Name"] = ["Dan", "Ben", "Don", "John", "Jim", "Harry"]
df["Score"] = [77, 56, 90, 99, 83, 69]
df["Grade"] = ["C", "F", "A", "A", "B", "D"]

class ClassApp(App):
    def compose(self):
        yield DataFrameTable()

    def on_mount(self):
        table = self.query_one(DataFrameTable)
        table.add_df(df)

That's it! Now your DataFrame will display within a DataTable widget!

Updating the DataFrame

If you update your DataFrame, and would like to see the updates in your app, then you'll need to use the update_df() method and pass in your updated DataFrame object.

If you only want to update the rendered DataFrameTable (without the need to change the DataFrame), you may also use the update_cell() and update_cell_at() methods that are provided by the DataTable widget.

df.insert(
    1,
    "Teacher",
    [
        "Mr. Smith",
        "Mr. Smith",
        "Mr. Smith",
        "Mr. Smith",
        "Mr. Smith",
        "Mr. Smith",
    ],
)
table = self.query_one(DataFrameTable)
# Provide new DataFrame to update DataFrameTable widget
table.update_df(df)

Contributing

I built this module for the sole purpose of displaying a Pandas DataFrame in a DataTable widget. I'm sure there's additional functionality with the Pandas library that others would like to see!

If you have any ideas, questions, or issues, please feel free to open an issue or PR!

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

textual_pandas-0.2.1.tar.gz (3.0 kB view details)

Uploaded Source

Built Distribution

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

textual_pandas-0.2.1-py3-none-any.whl (3.8 kB view details)

Uploaded Python 3

File details

Details for the file textual_pandas-0.2.1.tar.gz.

File metadata

  • Download URL: textual_pandas-0.2.1.tar.gz
  • Upload date:
  • Size: 3.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.4.2 CPython/3.9.13 Darwin/21.6.0

File hashes

Hashes for textual_pandas-0.2.1.tar.gz
Algorithm Hash digest
SHA256 5e2b3301d3c589aeb925c5def38153c009088ce1d6cea79b0b33e654657acca0
MD5 43b518cbd7d54df24a80a1c535ca45b0
BLAKE2b-256 10fd78de2b438f66819d0cdcf9299fc57c2462db27fa5a909f3e80ff61a50022

See more details on using hashes here.

File details

Details for the file textual_pandas-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: textual_pandas-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 3.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.4.2 CPython/3.9.13 Darwin/21.6.0

File hashes

Hashes for textual_pandas-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 91a943e81c235448293a77d75a1817e56e4d6d93970af00d3297e24c2a7fbfa1
MD5 132736eaf0882c82a108210d33a8ad6d
BLAKE2b-256 57cf385402ef78b6f9db3921c3023787b6f9c71013d206306f03d8cc24435713

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