An open API service indexing awesome lists of open source software.

https://github.com/dobraczka/strawman

🧑‍🌾 Library for simple dummy objects
https://github.com/dobraczka/strawman

pandas prototyping python testing-tools

Last synced: 6 months ago
JSON representation

🧑‍🌾 Library for simple dummy objects

Awesome Lists containing this project

README

          


strawman logo

strawman


Actions Status
Documentation Status

Stable python versions
Code style: black

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
```