decruft 0.1.1

Extract clean, readable content from web pages
Documentation
```json
{
  "title": "Sample Python Tutorial",
  "author": "",
  "site": "",
  "published": ""
}
```

### Imports

First, import the required modules:

```
import torch
from torch import nn
```

Then define the model:

```
class Model(nn.Module):
    def __init__(self):
        super().__init__()
```