Skip to content

dobraczka/strawman

Repository files navigation

strawman logo

strawman

Actions Status Documentation Status Stable python versions Code style: black

Usage

Create a dummy DataFrame:

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

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

pip install strawman