decruft 0.1.0

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

### RSA example

Here is the key generation code:

```python
p = 61
q = 97

print(f"n={p*q}")
# n=5917

phi = (p-1)*(q-1)

print(f"phi={phi}")
# phi=5760
```

This gives us the public and private keys.