***

title: datetime
slug: /reference/python/agents/skills/datetime
description: Get current date and time information with timezone support.
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

Get current date and time information with timezone support.

**Tools:** `get_current_time`, `get_current_date`

**Requirements:** `pytz`

No custom parameters. This skill inherits only the base parameters (`swaig_fields`, `skip_prompt`).

```python
from signalwire import AgentBase

class MyAgent(AgentBase):
    def __init__(self):
        super().__init__(name="assistant", route="/assistant")
        self.set_prompt_text("You are a helpful assistant.")
        self.add_skill("datetime")

agent = MyAgent()
agent.serve()
```