File size: 2,544 Bytes
f67f72f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
Type: IPython Notebook Extension
Name: ExecuteTime
Description: Display when each cell has been executed and how long it took
Link: readme.md
Icon: icon.png
Main: ExecuteTime.js
Compatibility: 4.x, 5.x
Parameters:
- name: ExecuteTime.clear_timings_on_clear_output
description: |
When cells' outputs are cleared, also clear their timing data, e.g. when
using the "Kernel > Restart & Clear Output" menu item
input_type: checkbox
default: false
- name: ExecuteTime.clear_timings_on_kernel_restart
description: |
Clear all cells' execution timing data on any kernel restart event
input_type: checkbox
default: false
- name: ExecuteTime.display_absolute_timings
description: |
Display absolute timings for the start time of execution.
Setting false will display a relative timestamp like 'a few seconds ago'
default: true
input_type: checkbox
- name: ExecuteTime.display_absolute_format
description: |
The format to use when displaying absolute timings (see above)
default: 'YYYY-MM-DD HH:mm:ss'
input_type: text
- name: ExecuteTime.relative_timing_update_period
description: |
Seconds to wait between updating the relative timestamps, if using them
(see above)
default: 10
input_type: number
step: 1
min: 1
max: 600
- name: ExecuteTime.display_in_utc
description: |
Display times in UTC, rather than in the local timezone set by the browser
default: false
input_type: checkbox
- name: ExecuteTime.default_kernel_to_utc
description: |
For kernel timestamps which do not specify a timezone, assume UTC
default: true
input_type: checkbox
- name: ExecuteTime.display_right_aligned
description: |
Right-align the text in the timing area under each cell
default: false
input_type: checkbox
- name: ExecuteTime.highlight.use
description: |
Highlight the displayed execution time on completion of execution
default: true
input_type: checkbox
- name: ExecuteTime.highlight.color
description: |
Color to use for highlighting the displayed execution time
default: '#00BB00'
input_type: color
- name: ExecuteTime.template.executed
description: |
Template for the timing message for executed cells. See readme for
replacement tokens.
default: 'executed in ${duration}, finished ${end_time}'
input_type: text
- name: ExecuteTime.template.queued
description: |
Template for the timing message for queued cells. See readme for
replacement tokens.
default: 'execution queued ${start_time}'
input_type: text
|