Metadata-Version: 2.1
Name: strawman
Version: 0.1.3
Summary: Library for simple dummy objects
Home-page: https://github.com/dobraczka/strawman
License: MIT
Keywords: prototyping
Author: Daniel Obraczka
Author-email: obraczka@informatik.uni-leipzig.de
Requires-Python: >=3.8,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Utilities
Provides-Extra: docs
Requires-Dist: mkdocs (>=1.4.2,<2.0.0) ; extra == "docs"
Requires-Dist: mkdocs-gen-files (>=0.4.0,<0.5.0) ; extra == "docs"
Requires-Dist: mkdocs-literate-nav (>=0.6.0,<0.7.0) ; extra == "docs"
Requires-Dist: mkdocs-material (>=9.0.9,<10.0.0) ; extra == "docs"
Requires-Dist: mkdocs-section-index (>=0.3.5,<0.4.0) ; extra == "docs"
Requires-Dist: mkdocstrings[python] (>=0.20.0,<0.21.0) ; extra == "docs"
Requires-Dist: numpy
Requires-Dist: pandas (>=1.0)
Project-URL: Bug Tracker, https://github.com/dobraczka/strawman/issues
Project-URL: Documentation, https://strawman.readthedocs.io
Project-URL: Repository, https://github.com/dobraczka/strawman
Project-URL: Source, https://github.com/dobraczka/strawman
Description-Content-Type: text/markdown

<p align="center">
<img src="https://github.com/dobraczka/strawman/raw/main/docs/assets/logo.png" alt="strawman logo", width=200/>
<h2 align="center"> strawman</h2>
</p>


<p align="center">
<a href="https://github.com/dobraczka/strawman/actions/workflows/main.yml"><img alt="Actions Status" src="https://github.com/dobraczka/strawman/actions/workflows/main.yml/badge.svg?branch=main"></a>
<a href='https://strawman.readthedocs.io/en/latest/?badge=latest'><img src='https://readthedocs.org/projects/strawman/badge/?version=latest' alt='Documentation Status' /></a>
<a href="https://codecov.io/gh/dobraczka/strawman"><img src="https://codecov.io/gh/dobraczka/strawman/branch/main/graph/badge.svg"/></a>
<a href="https://pypi.org/project/strawman"/><img alt="Stable python versions" src="https://img.shields.io/pypi/pyversions/strawman"></a>
<a href="https://github.com/psf/black"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
</p>

Usage
=====

Create a dummy DataFrame:

```python
    >>> from strawman import dummy_df
    >>> dummy_df((5,3))
             0    1    2
    0  Ass  wEB  jEx
    1  xxD  TtW  Xzs
    2  ITh  mpj  tgy
    3  rgN  ZyW  kzR
    4  FPO  XiY  ARn
```

Or create a triples DataFrame:

```python
    >>> from strawman import dummy_triples
    >>> dummy_triples(5)
      head relation tail
    0   e2     rel0   e1
    1   e1     rel0   e0
    2   e1     rel0   e2
    3   e0     rel0   e2
    4   e1     rel1   e0
```

Installation
============

Via pip:

```bash
pip install strawman
```

