Skip to main content

A python library to display data structure values for easier navigation and exploration.

Project description

Py-Data-Viewer

py-data-viewer is a lightweight Python library that makes exploring and navigating complex data structures in the terminal effortless. It provides a clear, tree-based visualization of nested dictionaries, lists, objects, and more, making debugging and data analysis more efficient. No more getting lost in complex nested structures or struggling to understand what's inside your data or how to access them!

Trees for complex data structures, Trees for simple data structures, Trees for everything!!

No more confusion with complex data structures or asking "what's inside this dictionary!?"

from py_data_viewer import vprint

async def some_async_fn():
    response = await some_api_call()
    vprint(response) # ๐Ÿ‘ˆ pass in full response or part of it! It can handle Iterables[of_any_T]!!

No more looking for properties in a long list of dictionaries or objects while in the terminal!

vprint(data, "result")

Features

  • Tree View: Visualize data structures in the terminal as a tree for better clarity.
  • Colorized Output: Easily distinguish different parts of the data structure.
  • Supports Multiple Data Types: Works with dictionaries, lists, objects, namedtuples, and mixed structures.
  • API Response Exploration: Simplifies debugging and understanding of API responses, especially for complex outputs.
  • Programmatic Usage: Integrate directly into your Python scripts with the vprint function.

Installation

To install the package, use pip:

pip install py-data-viewer -U

Then, import:

from py_data_viewer import vprint

Usage

Programmatic Usage with vprint

The vprint function is the easiest way to explore data structures in your Python scripts. It provides a tree-like visualization of your data, making it ideal for debugging API responses, especially from frameworks!

Example: Exploring an API Response

from py_data_viewer import vprint

# Simulated API response
response = {
    "chat_message": {
        "source": "Assistant",
        "content": "This is a response from an LLM.",
        "metadata": {},
    },
    "inner_messages": [
        {
            "type": "ToolCallRequestEvent",
            "content": [{"name": "search", "arguments": '{"query":"example"}'}],
        },
        {
            "type": "ToolCallExecutionEvent",
            "content": [{"name": "search", "content": "Search result here."}],
        },
    ],
}

vprint(response, var_name="messages", colorize=False)

Output showing you exactly how to access the data you want:

messages
โ”œโ”€โ”€ messages.chat_message = dict with 3 items
โ”‚   โ”œโ”€โ”€ messages.chat_message.source = 'Assistant'
โ”‚   โ”œโ”€โ”€ messages.chat_message.content = 'This is a response from an LLM.'
โ”‚   โ””โ”€โ”€ messages.chat_message.metadata = dict with 0 items
โ””โ”€โ”€ messages.inner_messages = list with 2 items
    โ”œโ”€โ”€ messages.inner_messages[0] = dict with 2 items
    โ”‚   โ”œโ”€โ”€ messages.inner_messages[0].type = 'ToolCallRequestEvent'
    โ”‚   โ””โ”€โ”€ messages.inner_messages[0].content = list with 1 items
    โ”‚       โ””โ”€โ”€ messages.inner_messages[0].content[0] = dict with 2 items
    โ”‚           โ”œโ”€โ”€ messages.inner_messages[0].content[0].name = 'search'
    โ”‚           โ””โ”€โ”€ messages.inner_messages[0].content[0].arguments = '{"query":"example"}'
    โ””โ”€โ”€ messages.inner_messages[1] = dict with 2 items
        โ”œโ”€โ”€ messages.inner_messages[1].type = 'ToolCallExecutionEvent'
        โ””โ”€โ”€ messages.inner_messages[1].content = list with 1 items
            โ””โ”€โ”€ messages.inner_messages[1].content[0] = dict with 2 items
                โ”œโ”€โ”€ messages.inner_messages[1].content[0].name = 'search'
                โ””โ”€โ”€ messages.inner_messages[1].content[0].content = 'Search result here.'

Example: Exploring a Complex Data Structure

from py_data_viewer import vprint

data = {
    "user": {"id": 1, "name": "Alice"},
    "actions": [
        {"type": "login", "timestamp": "2023-01-01T12:00:00Z"},
        {"type": "purchase", "details": {"item": "book", "price": 12.99}},
    ],
}

vprint(data, var_name="data")

Advanced Options

The vprint function supports several options to customize the output:

  • var_name: Specify the variable name to display in the output.
  • colorize: Enable or disable colorized output (default: True).

Example:

vprint(data, var_name="custom_data_name", colorize=False)

Contributing

Contributions are welcome! To contribute:

  1. Fork the repository.
  2. Create a new branch for your feature or bugfix.
  3. Commit your changes and push the branch.
  4. Open a pull request.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Links

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

py_data_viewer-0.0.9.tar.gz (7.6 kB view details)

Uploaded Source

Built Distribution

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

py_data_viewer-0.0.9-py3-none-any.whl (8.9 kB view details)

Uploaded Python 3

File details

Details for the file py_data_viewer-0.0.9.tar.gz.

File metadata

  • Download URL: py_data_viewer-0.0.9.tar.gz
  • Upload date:
  • Size: 7.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.1 CPython/3.13.2 Windows/11

File hashes

Hashes for py_data_viewer-0.0.9.tar.gz
Algorithm Hash digest
SHA256 b4db72820218ecd0e4277d5efe6aaa9c43a8b6b1121fb6f963aa4a4470ac25bd
MD5 df2b8805fb72b02407cb68a99bb53dfb
BLAKE2b-256 a2dfa6ebb4ab19354f5b366ffc28f6d66baeceffefc6ceca47c10d17789bd6b3

See more details on using hashes here.

File details

Details for the file py_data_viewer-0.0.9-py3-none-any.whl.

File metadata

  • Download URL: py_data_viewer-0.0.9-py3-none-any.whl
  • Upload date:
  • Size: 8.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.1 CPython/3.13.2 Windows/11

File hashes

Hashes for py_data_viewer-0.0.9-py3-none-any.whl
Algorithm Hash digest
SHA256 84bea4546aee8843d2abdb96783feb637d01c860c8eecd2b0a774d5bd7e76773
MD5 2aacdf81cd2c24de5e35731247745f43
BLAKE2b-256 8a2cf9a7aee071a374f00ab5c366b155c862468e0b9a4d4179f6c4e90f406230

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