# now
**Descripción**
Devuelve la hora en formato aaaa/mm/dd HH:MM:SS por defecto.
**Parámetros**
| | | **Descripción** |
| | | Sirve para imprimir la hora, de no utilizarse la hora se devolverá. Por defecto None |
| | | Sirve para introducir un utimestamp, por defecto utilizará el actual. |
**Return**
**Nombre** | **Descripción** |
str | Hora en formato aaaa/mm/dd HH:MM:SS |
float | Hora en formato epoch time |
**Requisitos**
- datetime.datetime
**Versión**
- 1.0.0
**Ejemplo**
```
import pandoraPlugintools as pt
# Get the current time in the default format
current_time_default = pt.general.now()
print("Current Time (Default Format):", current_time_default)
# Get the current time in Unix timestamp format
current_time_unix = pt.general.now(utimestamp=True)
print("Current Time (Unix Timestamp):", current_time_unix)
# Get and print the current time with the specified format
current_time_custom_format = pt.general.now(print_flag=True)
```