With version `0.1.7`, it is possible to run a non-clustered wild bootstrap. Here is a brief example:
python
import pandas as pd
import statsmodels.formula.api as sm
from wildboottest.wildboottest import wildboottest
df = pd.read_csv("https://raw.github.com/vincentarelbundock/Rdatasets/master/csv/sandwich/PetersenCL.csv")
model = sm.ols(formula='y ~ x', data=df)
wildboottest(model, param = "x", B = 999)
| param | statistic | p-value |
|:--------|------------:|----------:|
| x | 36.448 | 0.000 |