Get current timestamp (13 digits): 1701493264496 :return:
()
| 28 | |
| 29 | |
| 30 | def get_current_timestamp() -> int: |
| 31 | """ |
| 32 | Get current timestamp (13 digits): 1701493264496 |
| 33 | :return: |
| 34 | """ |
| 35 | return int(time.time() * 1000) |
| 36 | |
| 37 | |
| 38 | def get_current_time() -> str: |
no outgoing calls
no test coverage detected