Metadata-Version: 2.1
Name: columnarframe
Version: 0.1.13
Summary: 
Home-page: https://github.com/tamuto/columnarframe
License: Apache-2.0
Author: tamuto
Author-email: tamuto@infodb.jp
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: openpyxl (>=3.0.7,<4.0.0)
Requires-Dist: pyarrow (>=3.0.0,<4.0.0)
Requires-Dist: xlrd (>=2.0.1,<3.0.0)
Project-URL: Repository, https://github.com/tamuto/columnarframe
Description-Content-Type: text/markdown

# ColumnarFrame

カラムベースでデータを扱うためのライブラリです。
ある程度Pandasのように操作できるような形を目指しています。

This is a library for handling column-based data.
It is intended to be operated like Pandas to some extent.

## Memo

* unittest

```
poetry run python -m unittest discover
```

* build

```
poetry build
```

* publish(Test)

```
poetry publish -r testpypi
```

* public(real)

```
poetry publish
```

* lib install

```
poetry add xxxx
```


