> For the complete documentation index, see [llms.txt](https://aether-framework.gitbook.io/aetherframework/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://aether-framework.gitbook.io/aetherframework/ipfs-for-decentralized-messaging.md).

# IPFS for Decentralized Messaging

### Decentralized Messaging

```python
from src.integrations.ipfs_communication import IPFSCommunication

ipfs = IPFSCommunication()
hash = ipfs.send_message("Hello, decentralized world!")
message = ipfs.retrieve_message(hash)
```
