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