Metadata-Version: 2.1
Name: tidify
Version: 0.1.2
Summary: Convert nested objects into tidy data
Home-page: https://github.com/tangibleintelligence/tidify
License: MIT
Keywords: Tidy Data,Data Analysis
Author: Austin Howard
Author-email: austin@tangibleintelligence.com
Requires-Python: >=3.8,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: pandas (>=1.4.2,<2.0.0)
Project-URL: Repository, https://github.com/tangibleintelligence/tidify
Description-Content-Type: text/markdown

# `tidify`: Convert nested objects into tidy data

[![Build Status](https://cloud.drone.io/api/badges/tangibleintelligence/tidify/status.svg)](https://cloud.drone.io/tangibleintelligence/tidify)
[![PyPI version](https://badge.fury.io/py/tidify.svg)](https://badge.fury.io/py/tidify)

This package allows for simple conversion of arbitrarily nested data (of objects and arrays) into a format akin to
[Tidy Data](https://vita.had.co.nz/papers/tidy-data.pdf).

Arrays are expanded to multiple rows, with a new `.index` column created. Nested objects are expanded into multiple
columns with `.` (or customizable) separator.
