> For the complete documentation index, see [llms.txt](https://notes.m4lwhere.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://notes.m4lwhere.org/programming/python/modules.md).

# Modules

Datetime add number of seconds to a datetime object

```python
from datetime import timedelta

def add(moment):
    return moment + timedelta(seconds=1000000000)
    pass
```
