# now **Descripción** Devuelve la hora en formato aaaa/mm/dd HH:MM:SS por defecto. **Parámetros**
**Nombre**
**Tipo**
**Requerido**
**Descripción**
print_flag
int
No
Sirve para imprimir la hora, de no utilizarse la hora se devolverá. Por defecto None
utimestamp
int
No
Sirve para introducir un utimestamp, por defecto utilizará el actual.
**Return**
**Nombre****Descripción**
strHora en formato aaaa/mm/dd HH:MM:SS
floatHora 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) ```