id
int32
0
252k
repo
stringlengths
7
55
path
stringlengths
4
127
func_name
stringlengths
1
88
original_string
stringlengths
75
19.8k
language
stringclasses
1 value
code
stringlengths
75
19.8k
code_tokens
list
docstring
stringlengths
3
17.3k
docstring_tokens
list
sha
stringlengths
40
40
url
stringlengths
87
242
236,400
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_media_player_set_video_title_display
def libvlc_media_player_set_video_title_display(p_mi, position, timeout): '''Set if, and how, the video title will be shown when media is played. @param p_mi: the media player. @param position: position at which to display the title, or libvlc_position_disable to prevent the title from being displayed. ...
python
def libvlc_media_player_set_video_title_display(p_mi, position, timeout): '''Set if, and how, the video title will be shown when media is played. @param p_mi: the media player. @param position: position at which to display the title, or libvlc_position_disable to prevent the title from being displayed. ...
[ "def", "libvlc_media_player_set_video_title_display", "(", "p_mi", ",", "position", ",", "timeout", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_media_player_set_video_title_display'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_media_player_set_...
Set if, and how, the video title will be shown when media is played. @param p_mi: the media player. @param position: position at which to display the title, or libvlc_position_disable to prevent the title from being displayed. @param timeout: title display timeout in milliseconds (ignored if libvlc_position...
[ "Set", "if", "and", "how", "the", "video", "title", "will", "be", "shown", "when", "media", "is", "played", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L5530-L5540
236,401
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_set_fullscreen
def libvlc_set_fullscreen(p_mi, b_fullscreen): '''Enable or disable fullscreen. @warning: With most window managers, only a top-level windows can be in full-screen mode. Hence, this function will not operate properly if L{libvlc_media_player_set_xwindow}() was used to embed the video in a non-top-le...
python
def libvlc_set_fullscreen(p_mi, b_fullscreen): '''Enable or disable fullscreen. @warning: With most window managers, only a top-level windows can be in full-screen mode. Hence, this function will not operate properly if L{libvlc_media_player_set_xwindow}() was used to embed the video in a non-top-le...
[ "def", "libvlc_set_fullscreen", "(", "p_mi", ",", "b_fullscreen", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_set_fullscreen'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_set_fullscreen'", ",", "(", "(", "1", ",", ")", ",", "(", "...
Enable or disable fullscreen. @warning: With most window managers, only a top-level windows can be in full-screen mode. Hence, this function will not operate properly if L{libvlc_media_player_set_xwindow}() was used to embed the video in a non-top-level window. In that case, the embedding window must be...
[ "Enable", "or", "disable", "fullscreen", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L5562-L5576
236,402
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_video_set_key_input
def libvlc_video_set_key_input(p_mi, on): '''Enable or disable key press events handling, according to the LibVLC hotkeys configuration. By default and for historical reasons, keyboard events are handled by the LibVLC video widget. @note: On X11, there can be only one subscriber for key press and mouse ...
python
def libvlc_video_set_key_input(p_mi, on): '''Enable or disable key press events handling, according to the LibVLC hotkeys configuration. By default and for historical reasons, keyboard events are handled by the LibVLC video widget. @note: On X11, there can be only one subscriber for key press and mouse ...
[ "def", "libvlc_video_set_key_input", "(", "p_mi", ",", "on", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_video_set_key_input'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_video_set_key_input'", ",", "(", "(", "1", ",", ")", ",", "("...
Enable or disable key press events handling, according to the LibVLC hotkeys configuration. By default and for historical reasons, keyboard events are handled by the LibVLC video widget. @note: On X11, there can be only one subscriber for key press and mouse click events per window. If your application ...
[ "Enable", "or", "disable", "key", "press", "events", "handling", "according", "to", "the", "LibVLC", "hotkeys", "configuration", ".", "By", "default", "and", "for", "historical", "reasons", "keyboard", "events", "are", "handled", "by", "the", "LibVLC", "video", ...
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L5588-L5603
236,403
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_video_get_size
def libvlc_video_get_size(p_mi, num): '''Get the pixel dimensions of a video. @param p_mi: media player. @param num: number of the video (starting from, and most commonly 0). @return: px pixel width, py pixel height. ''' f = _Cfunctions.get('libvlc_video_get_size', None) or \ _Cfunction(...
python
def libvlc_video_get_size(p_mi, num): '''Get the pixel dimensions of a video. @param p_mi: media player. @param num: number of the video (starting from, and most commonly 0). @return: px pixel width, py pixel height. ''' f = _Cfunctions.get('libvlc_video_get_size', None) or \ _Cfunction(...
[ "def", "libvlc_video_get_size", "(", "p_mi", ",", "num", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_video_get_size'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_video_get_size'", ",", "(", "(", "1", ",", ")", ",", "(", "1", ","...
Get the pixel dimensions of a video. @param p_mi: media player. @param num: number of the video (starting from, and most commonly 0). @return: px pixel width, py pixel height.
[ "Get", "the", "pixel", "dimensions", "of", "a", "video", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L5619-L5628
236,404
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_video_get_aspect_ratio
def libvlc_video_get_aspect_ratio(p_mi): '''Get current video aspect ratio. @param p_mi: the media player. @return: the video aspect ratio or NULL if unspecified (the result must be released with free() or L{libvlc_free}()). ''' f = _Cfunctions.get('libvlc_video_get_aspect_ratio', None) or \ ...
python
def libvlc_video_get_aspect_ratio(p_mi): '''Get current video aspect ratio. @param p_mi: the media player. @return: the video aspect ratio or NULL if unspecified (the result must be released with free() or L{libvlc_free}()). ''' f = _Cfunctions.get('libvlc_video_get_aspect_ratio', None) or \ ...
[ "def", "libvlc_video_get_aspect_ratio", "(", "p_mi", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_video_get_aspect_ratio'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_video_get_aspect_ratio'", ",", "(", "(", "1", ",", ")", ",", ")", ",...
Get current video aspect ratio. @param p_mi: the media player. @return: the video aspect ratio or NULL if unspecified (the result must be released with free() or L{libvlc_free}()).
[ "Get", "current", "video", "aspect", "ratio", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L5676-L5684
236,405
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_video_set_aspect_ratio
def libvlc_video_set_aspect_ratio(p_mi, psz_aspect): '''Set new video aspect ratio. @param p_mi: the media player. @param psz_aspect: new video aspect-ratio or NULL to reset to default @note Invalid aspect ratios are ignored. ''' f = _Cfunctions.get('libvlc_video_set_aspect_ratio', None) or \ ...
python
def libvlc_video_set_aspect_ratio(p_mi, psz_aspect): '''Set new video aspect ratio. @param p_mi: the media player. @param psz_aspect: new video aspect-ratio or NULL to reset to default @note Invalid aspect ratios are ignored. ''' f = _Cfunctions.get('libvlc_video_set_aspect_ratio', None) or \ ...
[ "def", "libvlc_video_set_aspect_ratio", "(", "p_mi", ",", "psz_aspect", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_video_set_aspect_ratio'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_video_set_aspect_ratio'", ",", "(", "(", "1", ",", ...
Set new video aspect ratio. @param p_mi: the media player. @param psz_aspect: new video aspect-ratio or NULL to reset to default @note Invalid aspect ratios are ignored.
[ "Set", "new", "video", "aspect", "ratio", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L5686-L5694
236,406
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_video_get_spu
def libvlc_video_get_spu(p_mi): '''Get current video subtitle. @param p_mi: the media player. @return: the video subtitle selected, or -1 if none. ''' f = _Cfunctions.get('libvlc_video_get_spu', None) or \ _Cfunction('libvlc_video_get_spu', ((1,),), None, ctypes.c_int, Me...
python
def libvlc_video_get_spu(p_mi): '''Get current video subtitle. @param p_mi: the media player. @return: the video subtitle selected, or -1 if none. ''' f = _Cfunctions.get('libvlc_video_get_spu', None) or \ _Cfunction('libvlc_video_get_spu', ((1,),), None, ctypes.c_int, Me...
[ "def", "libvlc_video_get_spu", "(", "p_mi", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_video_get_spu'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_video_get_spu'", ",", "(", "(", "1", ",", ")", ",", ")", ",", "None", ",", "ctyp...
Get current video subtitle. @param p_mi: the media player. @return: the video subtitle selected, or -1 if none.
[ "Get", "current", "video", "subtitle", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L5696-L5704
236,407
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_video_set_spu
def libvlc_video_set_spu(p_mi, i_spu): '''Set new video subtitle. @param p_mi: the media player. @param i_spu: video subtitle track to select (i_id from track description). @return: 0 on success, -1 if out of range. ''' f = _Cfunctions.get('libvlc_video_set_spu', None) or \ _Cfunction('l...
python
def libvlc_video_set_spu(p_mi, i_spu): '''Set new video subtitle. @param p_mi: the media player. @param i_spu: video subtitle track to select (i_id from track description). @return: 0 on success, -1 if out of range. ''' f = _Cfunctions.get('libvlc_video_set_spu', None) or \ _Cfunction('l...
[ "def", "libvlc_video_set_spu", "(", "p_mi", ",", "i_spu", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_video_set_spu'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_video_set_spu'", ",", "(", "(", "1", ",", ")", ",", "(", "1", ",",...
Set new video subtitle. @param p_mi: the media player. @param i_spu: video subtitle track to select (i_id from track description). @return: 0 on success, -1 if out of range.
[ "Set", "new", "video", "subtitle", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L5726-L5735
236,408
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_video_set_subtitle_file
def libvlc_video_set_subtitle_file(p_mi, psz_subtitle): '''Set new video subtitle file. @param p_mi: the media player. @param psz_subtitle: new video subtitle file. @return: the success status (boolean). ''' f = _Cfunctions.get('libvlc_video_set_subtitle_file', None) or \ _Cfunction('lib...
python
def libvlc_video_set_subtitle_file(p_mi, psz_subtitle): '''Set new video subtitle file. @param p_mi: the media player. @param psz_subtitle: new video subtitle file. @return: the success status (boolean). ''' f = _Cfunctions.get('libvlc_video_set_subtitle_file', None) or \ _Cfunction('lib...
[ "def", "libvlc_video_set_subtitle_file", "(", "p_mi", ",", "psz_subtitle", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_video_set_subtitle_file'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_video_set_subtitle_file'", ",", "(", "(", "1", ",...
Set new video subtitle file. @param p_mi: the media player. @param psz_subtitle: new video subtitle file. @return: the success status (boolean).
[ "Set", "new", "video", "subtitle", "file", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L5737-L5746
236,409
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_video_set_spu_delay
def libvlc_video_set_spu_delay(p_mi, i_delay): '''Set the subtitle delay. This affects the timing of when the subtitle will be displayed. Positive values result in subtitles being displayed later, while negative values will result in subtitles being displayed earlier. The subtitle delay will be reset to...
python
def libvlc_video_set_spu_delay(p_mi, i_delay): '''Set the subtitle delay. This affects the timing of when the subtitle will be displayed. Positive values result in subtitles being displayed later, while negative values will result in subtitles being displayed earlier. The subtitle delay will be reset to...
[ "def", "libvlc_video_set_spu_delay", "(", "p_mi", ",", "i_delay", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_video_set_spu_delay'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_video_set_spu_delay'", ",", "(", "(", "1", ",", ")", ",", ...
Set the subtitle delay. This affects the timing of when the subtitle will be displayed. Positive values result in subtitles being displayed later, while negative values will result in subtitles being displayed earlier. The subtitle delay will be reset to zero each time the media changes. @param p_mi: me...
[ "Set", "the", "subtitle", "delay", ".", "This", "affects", "the", "timing", "of", "when", "the", "subtitle", "will", "be", "displayed", ".", "Positive", "values", "result", "in", "subtitles", "being", "displayed", "later", "while", "negative", "values", "will"...
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L5760-L5773
236,410
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_video_get_chapter_description
def libvlc_video_get_chapter_description(p_mi, i_title): '''Get the description of available chapters for specific title. @param p_mi: the media player. @param i_title: selected title. @return: list containing description of available chapter for title i_title. ''' f = _Cfunctions.get('libvlc_vi...
python
def libvlc_video_get_chapter_description(p_mi, i_title): '''Get the description of available chapters for specific title. @param p_mi: the media player. @param i_title: selected title. @return: list containing description of available chapter for title i_title. ''' f = _Cfunctions.get('libvlc_vi...
[ "def", "libvlc_video_get_chapter_description", "(", "p_mi", ",", "i_title", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_video_get_chapter_description'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_video_get_chapter_description'", ",", "(", "("...
Get the description of available chapters for specific title. @param p_mi: the media player. @param i_title: selected title. @return: list containing description of available chapter for title i_title.
[ "Get", "the", "description", "of", "available", "chapters", "for", "specific", "title", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L5785-L5794
236,411
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_video_set_crop_geometry
def libvlc_video_set_crop_geometry(p_mi, psz_geometry): '''Set new crop filter geometry. @param p_mi: the media player. @param psz_geometry: new crop filter geometry (NULL to unset). ''' f = _Cfunctions.get('libvlc_video_set_crop_geometry', None) or \ _Cfunction('libvlc_video_set_crop_geomet...
python
def libvlc_video_set_crop_geometry(p_mi, psz_geometry): '''Set new crop filter geometry. @param p_mi: the media player. @param psz_geometry: new crop filter geometry (NULL to unset). ''' f = _Cfunctions.get('libvlc_video_set_crop_geometry', None) or \ _Cfunction('libvlc_video_set_crop_geomet...
[ "def", "libvlc_video_set_crop_geometry", "(", "p_mi", ",", "psz_geometry", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_video_set_crop_geometry'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_video_set_crop_geometry'", ",", "(", "(", "1", ",...
Set new crop filter geometry. @param p_mi: the media player. @param psz_geometry: new crop filter geometry (NULL to unset).
[ "Set", "new", "crop", "filter", "geometry", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L5806-L5814
236,412
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_video_set_teletext
def libvlc_video_set_teletext(p_mi, i_page): '''Set new teletext page to retrieve. @param p_mi: the media player. @param i_page: teletex page number requested. ''' f = _Cfunctions.get('libvlc_video_set_teletext', None) or \ _Cfunction('libvlc_video_set_teletext', ((1,), (1,),), None, ...
python
def libvlc_video_set_teletext(p_mi, i_page): '''Set new teletext page to retrieve. @param p_mi: the media player. @param i_page: teletex page number requested. ''' f = _Cfunctions.get('libvlc_video_set_teletext', None) or \ _Cfunction('libvlc_video_set_teletext', ((1,), (1,),), None, ...
[ "def", "libvlc_video_set_teletext", "(", "p_mi", ",", "i_page", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_video_set_teletext'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_video_set_teletext'", ",", "(", "(", "1", ",", ")", ",", "(...
Set new teletext page to retrieve. @param p_mi: the media player. @param i_page: teletex page number requested.
[ "Set", "new", "teletext", "page", "to", "retrieve", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L5826-L5834
236,413
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_video_get_track_description
def libvlc_video_get_track_description(p_mi): '''Get the description of available video tracks. @param p_mi: media player. @return: list with description of available video tracks, or NULL on error. ''' f = _Cfunctions.get('libvlc_video_get_track_description', None) or \ _Cfunction('libvlc_v...
python
def libvlc_video_get_track_description(p_mi): '''Get the description of available video tracks. @param p_mi: media player. @return: list with description of available video tracks, or NULL on error. ''' f = _Cfunctions.get('libvlc_video_get_track_description', None) or \ _Cfunction('libvlc_v...
[ "def", "libvlc_video_get_track_description", "(", "p_mi", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_video_get_track_description'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_video_get_track_description'", ",", "(", "(", "1", ",", ")", "...
Get the description of available video tracks. @param p_mi: media player. @return: list with description of available video tracks, or NULL on error.
[ "Get", "the", "description", "of", "available", "video", "tracks", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L5855-L5863
236,414
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_video_set_deinterlace
def libvlc_video_set_deinterlace(p_mi, psz_mode): '''Enable or disable deinterlace filter. @param p_mi: libvlc media player. @param psz_mode: type of deinterlace filter, NULL to disable. ''' f = _Cfunctions.get('libvlc_video_set_deinterlace', None) or \ _Cfunction('libvlc_video_set_deinterla...
python
def libvlc_video_set_deinterlace(p_mi, psz_mode): '''Enable or disable deinterlace filter. @param p_mi: libvlc media player. @param psz_mode: type of deinterlace filter, NULL to disable. ''' f = _Cfunctions.get('libvlc_video_set_deinterlace', None) or \ _Cfunction('libvlc_video_set_deinterla...
[ "def", "libvlc_video_set_deinterlace", "(", "p_mi", ",", "psz_mode", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_video_set_deinterlace'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_video_set_deinterlace'", ",", "(", "(", "1", ",", ")", ...
Enable or disable deinterlace filter. @param p_mi: libvlc media player. @param psz_mode: type of deinterlace filter, NULL to disable.
[ "Enable", "or", "disable", "deinterlace", "filter", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L5902-L5910
236,415
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_video_get_marquee_string
def libvlc_video_get_marquee_string(p_mi, option): '''Get a string marquee option value. @param p_mi: libvlc media player. @param option: marq option to get See libvlc_video_marquee_string_option_t. ''' f = _Cfunctions.get('libvlc_video_get_marquee_string', None) or \ _Cfunction('libvlc_vide...
python
def libvlc_video_get_marquee_string(p_mi, option): '''Get a string marquee option value. @param p_mi: libvlc media player. @param option: marq option to get See libvlc_video_marquee_string_option_t. ''' f = _Cfunctions.get('libvlc_video_get_marquee_string', None) or \ _Cfunction('libvlc_vide...
[ "def", "libvlc_video_get_marquee_string", "(", "p_mi", ",", "option", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_video_get_marquee_string'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_video_get_marquee_string'", ",", "(", "(", "1", ",", ...
Get a string marquee option value. @param p_mi: libvlc media player. @param option: marq option to get See libvlc_video_marquee_string_option_t.
[ "Get", "a", "string", "marquee", "option", "value", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L5922-L5930
236,416
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_video_set_marquee_string
def libvlc_video_set_marquee_string(p_mi, option, psz_text): '''Set a marquee string option. @param p_mi: libvlc media player. @param option: marq option to set See libvlc_video_marquee_string_option_t. @param psz_text: marq option value. ''' f = _Cfunctions.get('libvlc_video_set_marquee_string'...
python
def libvlc_video_set_marquee_string(p_mi, option, psz_text): '''Set a marquee string option. @param p_mi: libvlc media player. @param option: marq option to set See libvlc_video_marquee_string_option_t. @param psz_text: marq option value. ''' f = _Cfunctions.get('libvlc_video_set_marquee_string'...
[ "def", "libvlc_video_set_marquee_string", "(", "p_mi", ",", "option", ",", "psz_text", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_video_set_marquee_string'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_video_set_marquee_string'", ",", "(", ...
Set a marquee string option. @param p_mi: libvlc media player. @param option: marq option to set See libvlc_video_marquee_string_option_t. @param psz_text: marq option value.
[ "Set", "a", "marquee", "string", "option", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L5945-L5954
236,417
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_video_get_logo_int
def libvlc_video_get_logo_int(p_mi, option): '''Get integer logo option. @param p_mi: libvlc media player instance. @param option: logo option to get, values of libvlc_video_logo_option_t. ''' f = _Cfunctions.get('libvlc_video_get_logo_int', None) or \ _Cfunction('libvlc_video_get_logo_int',...
python
def libvlc_video_get_logo_int(p_mi, option): '''Get integer logo option. @param p_mi: libvlc media player instance. @param option: logo option to get, values of libvlc_video_logo_option_t. ''' f = _Cfunctions.get('libvlc_video_get_logo_int', None) or \ _Cfunction('libvlc_video_get_logo_int',...
[ "def", "libvlc_video_get_logo_int", "(", "p_mi", ",", "option", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_video_get_logo_int'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_video_get_logo_int'", ",", "(", "(", "1", ",", ")", ",", "(...
Get integer logo option. @param p_mi: libvlc media player instance. @param option: logo option to get, values of libvlc_video_logo_option_t.
[ "Get", "integer", "logo", "option", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L5956-L5964
236,418
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_video_set_logo_string
def libvlc_video_set_logo_string(p_mi, option, psz_value): '''Set logo option as string. Options that take a different type value are ignored. @param p_mi: libvlc media player instance. @param option: logo option to set, values of libvlc_video_logo_option_t. @param psz_value: logo option value. ...
python
def libvlc_video_set_logo_string(p_mi, option, psz_value): '''Set logo option as string. Options that take a different type value are ignored. @param p_mi: libvlc media player instance. @param option: logo option to set, values of libvlc_video_logo_option_t. @param psz_value: logo option value. ...
[ "def", "libvlc_video_set_logo_string", "(", "p_mi", ",", "option", ",", "psz_value", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_video_set_logo_string'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_video_set_logo_string'", ",", "(", "(", ...
Set logo option as string. Options that take a different type value are ignored. @param p_mi: libvlc media player instance. @param option: logo option to set, values of libvlc_video_logo_option_t. @param psz_value: logo option value.
[ "Set", "logo", "option", "as", "string", ".", "Options", "that", "take", "a", "different", "type", "value", "are", "ignored", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L5980-L5990
236,419
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_video_get_adjust_float
def libvlc_video_get_adjust_float(p_mi, option): '''Get float adjust option. @param p_mi: libvlc media player instance. @param option: adjust option to get, values of libvlc_video_adjust_option_t. @version: LibVLC 1.1.1 and later. ''' f = _Cfunctions.get('libvlc_video_get_adjust_float', None) or...
python
def libvlc_video_get_adjust_float(p_mi, option): '''Get float adjust option. @param p_mi: libvlc media player instance. @param option: adjust option to get, values of libvlc_video_adjust_option_t. @version: LibVLC 1.1.1 and later. ''' f = _Cfunctions.get('libvlc_video_get_adjust_float', None) or...
[ "def", "libvlc_video_get_adjust_float", "(", "p_mi", ",", "option", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_video_get_adjust_float'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_video_get_adjust_float'", ",", "(", "(", "1", ",", ")",...
Get float adjust option. @param p_mi: libvlc media player instance. @param option: adjust option to get, values of libvlc_video_adjust_option_t. @version: LibVLC 1.1.1 and later.
[ "Get", "float", "adjust", "option", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L6018-L6027
236,420
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_video_set_adjust_float
def libvlc_video_set_adjust_float(p_mi, option, value): '''Set adjust option as float. Options that take a different type value are ignored. @param p_mi: libvlc media player instance. @param option: adust option to set, values of libvlc_video_adjust_option_t. @param value: adjust option value. @...
python
def libvlc_video_set_adjust_float(p_mi, option, value): '''Set adjust option as float. Options that take a different type value are ignored. @param p_mi: libvlc media player instance. @param option: adust option to set, values of libvlc_video_adjust_option_t. @param value: adjust option value. @...
[ "def", "libvlc_video_set_adjust_float", "(", "p_mi", ",", "option", ",", "value", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_video_set_adjust_float'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_video_set_adjust_float'", ",", "(", "(", ...
Set adjust option as float. Options that take a different type value are ignored. @param p_mi: libvlc media player instance. @param option: adust option to set, values of libvlc_video_adjust_option_t. @param value: adjust option value. @version: LibVLC 1.1.1 and later.
[ "Set", "adjust", "option", "as", "float", ".", "Options", "that", "take", "a", "different", "type", "value", "are", "ignored", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L6029-L6040
236,421
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_audio_output_list_get
def libvlc_audio_output_list_get(p_instance): '''Gets the list of available audio output modules. @param p_instance: libvlc instance. @return: list of available audio outputs. It must be freed it with In case of error, NULL is returned. ''' f = _Cfunctions.get('libvlc_audio_output_list_get', None) o...
python
def libvlc_audio_output_list_get(p_instance): '''Gets the list of available audio output modules. @param p_instance: libvlc instance. @return: list of available audio outputs. It must be freed it with In case of error, NULL is returned. ''' f = _Cfunctions.get('libvlc_audio_output_list_get', None) o...
[ "def", "libvlc_audio_output_list_get", "(", "p_instance", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_audio_output_list_get'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_audio_output_list_get'", ",", "(", "(", "1", ",", ")", ",", ")", ...
Gets the list of available audio output modules. @param p_instance: libvlc instance. @return: list of available audio outputs. It must be freed it with In case of error, NULL is returned.
[ "Gets", "the", "list", "of", "available", "audio", "output", "modules", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L6042-L6050
236,422
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_audio_output_list_release
def libvlc_audio_output_list_release(p_list): '''Frees the list of available audio output modules. @param p_list: list with audio outputs for release. ''' f = _Cfunctions.get('libvlc_audio_output_list_release', None) or \ _Cfunction('libvlc_audio_output_list_release', ((1,),), None, ...
python
def libvlc_audio_output_list_release(p_list): '''Frees the list of available audio output modules. @param p_list: list with audio outputs for release. ''' f = _Cfunctions.get('libvlc_audio_output_list_release', None) or \ _Cfunction('libvlc_audio_output_list_release', ((1,),), None, ...
[ "def", "libvlc_audio_output_list_release", "(", "p_list", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_audio_output_list_release'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_audio_output_list_release'", ",", "(", "(", "1", ",", ")", ",", ...
Frees the list of available audio output modules. @param p_list: list with audio outputs for release.
[ "Frees", "the", "list", "of", "available", "audio", "output", "modules", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L6052-L6059
236,423
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_audio_output_set
def libvlc_audio_output_set(p_mi, psz_name): '''Selects an audio output module. @note: Any change will take be effect only after playback is stopped and restarted. Audio output cannot be changed while playing. @param p_mi: media player. @param psz_name: name of audio output, use psz_name of See L{Au...
python
def libvlc_audio_output_set(p_mi, psz_name): '''Selects an audio output module. @note: Any change will take be effect only after playback is stopped and restarted. Audio output cannot be changed while playing. @param p_mi: media player. @param psz_name: name of audio output, use psz_name of See L{Au...
[ "def", "libvlc_audio_output_set", "(", "p_mi", ",", "psz_name", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_audio_output_set'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_audio_output_set'", ",", "(", "(", "1", ",", ")", ",", "(", ...
Selects an audio output module. @note: Any change will take be effect only after playback is stopped and restarted. Audio output cannot be changed while playing. @param p_mi: media player. @param psz_name: name of audio output, use psz_name of See L{AudioOutput}. @return: 0 if function succeded, -1 ...
[ "Selects", "an", "audio", "output", "module", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L6061-L6072
236,424
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_audio_output_device_list_release
def libvlc_audio_output_device_list_release(p_list): '''Frees a list of available audio output devices. @param p_list: list with audio outputs for release. @version: LibVLC 2.1.0 or later. ''' f = _Cfunctions.get('libvlc_audio_output_device_list_release', None) or \ _Cfunction('libvlc_audio_...
python
def libvlc_audio_output_device_list_release(p_list): '''Frees a list of available audio output devices. @param p_list: list with audio outputs for release. @version: LibVLC 2.1.0 or later. ''' f = _Cfunctions.get('libvlc_audio_output_device_list_release', None) or \ _Cfunction('libvlc_audio_...
[ "def", "libvlc_audio_output_device_list_release", "(", "p_list", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_audio_output_device_list_release'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_audio_output_device_list_release'", ",", "(", "(", "1", ...
Frees a list of available audio output devices. @param p_list: list with audio outputs for release. @version: LibVLC 2.1.0 or later.
[ "Frees", "a", "list", "of", "available", "audio", "output", "devices", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L6112-L6120
236,425
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_audio_set_mute
def libvlc_audio_set_mute(p_mi, status): '''Set mute status. @param p_mi: media player. @param status: If status is true then mute, otherwise unmute @warning This function does not always work. If there are no active audio playback stream, the mute status might not be available. If digital pass-through (S/P...
python
def libvlc_audio_set_mute(p_mi, status): '''Set mute status. @param p_mi: media player. @param status: If status is true then mute, otherwise unmute @warning This function does not always work. If there are no active audio playback stream, the mute status might not be available. If digital pass-through (S/P...
[ "def", "libvlc_audio_set_mute", "(", "p_mi", ",", "status", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_audio_set_mute'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_audio_set_mute'", ",", "(", "(", "1", ",", ")", ",", "(", "1", ...
Set mute status. @param p_mi: media player. @param status: If status is true then mute, otherwise unmute @warning This function does not always work. If there are no active audio playback stream, the mute status might not be available. If digital pass-through (S/PDIF, HDMI...) is in use, muting may be unapplica...
[ "Set", "mute", "status", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L6193-L6201
236,426
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_audio_set_volume
def libvlc_audio_set_volume(p_mi, i_volume): '''Set current software audio volume. @param p_mi: media player. @param i_volume: the volume in percents (0 = mute, 100 = 0dB). @return: 0 if the volume was set, -1 if it was out of range. ''' f = _Cfunctions.get('libvlc_audio_set_volume', None) or \ ...
python
def libvlc_audio_set_volume(p_mi, i_volume): '''Set current software audio volume. @param p_mi: media player. @param i_volume: the volume in percents (0 = mute, 100 = 0dB). @return: 0 if the volume was set, -1 if it was out of range. ''' f = _Cfunctions.get('libvlc_audio_set_volume', None) or \ ...
[ "def", "libvlc_audio_set_volume", "(", "p_mi", ",", "i_volume", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_audio_set_volume'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_audio_set_volume'", ",", "(", "(", "1", ",", ")", ",", "(", ...
Set current software audio volume. @param p_mi: media player. @param i_volume: the volume in percents (0 = mute, 100 = 0dB). @return: 0 if the volume was set, -1 if it was out of range.
[ "Set", "current", "software", "audio", "volume", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L6213-L6222
236,427
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_audio_set_track
def libvlc_audio_set_track(p_mi, i_track): '''Set current audio track. @param p_mi: media player. @param i_track: the track ID (i_id field from track description). @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_audio_set_track', None) or \ _Cfunction('libvlc_audio_se...
python
def libvlc_audio_set_track(p_mi, i_track): '''Set current audio track. @param p_mi: media player. @param i_track: the track ID (i_id field from track description). @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_audio_set_track', None) or \ _Cfunction('libvlc_audio_se...
[ "def", "libvlc_audio_set_track", "(", "p_mi", ",", "i_track", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_audio_set_track'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_audio_set_track'", ",", "(", "(", "1", ",", ")", ",", "(", "1"...
Set current audio track. @param p_mi: media player. @param i_track: the track ID (i_id field from track description). @return: 0 on success, -1 on error.
[ "Set", "current", "audio", "track", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L6254-L6263
236,428
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_audio_set_channel
def libvlc_audio_set_channel(p_mi, channel): '''Set current audio channel. @param p_mi: media player. @param channel: the audio channel, See libvlc_audio_output_channel_t. @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_audio_set_channel', None) or \ _Cfunction('libvl...
python
def libvlc_audio_set_channel(p_mi, channel): '''Set current audio channel. @param p_mi: media player. @param channel: the audio channel, See libvlc_audio_output_channel_t. @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_audio_set_channel', None) or \ _Cfunction('libvl...
[ "def", "libvlc_audio_set_channel", "(", "p_mi", ",", "channel", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_audio_set_channel'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_audio_set_channel'", ",", "(", "(", "1", ",", ")", ",", "(",...
Set current audio channel. @param p_mi: media player. @param channel: the audio channel, See libvlc_audio_output_channel_t. @return: 0 on success, -1 on error.
[ "Set", "current", "audio", "channel", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L6275-L6284
236,429
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_audio_get_delay
def libvlc_audio_get_delay(p_mi): '''Get current audio delay. @param p_mi: media player. @return: the audio delay (microseconds). @version: LibVLC 1.1.1 or later. ''' f = _Cfunctions.get('libvlc_audio_get_delay', None) or \ _Cfunction('libvlc_audio_get_delay', ((1,),), None, ...
python
def libvlc_audio_get_delay(p_mi): '''Get current audio delay. @param p_mi: media player. @return: the audio delay (microseconds). @version: LibVLC 1.1.1 or later. ''' f = _Cfunctions.get('libvlc_audio_get_delay', None) or \ _Cfunction('libvlc_audio_get_delay', ((1,),), None, ...
[ "def", "libvlc_audio_get_delay", "(", "p_mi", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_audio_get_delay'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_audio_get_delay'", ",", "(", "(", "1", ",", ")", ",", ")", ",", "None", ",", ...
Get current audio delay. @param p_mi: media player. @return: the audio delay (microseconds). @version: LibVLC 1.1.1 or later.
[ "Get", "current", "audio", "delay", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L6286-L6295
236,430
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_audio_equalizer_get_preset_name
def libvlc_audio_equalizer_get_preset_name(u_index): '''Get the name of a particular equalizer preset. This name can be used, for example, to prepare a preset label or menu in a user interface. @param u_index: index of the preset, counting from zero. @return: preset name, or NULL if there is no such...
python
def libvlc_audio_equalizer_get_preset_name(u_index): '''Get the name of a particular equalizer preset. This name can be used, for example, to prepare a preset label or menu in a user interface. @param u_index: index of the preset, counting from zero. @return: preset name, or NULL if there is no such...
[ "def", "libvlc_audio_equalizer_get_preset_name", "(", "u_index", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_audio_equalizer_get_preset_name'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_audio_equalizer_get_preset_name'", ",", "(", "(", "1", ...
Get the name of a particular equalizer preset. This name can be used, for example, to prepare a preset label or menu in a user interface. @param u_index: index of the preset, counting from zero. @return: preset name, or NULL if there is no such preset. @version: LibVLC 2.2.0 or later.
[ "Get", "the", "name", "of", "a", "particular", "equalizer", "preset", ".", "This", "name", "can", "be", "used", "for", "example", "to", "prepare", "a", "preset", "label", "or", "menu", "in", "a", "user", "interface", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L6319-L6330
236,431
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_audio_equalizer_get_band_frequency
def libvlc_audio_equalizer_get_band_frequency(u_index): '''Get a particular equalizer band frequency. This value can be used, for example, to create a label for an equalizer band control in a user interface. @param u_index: index of the band, counting from zero. @return: equalizer band frequency (Hz...
python
def libvlc_audio_equalizer_get_band_frequency(u_index): '''Get a particular equalizer band frequency. This value can be used, for example, to create a label for an equalizer band control in a user interface. @param u_index: index of the band, counting from zero. @return: equalizer band frequency (Hz...
[ "def", "libvlc_audio_equalizer_get_band_frequency", "(", "u_index", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_audio_equalizer_get_band_frequency'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_audio_equalizer_get_band_frequency'", ",", "(", "(", ...
Get a particular equalizer band frequency. This value can be used, for example, to create a label for an equalizer band control in a user interface. @param u_index: index of the band, counting from zero. @return: equalizer band frequency (Hz), or -1 if there is no such band. @version: LibVLC 2.2.0 o...
[ "Get", "a", "particular", "equalizer", "band", "frequency", ".", "This", "value", "can", "be", "used", "for", "example", "to", "create", "a", "label", "for", "an", "equalizer", "band", "control", "in", "a", "user", "interface", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L6342-L6353
236,432
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_audio_equalizer_get_preamp
def libvlc_audio_equalizer_get_preamp(p_equalizer): '''Get the current pre-amplification value from an equalizer. @param p_equalizer: valid equalizer handle, must not be NULL. @return: preamp value (Hz). @version: LibVLC 2.2.0 or later. ''' f = _Cfunctions.get('libvlc_audio_equalizer_get_preamp'...
python
def libvlc_audio_equalizer_get_preamp(p_equalizer): '''Get the current pre-amplification value from an equalizer. @param p_equalizer: valid equalizer handle, must not be NULL. @return: preamp value (Hz). @version: LibVLC 2.2.0 or later. ''' f = _Cfunctions.get('libvlc_audio_equalizer_get_preamp'...
[ "def", "libvlc_audio_equalizer_get_preamp", "(", "p_equalizer", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_audio_equalizer_get_preamp'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_audio_equalizer_get_preamp'", ",", "(", "(", "1", ",", ")",...
Get the current pre-amplification value from an equalizer. @param p_equalizer: valid equalizer handle, must not be NULL. @return: preamp value (Hz). @version: LibVLC 2.2.0 or later.
[ "Get", "the", "current", "pre", "-", "amplification", "value", "from", "an", "equalizer", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L6413-L6422
236,433
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_audio_equalizer_get_amp_at_index
def libvlc_audio_equalizer_get_amp_at_index(p_equalizer, u_band): '''Get the amplification value for a particular equalizer frequency band. @param p_equalizer: valid equalizer handle, must not be NULL. @param u_band: index, counting from zero, of the frequency band to get. @return: amplification value (...
python
def libvlc_audio_equalizer_get_amp_at_index(p_equalizer, u_band): '''Get the amplification value for a particular equalizer frequency band. @param p_equalizer: valid equalizer handle, must not be NULL. @param u_band: index, counting from zero, of the frequency band to get. @return: amplification value (...
[ "def", "libvlc_audio_equalizer_get_amp_at_index", "(", "p_equalizer", ",", "u_band", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_audio_equalizer_get_amp_at_index'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_audio_equalizer_get_amp_at_index'", ",...
Get the amplification value for a particular equalizer frequency band. @param p_equalizer: valid equalizer handle, must not be NULL. @param u_band: index, counting from zero, of the frequency band to get. @return: amplification value (Hz); NaN if there is no such frequency band. @version: LibVLC 2.2.0 o...
[ "Get", "the", "amplification", "value", "for", "a", "particular", "equalizer", "frequency", "band", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L6440-L6450
236,434
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_vlm_set_loop
def libvlc_vlm_set_loop(p_instance, psz_name, b_loop): '''Set a media's loop status. @param p_instance: the instance. @param psz_name: the media to work on. @param b_loop: the new status. @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_vlm_set_loop', None) or \ _C...
python
def libvlc_vlm_set_loop(p_instance, psz_name, b_loop): '''Set a media's loop status. @param p_instance: the instance. @param psz_name: the media to work on. @param b_loop: the new status. @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_vlm_set_loop', None) or \ _C...
[ "def", "libvlc_vlm_set_loop", "(", "p_instance", ",", "psz_name", ",", "b_loop", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_vlm_set_loop'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_vlm_set_loop'", ",", "(", "(", "1", ",", ")", ...
Set a media's loop status. @param p_instance: the instance. @param psz_name: the media to work on. @param b_loop: the new status. @return: 0 on success, -1 on error.
[ "Set", "a", "media", "s", "loop", "status", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L6580-L6590
236,435
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_vlm_seek_media
def libvlc_vlm_seek_media(p_instance, psz_name, f_percentage): '''Seek in the named broadcast. @param p_instance: the instance. @param psz_name: the name of the broadcast. @param f_percentage: the percentage to seek to. @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_vlm_...
python
def libvlc_vlm_seek_media(p_instance, psz_name, f_percentage): '''Seek in the named broadcast. @param p_instance: the instance. @param psz_name: the name of the broadcast. @param f_percentage: the percentage to seek to. @return: 0 on success, -1 on error. ''' f = _Cfunctions.get('libvlc_vlm_...
[ "def", "libvlc_vlm_seek_media", "(", "p_instance", ",", "psz_name", ",", "f_percentage", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_vlm_seek_media'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_vlm_seek_media'", ",", "(", "(", "1", ",...
Seek in the named broadcast. @param p_instance: the instance. @param psz_name: the name of the broadcast. @param f_percentage: the percentage to seek to. @return: 0 on success, -1 on error.
[ "Seek", "in", "the", "named", "broadcast", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L6655-L6665
236,436
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_vlm_show_media
def libvlc_vlm_show_media(p_instance, psz_name): '''Return information about the named media as a JSON string representation. This function is mainly intended for debugging use, if you want programmatic access to the state of a vlm_media_instance_t, please use the corresponding libvlc_vlm_get_me...
python
def libvlc_vlm_show_media(p_instance, psz_name): '''Return information about the named media as a JSON string representation. This function is mainly intended for debugging use, if you want programmatic access to the state of a vlm_media_instance_t, please use the corresponding libvlc_vlm_get_me...
[ "def", "libvlc_vlm_show_media", "(", "p_instance", ",", "psz_name", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_vlm_show_media'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_vlm_show_media'", ",", "(", "(", "1", ",", ")", ",", "(", ...
Return information about the named media as a JSON string representation. This function is mainly intended for debugging use, if you want programmatic access to the state of a vlm_media_instance_t, please use the corresponding libvlc_vlm_get_media_instance_xxx -functions. Currently there are no ...
[ "Return", "information", "about", "the", "named", "media", "as", "a", "JSON", "string", "representation", ".", "This", "function", "is", "mainly", "intended", "for", "debugging", "use", "if", "you", "want", "programmatic", "access", "to", "the", "state", "of",...
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L6667-L6683
236,437
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_vlm_get_media_instance_position
def libvlc_vlm_get_media_instance_position(p_instance, psz_name, i_instance): '''Get vlm_media instance position by name or instance id. @param p_instance: a libvlc instance. @param psz_name: name of vlm media instance. @param i_instance: instance id. @return: position as float or -1. on error. ...
python
def libvlc_vlm_get_media_instance_position(p_instance, psz_name, i_instance): '''Get vlm_media instance position by name or instance id. @param p_instance: a libvlc instance. @param psz_name: name of vlm media instance. @param i_instance: instance id. @return: position as float or -1. on error. ...
[ "def", "libvlc_vlm_get_media_instance_position", "(", "p_instance", ",", "psz_name", ",", "i_instance", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_vlm_get_media_instance_position'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_vlm_get_media_inst...
Get vlm_media instance position by name or instance id. @param p_instance: a libvlc instance. @param psz_name: name of vlm media instance. @param i_instance: instance id. @return: position as float or -1. on error.
[ "Get", "vlm_media", "instance", "position", "by", "name", "or", "instance", "id", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L6685-L6695
236,438
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_vlm_get_media_instance_time
def libvlc_vlm_get_media_instance_time(p_instance, psz_name, i_instance): '''Get vlm_media instance time by name or instance id. @param p_instance: a libvlc instance. @param psz_name: name of vlm media instance. @param i_instance: instance id. @return: time as integer or -1 on error. ''' f =...
python
def libvlc_vlm_get_media_instance_time(p_instance, psz_name, i_instance): '''Get vlm_media instance time by name or instance id. @param p_instance: a libvlc instance. @param psz_name: name of vlm media instance. @param i_instance: instance id. @return: time as integer or -1 on error. ''' f =...
[ "def", "libvlc_vlm_get_media_instance_time", "(", "p_instance", ",", "psz_name", ",", "i_instance", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_vlm_get_media_instance_time'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_vlm_get_media_instance_tim...
Get vlm_media instance time by name or instance id. @param p_instance: a libvlc instance. @param psz_name: name of vlm media instance. @param i_instance: instance id. @return: time as integer or -1 on error.
[ "Get", "vlm_media", "instance", "time", "by", "name", "or", "instance", "id", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L6697-L6707
236,439
manns/pyspread
pyspread/src/lib/vlc.py
libvlc_vlm_get_event_manager
def libvlc_vlm_get_event_manager(p_instance): '''Get libvlc_event_manager from a vlm media. The p_event_manager is immutable, so you don't have to hold the lock. @param p_instance: a libvlc instance. @return: libvlc_event_manager. ''' f = _Cfunctions.get('libvlc_vlm_get_event_manager', None) or ...
python
def libvlc_vlm_get_event_manager(p_instance): '''Get libvlc_event_manager from a vlm media. The p_event_manager is immutable, so you don't have to hold the lock. @param p_instance: a libvlc instance. @return: libvlc_event_manager. ''' f = _Cfunctions.get('libvlc_vlm_get_event_manager', None) or ...
[ "def", "libvlc_vlm_get_event_manager", "(", "p_instance", ")", ":", "f", "=", "_Cfunctions", ".", "get", "(", "'libvlc_vlm_get_event_manager'", ",", "None", ")", "or", "_Cfunction", "(", "'libvlc_vlm_get_event_manager'", ",", "(", "(", "1", ",", ")", ",", ")", ...
Get libvlc_event_manager from a vlm media. The p_event_manager is immutable, so you don't have to hold the lock. @param p_instance: a libvlc instance. @return: libvlc_event_manager.
[ "Get", "libvlc_event_manager", "from", "a", "vlm", "media", ".", "The", "p_event_manager", "is", "immutable", "so", "you", "don", "t", "have", "to", "hold", "the", "lock", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L6772-L6781
236,440
manns/pyspread
pyspread/src/lib/vlc.py
debug_callback
def debug_callback(event, *args, **kwds): '''Example callback, useful for debugging. ''' l = ['event %s' % (event.type,)] if args: l.extend(map(str, args)) if kwds: l.extend(sorted('%s=%s' % t for t in kwds.items())) print('Debug callback (%s)' % ', '.join(l))
python
def debug_callback(event, *args, **kwds): '''Example callback, useful for debugging. ''' l = ['event %s' % (event.type,)] if args: l.extend(map(str, args)) if kwds: l.extend(sorted('%s=%s' % t for t in kwds.items())) print('Debug callback (%s)' % ', '.join(l))
[ "def", "debug_callback", "(", "event", ",", "*", "args", ",", "*", "*", "kwds", ")", ":", "l", "=", "[", "'event %s'", "%", "(", "event", ".", "type", ",", ")", "]", "if", "args", ":", "l", ".", "extend", "(", "map", "(", "str", ",", "args", ...
Example callback, useful for debugging.
[ "Example", "callback", "useful", "for", "debugging", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L6882-L6890
236,441
manns/pyspread
pyspread/src/lib/vlc.py
EventManager.event_attach
def event_attach(self, eventtype, callback, *args, **kwds): """Register an event notification. @param eventtype: the desired event type to be notified about. @param callback: the function to call when the event occurs. @param args: optional positional arguments for the callback. ...
python
def event_attach(self, eventtype, callback, *args, **kwds): """Register an event notification. @param eventtype: the desired event type to be notified about. @param callback: the function to call when the event occurs. @param args: optional positional arguments for the callback. ...
[ "def", "event_attach", "(", "self", ",", "eventtype", ",", "callback", ",", "*", "args", ",", "*", "*", "kwds", ")", ":", "if", "not", "isinstance", "(", "eventtype", ",", "EventType", ")", ":", "raise", "VLCException", "(", "\"%s required: %r\"", "%", "...
Register an event notification. @param eventtype: the desired event type to be notified about. @param callback: the function to call when the event occurs. @param args: optional positional arguments for the callback. @param kwds: optional keyword arguments for the callback. @ret...
[ "Register", "an", "event", "notification", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L1428-L1472
236,442
manns/pyspread
pyspread/src/lib/vlc.py
Instance.media_player_new
def media_player_new(self, uri=None): """Create a new MediaPlayer instance. @param uri: an optional URI to play in the player. """ p = libvlc_media_player_new(self) if uri: p.set_media(self.media_new(uri)) p._instance = self return p
python
def media_player_new(self, uri=None): """Create a new MediaPlayer instance. @param uri: an optional URI to play in the player. """ p = libvlc_media_player_new(self) if uri: p.set_media(self.media_new(uri)) p._instance = self return p
[ "def", "media_player_new", "(", "self", ",", "uri", "=", "None", ")", ":", "p", "=", "libvlc_media_player_new", "(", "self", ")", "if", "uri", ":", "p", ".", "set_media", "(", "self", ".", "media_new", "(", "uri", ")", ")", "p", ".", "_instance", "="...
Create a new MediaPlayer instance. @param uri: an optional URI to play in the player.
[ "Create", "a", "new", "MediaPlayer", "instance", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L1519-L1528
236,443
manns/pyspread
pyspread/src/lib/vlc.py
Instance.media_new
def media_new(self, mrl, *options): """Create a new Media instance. If mrl contains a colon (:) preceded by more than 1 letter, it will be treated as a URL. Else, it will be considered as a local path. If you need more control, directly use media_new_location/media_new_path meth...
python
def media_new(self, mrl, *options): """Create a new Media instance. If mrl contains a colon (:) preceded by more than 1 letter, it will be treated as a URL. Else, it will be considered as a local path. If you need more control, directly use media_new_location/media_new_path meth...
[ "def", "media_new", "(", "self", ",", "mrl", ",", "*", "options", ")", ":", "if", "':'", "in", "mrl", "and", "mrl", ".", "index", "(", "':'", ")", ">", "1", ":", "# Assume it is a URL", "m", "=", "libvlc_media_new_location", "(", "self", ",", "str_to_b...
Create a new Media instance. If mrl contains a colon (:) preceded by more than 1 letter, it will be treated as a URL. Else, it will be considered as a local path. If you need more control, directly use media_new_location/media_new_path methods. Options can be specified as suppl...
[ "Create", "a", "new", "Media", "instance", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L1537-L1565
236,444
manns/pyspread
pyspread/src/lib/vlc.py
Instance.media_list_new
def media_list_new(self, mrls=None): """Create a new MediaList instance. @param mrls: optional list of MRL strings """ l = libvlc_media_list_new(self) # We should take the lock, but since we did not leak the # reference, nobody else can access it. if mrls: ...
python
def media_list_new(self, mrls=None): """Create a new MediaList instance. @param mrls: optional list of MRL strings """ l = libvlc_media_list_new(self) # We should take the lock, but since we did not leak the # reference, nobody else can access it. if mrls: ...
[ "def", "media_list_new", "(", "self", ",", "mrls", "=", "None", ")", ":", "l", "=", "libvlc_media_list_new", "(", "self", ")", "# We should take the lock, but since we did not leak the", "# reference, nobody else can access it.", "if", "mrls", ":", "for", "m", "in", "...
Create a new MediaList instance. @param mrls: optional list of MRL strings
[ "Create", "a", "new", "MediaList", "instance", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L1567-L1578
236,445
manns/pyspread
pyspread/src/lib/vlc.py
Instance.audio_output_enumerate_devices
def audio_output_enumerate_devices(self): """Enumerate the defined audio output devices. @return: list of dicts {name:, description:, devices:} """ r = [] head = libvlc_audio_output_list_get(self) if head: i = head while i: i = i.c...
python
def audio_output_enumerate_devices(self): """Enumerate the defined audio output devices. @return: list of dicts {name:, description:, devices:} """ r = [] head = libvlc_audio_output_list_get(self) if head: i = head while i: i = i.c...
[ "def", "audio_output_enumerate_devices", "(", "self", ")", ":", "r", "=", "[", "]", "head", "=", "libvlc_audio_output_list_get", "(", "self", ")", "if", "head", ":", "i", "=", "head", "while", "i", ":", "i", "=", "i", ".", "contents", "d", "=", "[", ...
Enumerate the defined audio output devices. @return: list of dicts {name:, description:, devices:}
[ "Enumerate", "the", "defined", "audio", "output", "devices", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L1580-L1597
236,446
manns/pyspread
pyspread/src/lib/vlc.py
Instance.vlm_add_input
def vlm_add_input(self, psz_name, psz_input): '''Add a media's input MRL. This will add the specified one. @param psz_name: the media to work on. @param psz_input: the input MRL. @return: 0 on success, -1 on error. ''' return libvlc_vlm_add_input(self, str_to_bytes(psz_na...
python
def vlm_add_input(self, psz_name, psz_input): '''Add a media's input MRL. This will add the specified one. @param psz_name: the media to work on. @param psz_input: the input MRL. @return: 0 on success, -1 on error. ''' return libvlc_vlm_add_input(self, str_to_bytes(psz_na...
[ "def", "vlm_add_input", "(", "self", ",", "psz_name", ",", "psz_input", ")", ":", "return", "libvlc_vlm_add_input", "(", "self", ",", "str_to_bytes", "(", "psz_name", ")", ",", "str_to_bytes", "(", "psz_input", ")", ")" ]
Add a media's input MRL. This will add the specified one. @param psz_name: the media to work on. @param psz_input: the input MRL. @return: 0 on success, -1 on error.
[ "Add", "a", "media", "s", "input", "MRL", ".", "This", "will", "add", "the", "specified", "one", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L1869-L1875
236,447
manns/pyspread
pyspread/src/lib/vlc.py
Instance.vlm_change_media
def vlm_change_media(self, psz_name, psz_input, psz_output, i_options, ppsz_options, b_enabled, b_loop): '''Edit the parameters of a media. This will delete all existing inputs and add the specified one. @param psz_name: the name of the new broadcast. @param psz_input: the input MRL. ...
python
def vlm_change_media(self, psz_name, psz_input, psz_output, i_options, ppsz_options, b_enabled, b_loop): '''Edit the parameters of a media. This will delete all existing inputs and add the specified one. @param psz_name: the name of the new broadcast. @param psz_input: the input MRL. ...
[ "def", "vlm_change_media", "(", "self", ",", "psz_name", ",", "psz_input", ",", "psz_output", ",", "i_options", ",", "ppsz_options", ",", "b_enabled", ",", "b_loop", ")", ":", "return", "libvlc_vlm_change_media", "(", "self", ",", "str_to_bytes", "(", "psz_name"...
Edit the parameters of a media. This will delete all existing inputs and add the specified one. @param psz_name: the name of the new broadcast. @param psz_input: the input MRL. @param psz_output: the output MRL (the parameter to the "sout" variable). @param i_options: number of a...
[ "Edit", "the", "parameters", "of", "a", "media", ".", "This", "will", "delete", "all", "existing", "inputs", "and", "add", "the", "specified", "one", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L1896-L1908
236,448
manns/pyspread
pyspread/src/lib/vlc.py
MediaPlayer.set_mrl
def set_mrl(self, mrl, *options): """Set the MRL to play. Warning: most audio and video options, such as text renderer, have no effects on an individual media. These options must be set at the vlc.Instance or vlc.MediaPlayer instanciation. @param mrl: The MRL @param opt...
python
def set_mrl(self, mrl, *options): """Set the MRL to play. Warning: most audio and video options, such as text renderer, have no effects on an individual media. These options must be set at the vlc.Instance or vlc.MediaPlayer instanciation. @param mrl: The MRL @param opt...
[ "def", "set_mrl", "(", "self", ",", "mrl", ",", "*", "options", ")", ":", "m", "=", "self", ".", "get_instance", "(", ")", ".", "media_new", "(", "mrl", ",", "*", "options", ")", "self", ".", "set_media", "(", "m", ")", "return", "m" ]
Set the MRL to play. Warning: most audio and video options, such as text renderer, have no effects on an individual media. These options must be set at the vlc.Instance or vlc.MediaPlayer instanciation. @param mrl: The MRL @param options: optional media option=value strings ...
[ "Set", "the", "MRL", "to", "play", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/vlc.py#L2727-L2740
236,449
manns/pyspread
pyspread/src/lib/undo.py
_Action.do
def do(self): 'Do or redo the action' self._runner = self._generator(*self.args, **self.kwargs) rets = next(self._runner) if isinstance(rets, tuple): self._text = rets[0] return rets[1:] elif rets is None: self._text = '' r...
python
def do(self): 'Do or redo the action' self._runner = self._generator(*self.args, **self.kwargs) rets = next(self._runner) if isinstance(rets, tuple): self._text = rets[0] return rets[1:] elif rets is None: self._text = '' r...
[ "def", "do", "(", "self", ")", ":", "self", ".", "_runner", "=", "self", ".", "_generator", "(", "*", "self", ".", "args", ",", "*", "*", "self", ".", "kwargs", ")", "rets", "=", "next", "(", "self", ".", "_runner", ")", "if", "isinstance", "(", ...
Do or redo the action
[ "Do", "or", "redo", "the", "action" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/undo.py#L44-L56
236,450
manns/pyspread
pyspread/src/lib/undo.py
Stack.redo
def redo(self): ''' Redo the last undone action. This is only possible if no other actions have occurred since the last undo call. ''' if self.canredo(): undoable = self._redos.pop() with self._pausereceiver(): try: ...
python
def redo(self): ''' Redo the last undone action. This is only possible if no other actions have occurred since the last undo call. ''' if self.canredo(): undoable = self._redos.pop() with self._pausereceiver(): try: ...
[ "def", "redo", "(", "self", ")", ":", "if", "self", ".", "canredo", "(", ")", ":", "undoable", "=", "self", ".", "_redos", ".", "pop", "(", ")", "with", "self", ".", "_pausereceiver", "(", ")", ":", "try", ":", "undoable", ".", "do", "(", ")", ...
Redo the last undone action. This is only possible if no other actions have occurred since the last undo call.
[ "Redo", "the", "last", "undone", "action", ".", "This", "is", "only", "possible", "if", "no", "other", "actions", "have", "occurred", "since", "the", "last", "undo", "call", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/undo.py#L214-L230
236,451
manns/pyspread
pyspread/src/lib/undo.py
Stack.clear
def clear(self): ''' Clear the undo list. ''' self._undos.clear() self._redos.clear() self._savepoint = None self._receiver = self._undos
python
def clear(self): ''' Clear the undo list. ''' self._undos.clear() self._redos.clear() self._savepoint = None self._receiver = self._undos
[ "def", "clear", "(", "self", ")", ":", "self", ".", "_undos", ".", "clear", "(", ")", "self", ".", "_redos", ".", "clear", "(", ")", "self", ".", "_savepoint", "=", "None", "self", ".", "_receiver", "=", "self", ".", "_undos" ]
Clear the undo list.
[ "Clear", "the", "undo", "list", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/undo.py#L246-L251
236,452
manns/pyspread
pyspread/src/lib/xrect.py
Rect.is_bbox_not_intersecting
def is_bbox_not_intersecting(self, other): """Returns False iif bounding boxed of self and other intersect""" self_x_min, self_x_max, self_y_min, self_y_max = self.get_bbox() other_x_min, other_x_max, other_y_min, other_y_max = other.get_bbox() return \ self_x_min > other_x...
python
def is_bbox_not_intersecting(self, other): """Returns False iif bounding boxed of self and other intersect""" self_x_min, self_x_max, self_y_min, self_y_max = self.get_bbox() other_x_min, other_x_max, other_y_min, other_y_max = other.get_bbox() return \ self_x_min > other_x...
[ "def", "is_bbox_not_intersecting", "(", "self", ",", "other", ")", ":", "self_x_min", ",", "self_x_max", ",", "self_y_min", ",", "self_y_max", "=", "self", ".", "get_bbox", "(", ")", "other_x_min", ",", "other_x_max", ",", "other_y_min", ",", "other_y_max", "=...
Returns False iif bounding boxed of self and other intersect
[ "Returns", "False", "iif", "bounding", "boxed", "of", "self", "and", "other", "intersect" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/xrect.py#L47-L57
236,453
manns/pyspread
pyspread/src/lib/xrect.py
RotoOriginRect.is_edge_not_excluding_vertices
def is_edge_not_excluding_vertices(self, other): """Returns False iif any edge excludes all vertices of other.""" c_a = cos(self.angle) s_a = sin(self.angle) # Get min and max of other. other_x_min, other_x_max, other_y_min, other_y_max = other.get_bbox() self_x_diff ...
python
def is_edge_not_excluding_vertices(self, other): """Returns False iif any edge excludes all vertices of other.""" c_a = cos(self.angle) s_a = sin(self.angle) # Get min and max of other. other_x_min, other_x_max, other_y_min, other_y_max = other.get_bbox() self_x_diff ...
[ "def", "is_edge_not_excluding_vertices", "(", "self", ",", "other", ")", ":", "c_a", "=", "cos", "(", "self", ".", "angle", ")", "s_a", "=", "sin", "(", "self", ".", "angle", ")", "# Get min and max of other.", "other_x_min", ",", "other_x_max", ",", "other_...
Returns False iif any edge excludes all vertices of other.
[ "Returns", "False", "iif", "any", "edge", "excludes", "all", "vertices", "of", "other", "." ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/xrect.py#L151-L192
236,454
manns/pyspread
pyspread/src/lib/xrect.py
RotoOriginRect.collides
def collides(self, other): """Returns collision with axis aligned rect""" angle = self.angle width = self.width height = self.height if angle == 0: return other.collides(Rect(-0.5 * width, -0.5 * height, width, height)) ...
python
def collides(self, other): """Returns collision with axis aligned rect""" angle = self.angle width = self.width height = self.height if angle == 0: return other.collides(Rect(-0.5 * width, -0.5 * height, width, height)) ...
[ "def", "collides", "(", "self", ",", "other", ")", ":", "angle", "=", "self", ".", "angle", "width", "=", "self", ".", "width", "height", "=", "self", ".", "height", "if", "angle", "==", "0", ":", "return", "other", ".", "collides", "(", "Rect", "(...
Returns collision with axis aligned rect
[ "Returns", "collision", "with", "axis", "aligned", "rect" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/xrect.py#L194-L224
236,455
manns/pyspread
pyspread/src/lib/xrect.py
RotoRect.get_vec_lr
def get_vec_lr(self): """Returns vector from left to right""" return self.width * self.cos_a(), -self.width * self.sin_a()
python
def get_vec_lr(self): """Returns vector from left to right""" return self.width * self.cos_a(), -self.width * self.sin_a()
[ "def", "get_vec_lr", "(", "self", ")", ":", "return", "self", ".", "width", "*", "self", ".", "cos_a", "(", ")", ",", "-", "self", ".", "width", "*", "self", ".", "sin_a", "(", ")" ]
Returns vector from left to right
[ "Returns", "vector", "from", "left", "to", "right" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/xrect.py#L268-L271
236,456
manns/pyspread
pyspread/src/lib/xrect.py
RotoRect.get_vec_tb
def get_vec_tb(self): """Returns vector from top to bottom""" return self.height * self.sin_a(), self.height * self.cos_a()
python
def get_vec_tb(self): """Returns vector from top to bottom""" return self.height * self.sin_a(), self.height * self.cos_a()
[ "def", "get_vec_tb", "(", "self", ")", ":", "return", "self", ".", "height", "*", "self", ".", "sin_a", "(", ")", ",", "self", ".", "height", "*", "self", ".", "cos_a", "(", ")" ]
Returns vector from top to bottom
[ "Returns", "vector", "from", "top", "to", "bottom" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/xrect.py#L273-L276
236,457
manns/pyspread
pyspread/src/lib/xrect.py
RotoRect.get_center
def get_center(self): """Returns rectangle center""" lr_x, lr_y = self.get_vec_lr() tb_x, tb_y = self.get_vec_tb() center_x = self.x + (lr_x + tb_x) / 2.0 center_y = self.y + (lr_y + tb_y) / 2.0 return center_x, center_y
python
def get_center(self): """Returns rectangle center""" lr_x, lr_y = self.get_vec_lr() tb_x, tb_y = self.get_vec_tb() center_x = self.x + (lr_x + tb_x) / 2.0 center_y = self.y + (lr_y + tb_y) / 2.0 return center_x, center_y
[ "def", "get_center", "(", "self", ")", ":", "lr_x", ",", "lr_y", "=", "self", ".", "get_vec_lr", "(", ")", "tb_x", ",", "tb_y", "=", "self", ".", "get_vec_tb", "(", ")", "center_x", "=", "self", ".", "x", "+", "(", "lr_x", "+", "tb_x", ")", "/", ...
Returns rectangle center
[ "Returns", "rectangle", "center" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/xrect.py#L279-L288
236,458
manns/pyspread
pyspread/src/lib/xrect.py
RotoRect.get_edges
def get_edges(self): """Returns 2-tuples for each edge top_left top_right bottom_left bottom_right """ lr_x, lr_y = self.get_vec_lr() tb_x, tb_y = self.get_vec_tb() top_left = self.x, self.y top_right = self.x + lr_x, self.y + lr_y ...
python
def get_edges(self): """Returns 2-tuples for each edge top_left top_right bottom_left bottom_right """ lr_x, lr_y = self.get_vec_lr() tb_x, tb_y = self.get_vec_tb() top_left = self.x, self.y top_right = self.x + lr_x, self.y + lr_y ...
[ "def", "get_edges", "(", "self", ")", ":", "lr_x", ",", "lr_y", "=", "self", ".", "get_vec_lr", "(", ")", "tb_x", ",", "tb_y", "=", "self", ".", "get_vec_tb", "(", ")", "top_left", "=", "self", ".", "x", ",", "self", ".", "y", "top_right", "=", "...
Returns 2-tuples for each edge top_left top_right bottom_left bottom_right
[ "Returns", "2", "-", "tuples", "for", "each", "edge" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/xrect.py#L290-L308
236,459
manns/pyspread
pyspread/src/lib/xrect.py
RotoRect.collides_axisaligned_rect
def collides_axisaligned_rect(self, other): """Returns collision with axis aligned other rect""" # Shift both rects so that self is centered at origin self_shifted = RotoOriginRect(self.width, self.height, -self.angle) s_a = self.sin_a() c_a = self.cos_a() center_x = ...
python
def collides_axisaligned_rect(self, other): """Returns collision with axis aligned other rect""" # Shift both rects so that self is centered at origin self_shifted = RotoOriginRect(self.width, self.height, -self.angle) s_a = self.sin_a() c_a = self.cos_a() center_x = ...
[ "def", "collides_axisaligned_rect", "(", "self", ",", "other", ")", ":", "# Shift both rects so that self is centered at origin", "self_shifted", "=", "RotoOriginRect", "(", "self", ".", "width", ",", "self", ".", "height", ",", "-", "self", ".", "angle", ")", "s_...
Returns collision with axis aligned other rect
[ "Returns", "collision", "with", "axis", "aligned", "other", "rect" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/xrect.py#L310-L328
236,460
manns/pyspread
pyspread/src/gui/icons.py
GtkArtProvider.get_paths
def get_paths(self, theme, icon_size): """Returns tuple of theme, icon, action and toggle paths""" _size_str = "x".join(map(str, icon_size)) theme_path = get_program_path() + "share" + os.sep + "icons" + os.sep icon_path = theme_path + theme + os.sep + _size_str + os.sep action...
python
def get_paths(self, theme, icon_size): """Returns tuple of theme, icon, action and toggle paths""" _size_str = "x".join(map(str, icon_size)) theme_path = get_program_path() + "share" + os.sep + "icons" + os.sep icon_path = theme_path + theme + os.sep + _size_str + os.sep action...
[ "def", "get_paths", "(", "self", ",", "theme", ",", "icon_size", ")", ":", "_size_str", "=", "\"x\"", ".", "join", "(", "map", "(", "str", ",", "icon_size", ")", ")", "theme_path", "=", "get_program_path", "(", ")", "+", "\"share\"", "+", "os", ".", ...
Returns tuple of theme, icon, action and toggle paths
[ "Returns", "tuple", "of", "theme", "icon", "action", "and", "toggle", "paths" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/icons.py#L108-L118
236,461
manns/pyspread
pyspread/src/gui/icons.py
GtkArtProvider.CreateBitmap
def CreateBitmap(self, artid, client, size): """Adds custom images to Artprovider""" if artid in self.extra_icons: return wx.Bitmap(self.extra_icons[artid], wx.BITMAP_TYPE_ANY) else: return wx.ArtProvider.GetBitmap(artid, client, size)
python
def CreateBitmap(self, artid, client, size): """Adds custom images to Artprovider""" if artid in self.extra_icons: return wx.Bitmap(self.extra_icons[artid], wx.BITMAP_TYPE_ANY) else: return wx.ArtProvider.GetBitmap(artid, client, size)
[ "def", "CreateBitmap", "(", "self", ",", "artid", ",", "client", ",", "size", ")", ":", "if", "artid", "in", "self", ".", "extra_icons", ":", "return", "wx", ".", "Bitmap", "(", "self", ".", "extra_icons", "[", "artid", "]", ",", "wx", ".", "BITMAP_T...
Adds custom images to Artprovider
[ "Adds", "custom", "images", "to", "Artprovider" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/gui/icons.py#L120-L127
236,462
manns/pyspread
pyspread/src/lib/fileio.py
AOpenMixin.set_initial_state
def set_initial_state(self, kwargs): """Sets class state from kwargs attributes, pops extra kwargs""" self.main_window = kwargs.pop("main_window") try: statustext = kwargs.pop("statustext") except KeyError: statustext = "" try: self.total_l...
python
def set_initial_state(self, kwargs): """Sets class state from kwargs attributes, pops extra kwargs""" self.main_window = kwargs.pop("main_window") try: statustext = kwargs.pop("statustext") except KeyError: statustext = "" try: self.total_l...
[ "def", "set_initial_state", "(", "self", ",", "kwargs", ")", ":", "self", ".", "main_window", "=", "kwargs", ".", "pop", "(", "\"main_window\"", ")", "try", ":", "statustext", "=", "kwargs", ".", "pop", "(", "\"statustext\"", ")", "except", "KeyError", ":"...
Sets class state from kwargs attributes, pops extra kwargs
[ "Sets", "class", "state", "from", "kwargs", "attributes", "pops", "extra", "kwargs" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/fileio.py#L53-L86
236,463
manns/pyspread
pyspread/src/lib/fileio.py
AOpenMixin.progress_status
def progress_status(self): """Displays progress in statusbar""" if self.line % self.freq == 0: text = self.statustext.format(nele=self.line, totalele=self.total_lines) if self.main_window.grid.actions.pasting: try: ...
python
def progress_status(self): """Displays progress in statusbar""" if self.line % self.freq == 0: text = self.statustext.format(nele=self.line, totalele=self.total_lines) if self.main_window.grid.actions.pasting: try: ...
[ "def", "progress_status", "(", "self", ")", ":", "if", "self", ".", "line", "%", "self", ".", "freq", "==", "0", ":", "text", "=", "self", ".", "statustext", ".", "format", "(", "nele", "=", "self", ".", "line", ",", "totalele", "=", "self", ".", ...
Displays progress in statusbar
[ "Displays", "progress", "in", "statusbar" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/fileio.py#L117-L145
236,464
manns/pyspread
pyspread/src/lib/fileio.py
AOpenMixin.on_key
def on_key(self, event): """Sets aborted state if escape is pressed""" if self.main_window.grid.actions.pasting and \ event.GetKeyCode() == wx.WXK_ESCAPE: self.aborted = True event.Skip()
python
def on_key(self, event): """Sets aborted state if escape is pressed""" if self.main_window.grid.actions.pasting and \ event.GetKeyCode() == wx.WXK_ESCAPE: self.aborted = True event.Skip()
[ "def", "on_key", "(", "self", ",", "event", ")", ":", "if", "self", ".", "main_window", ".", "grid", ".", "actions", ".", "pasting", "and", "event", ".", "GetKeyCode", "(", ")", "==", "wx", ".", "WXK_ESCAPE", ":", "self", ".", "aborted", "=", "True",...
Sets aborted state if escape is pressed
[ "Sets", "aborted", "state", "if", "escape", "is", "pressed" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/fileio.py#L147-L154
236,465
manns/pyspread
pyspread/src/interfaces/ods.py
Ods._get_tables
def _get_tables(self, ods): """Returns list of table nodes from ods object""" childnodes = ods.spreadsheet.childNodes qname_childnodes = [(s.qname[1], s) for s in childnodes] return [node for name, node in qname_childnodes if name == u"table"]
python
def _get_tables(self, ods): """Returns list of table nodes from ods object""" childnodes = ods.spreadsheet.childNodes qname_childnodes = [(s.qname[1], s) for s in childnodes] return [node for name, node in qname_childnodes if name == u"table"]
[ "def", "_get_tables", "(", "self", ",", "ods", ")", ":", "childnodes", "=", "ods", ".", "spreadsheet", ".", "childNodes", "qname_childnodes", "=", "[", "(", "s", ".", "qname", "[", "1", "]", ",", "s", ")", "for", "s", "in", "childnodes", "]", "return...
Returns list of table nodes from ods object
[ "Returns", "list", "of", "table", "nodes", "from", "ods", "object" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/ods.py#L67-L72
236,466
manns/pyspread
pyspread/src/interfaces/ods.py
Ods._get_rows
def _get_rows(self, table): """Returns rows from table""" childnodes = table.childNodes qname_childnodes = [(s.qname[1], s) for s in childnodes] return [node for name, node in qname_childnodes if name == u'table-row']
python
def _get_rows(self, table): """Returns rows from table""" childnodes = table.childNodes qname_childnodes = [(s.qname[1], s) for s in childnodes] return [node for name, node in qname_childnodes if name == u'table-row']
[ "def", "_get_rows", "(", "self", ",", "table", ")", ":", "childnodes", "=", "table", ".", "childNodes", "qname_childnodes", "=", "[", "(", "s", ".", "qname", "[", "1", "]", ",", "s", ")", "for", "s", "in", "childnodes", "]", "return", "[", "node", ...
Returns rows from table
[ "Returns", "rows", "from", "table" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/ods.py#L74-L80
236,467
manns/pyspread
pyspread/src/interfaces/ods.py
Ods._get_cells
def _get_cells(self, row): """Returns rows from row""" childnodes = row.childNodes qname_childnodes = [(s.qname[1], s) for s in childnodes] return [node for name, node in qname_childnodes if name == u'table-cell']
python
def _get_cells(self, row): """Returns rows from row""" childnodes = row.childNodes qname_childnodes = [(s.qname[1], s) for s in childnodes] return [node for name, node in qname_childnodes if name == u'table-cell']
[ "def", "_get_cells", "(", "self", ",", "row", ")", ":", "childnodes", "=", "row", ".", "childNodes", "qname_childnodes", "=", "[", "(", "s", ".", "qname", "[", "1", "]", ",", "s", ")", "for", "s", "in", "childnodes", "]", "return", "[", "node", "fo...
Returns rows from row
[ "Returns", "rows", "from", "row" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/ods.py#L82-L88
236,468
manns/pyspread
pyspread/src/interfaces/ods.py
Ods._ods2code
def _ods2code(self): """Updates code in code_array""" ods = ODSReader(self.ods_file, clonespannedcolumns=True) tables = ods.sheets for tab_id, table in enumerate(tables): for row_id in xrange(len(table)): for col_id in xrange(len(table[row_id])): ...
python
def _ods2code(self): """Updates code in code_array""" ods = ODSReader(self.ods_file, clonespannedcolumns=True) tables = ods.sheets for tab_id, table in enumerate(tables): for row_id in xrange(len(table)): for col_id in xrange(len(table[row_id])): ...
[ "def", "_ods2code", "(", "self", ")", ":", "ods", "=", "ODSReader", "(", "self", ".", "ods_file", ",", "clonespannedcolumns", "=", "True", ")", "tables", "=", "ods", ".", "sheets", "for", "tab_id", ",", "table", "in", "enumerate", "(", "tables", ")", "...
Updates code in code_array
[ "Updates", "code", "in", "code_array" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/ods.py#L90-L100
236,469
manns/pyspread
pyspread/src/pyspread.py
pyspread
def pyspread(S=None): """Holds application main loop""" # Initialize main application app = MainApplication(S=S, redirect=False) app.MainLoop()
python
def pyspread(S=None): """Holds application main loop""" # Initialize main application app = MainApplication(S=S, redirect=False) app.MainLoop()
[ "def", "pyspread", "(", "S", "=", "None", ")", ":", "# Initialize main application", "app", "=", "MainApplication", "(", "S", "=", "S", ",", "redirect", "=", "False", ")", "app", ".", "MainLoop", "(", ")" ]
Holds application main loop
[ "Holds", "application", "main", "loop" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/pyspread.py#L230-L236
236,470
manns/pyspread
pyspread/src/lib/ODSReader.py
ODSReader.readSheet
def readSheet(self, sheet): """Reads a sheet in the sheet dictionary Stores each sheet as an array (rows) of arrays (columns) """ name = sheet.getAttribute("name") rows = sheet.getElementsByType(TableRow) arrRows = [] # for each row for row in rows: ...
python
def readSheet(self, sheet): """Reads a sheet in the sheet dictionary Stores each sheet as an array (rows) of arrays (columns) """ name = sheet.getAttribute("name") rows = sheet.getElementsByType(TableRow) arrRows = [] # for each row for row in rows: ...
[ "def", "readSheet", "(", "self", ",", "sheet", ")", ":", "name", "=", "sheet", ".", "getAttribute", "(", "\"name\"", ")", "rows", "=", "sheet", ".", "getElementsByType", "(", "TableRow", ")", "arrRows", "=", "[", "]", "# for each row", "for", "row", "in"...
Reads a sheet in the sheet dictionary Stores each sheet as an array (rows) of arrays (columns)
[ "Reads", "a", "sheet", "in", "the", "sheet", "dictionary" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/ODSReader.py#L41-L105
236,471
manns/pyspread
pyspread/src/lib/__csv.py
sniff
def sniff(filepath): """ Sniffs CSV dialect and header info from csvfilepath Returns a tuple of dialect and has_header """ with open(filepath, "rb") as csvfile: sample = csvfile.read(config["sniff_size"]) sniffer = csv.Sniffer() dialect = sniffer.sniff(sample)() has_header = ...
python
def sniff(filepath): """ Sniffs CSV dialect and header info from csvfilepath Returns a tuple of dialect and has_header """ with open(filepath, "rb") as csvfile: sample = csvfile.read(config["sniff_size"]) sniffer = csv.Sniffer() dialect = sniffer.sniff(sample)() has_header = ...
[ "def", "sniff", "(", "filepath", ")", ":", "with", "open", "(", "filepath", ",", "\"rb\"", ")", "as", "csvfile", ":", "sample", "=", "csvfile", ".", "read", "(", "config", "[", "\"sniff_size\"", "]", ")", "sniffer", "=", "csv", ".", "Sniffer", "(", "...
Sniffs CSV dialect and header info from csvfilepath Returns a tuple of dialect and has_header
[ "Sniffs", "CSV", "dialect", "and", "header", "info", "from", "csvfilepath" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/__csv.py#L58-L73
236,472
manns/pyspread
pyspread/src/lib/__csv.py
get_first_line
def get_first_line(filepath, dialect): """Returns List of first line items of file filepath""" with open(filepath, "rb") as csvfile: csvreader = csv.reader(csvfile, dialect=dialect) for first_line in csvreader: break return first_line
python
def get_first_line(filepath, dialect): """Returns List of first line items of file filepath""" with open(filepath, "rb") as csvfile: csvreader = csv.reader(csvfile, dialect=dialect) for first_line in csvreader: break return first_line
[ "def", "get_first_line", "(", "filepath", ",", "dialect", ")", ":", "with", "open", "(", "filepath", ",", "\"rb\"", ")", "as", "csvfile", ":", "csvreader", "=", "csv", ".", "reader", "(", "csvfile", ",", "dialect", "=", "dialect", ")", "for", "first_line...
Returns List of first line items of file filepath
[ "Returns", "List", "of", "first", "line", "items", "of", "file", "filepath" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/__csv.py#L76-L85
236,473
manns/pyspread
pyspread/src/lib/__csv.py
digested_line
def digested_line(line, digest_types): """Returns list of digested values in line""" digested_line = [] for i, ele in enumerate(line): try: digest_key = digest_types[i] except IndexError: digest_key = digest_types[0] digest = Digest(acceptable_types=[digest...
python
def digested_line(line, digest_types): """Returns list of digested values in line""" digested_line = [] for i, ele in enumerate(line): try: digest_key = digest_types[i] except IndexError: digest_key = digest_types[0] digest = Digest(acceptable_types=[digest...
[ "def", "digested_line", "(", "line", ",", "digest_types", ")", ":", "digested_line", "=", "[", "]", "for", "i", ",", "ele", "in", "enumerate", "(", "line", ")", ":", "try", ":", "digest_key", "=", "digest_types", "[", "i", "]", "except", "IndexError", ...
Returns list of digested values in line
[ "Returns", "list", "of", "digested", "values", "in", "line" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/__csv.py#L88-L107
236,474
manns/pyspread
pyspread/src/lib/__csv.py
csv_digest_gen
def csv_digest_gen(filepath, dialect, has_header, digest_types): """Generator of digested values from csv file in filepath Parameters ---------- filepath:String \tFile path of csv file to read dialect: Object \tCsv dialect digest_types: tuple of types \tTypes of data for each col ...
python
def csv_digest_gen(filepath, dialect, has_header, digest_types): """Generator of digested values from csv file in filepath Parameters ---------- filepath:String \tFile path of csv file to read dialect: Object \tCsv dialect digest_types: tuple of types \tTypes of data for each col ...
[ "def", "csv_digest_gen", "(", "filepath", ",", "dialect", ",", "has_header", ",", "digest_types", ")", ":", "with", "open", "(", "filepath", ",", "\"rb\"", ")", "as", "csvfile", ":", "csvreader", "=", "csv", ".", "reader", "(", "csvfile", ",", "dialect", ...
Generator of digested values from csv file in filepath Parameters ---------- filepath:String \tFile path of csv file to read dialect: Object \tCsv dialect digest_types: tuple of types \tTypes of data for each col
[ "Generator", "of", "digested", "values", "from", "csv", "file", "in", "filepath" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/__csv.py#L110-L133
236,475
manns/pyspread
pyspread/src/lib/__csv.py
cell_key_val_gen
def cell_key_val_gen(iterable, shape, topleft=(0, 0)): """Generator of row, col, value tuple from iterable of iterables it: Iterable of iterables \tMatrix that shall be mapped on target grid shape: Tuple of Integer \tShape of target grid topleft: 2-tuple of Integer \tTop left cell for inser...
python
def cell_key_val_gen(iterable, shape, topleft=(0, 0)): """Generator of row, col, value tuple from iterable of iterables it: Iterable of iterables \tMatrix that shall be mapped on target grid shape: Tuple of Integer \tShape of target grid topleft: 2-tuple of Integer \tTop left cell for inser...
[ "def", "cell_key_val_gen", "(", "iterable", ",", "shape", ",", "topleft", "=", "(", "0", ",", "0", ")", ")", ":", "top", ",", "left", "=", "topleft", "for", "__row", ",", "line", "in", "enumerate", "(", "iterable", ")", ":", "row", "=", "top", "+",...
Generator of row, col, value tuple from iterable of iterables it: Iterable of iterables \tMatrix that shall be mapped on target grid shape: Tuple of Integer \tShape of target grid topleft: 2-tuple of Integer \tTop left cell for insertion of it
[ "Generator", "of", "row", "col", "value", "tuple", "from", "iterable", "of", "iterables" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/__csv.py#L136-L160
236,476
manns/pyspread
pyspread/src/lib/__csv.py
encode_gen
def encode_gen(line, encoding="utf-8"): """Encodes all Unicode strings in line to encoding Parameters ---------- line: Iterable of Unicode strings \tDate to be encoded encoding: String, defaults to "utf-8" \tTarget encoding """ for ele in line: if isinstance(ele, types.Uni...
python
def encode_gen(line, encoding="utf-8"): """Encodes all Unicode strings in line to encoding Parameters ---------- line: Iterable of Unicode strings \tDate to be encoded encoding: String, defaults to "utf-8" \tTarget encoding """ for ele in line: if isinstance(ele, types.Uni...
[ "def", "encode_gen", "(", "line", ",", "encoding", "=", "\"utf-8\"", ")", ":", "for", "ele", "in", "line", ":", "if", "isinstance", "(", "ele", ",", "types", ".", "UnicodeType", ")", ":", "yield", "ele", ".", "encode", "(", "encoding", ")", "else", "...
Encodes all Unicode strings in line to encoding Parameters ---------- line: Iterable of Unicode strings \tDate to be encoded encoding: String, defaults to "utf-8" \tTarget encoding
[ "Encodes", "all", "Unicode", "strings", "in", "line", "to", "encoding" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/__csv.py#L163-L179
236,477
manns/pyspread
pyspread/src/lib/__csv.py
CsvInterface._get_csv_cells_gen
def _get_csv_cells_gen(self, line): """Generator of values in a csv line""" digest_types = self.digest_types for j, value in enumerate(line): if self.first_line: digest_key = None digest = lambda x: x.decode(self.encoding) else: ...
python
def _get_csv_cells_gen(self, line): """Generator of values in a csv line""" digest_types = self.digest_types for j, value in enumerate(line): if self.first_line: digest_key = None digest = lambda x: x.decode(self.encoding) else: ...
[ "def", "_get_csv_cells_gen", "(", "self", ",", "line", ")", ":", "digest_types", "=", "self", ".", "digest_types", "for", "j", ",", "value", "in", "enumerate", "(", "line", ")", ":", "if", "self", ".", "first_line", ":", "digest_key", "=", "None", "diges...
Generator of values in a csv line
[ "Generator", "of", "values", "in", "a", "csv", "line" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/__csv.py#L402-L432
236,478
manns/pyspread
pyspread/src/lib/__csv.py
CsvInterface.write
def write(self, iterable): """Writes values from iterable into CSV file""" io_error_text = _("Error writing to file {filepath}.") io_error_text = io_error_text.format(filepath=self.path) try: with open(self.path, "wb") as csvfile: csv_writer = csv.writer(cs...
python
def write(self, iterable): """Writes values from iterable into CSV file""" io_error_text = _("Error writing to file {filepath}.") io_error_text = io_error_text.format(filepath=self.path) try: with open(self.path, "wb") as csvfile: csv_writer = csv.writer(cs...
[ "def", "write", "(", "self", ",", "iterable", ")", ":", "io_error_text", "=", "_", "(", "\"Error writing to file {filepath}.\"", ")", "io_error_text", "=", "io_error_text", ".", "format", "(", "filepath", "=", "self", ".", "path", ")", "try", ":", "with", "o...
Writes values from iterable into CSV file
[ "Writes", "values", "from", "iterable", "into", "CSV", "file" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/lib/__csv.py#L434-L459
236,479
manns/pyspread
pyspread/src/interfaces/xls.py
Xls._shape2xls
def _shape2xls(self, worksheets): """Writes shape to xls file Format: <rows>\t<cols>\t<tabs>\n """ __, __, tabs = self.code_array.shape if tabs > self.xls_max_tabs: tabs = self.xls_max_tabs for tab in xrange(tabs): worksheet = self.workbook.ad...
python
def _shape2xls(self, worksheets): """Writes shape to xls file Format: <rows>\t<cols>\t<tabs>\n """ __, __, tabs = self.code_array.shape if tabs > self.xls_max_tabs: tabs = self.xls_max_tabs for tab in xrange(tabs): worksheet = self.workbook.ad...
[ "def", "_shape2xls", "(", "self", ",", "worksheets", ")", ":", "__", ",", "__", ",", "tabs", "=", "self", ".", "code_array", ".", "shape", "if", "tabs", ">", "self", ".", "xls_max_tabs", ":", "tabs", "=", "self", ".", "xls_max_tabs", "for", "tab", "i...
Writes shape to xls file Format: <rows>\t<cols>\t<tabs>\n
[ "Writes", "shape", "to", "xls", "file" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/xls.py#L121-L135
236,480
manns/pyspread
pyspread/src/interfaces/xls.py
Xls._code2xls
def _code2xls(self, worksheets): """Writes code to xls file Format: <row>\t<col>\t<tab>\t<code>\n """ code_array = self.code_array xls_max_shape = self.xls_max_rows, self.xls_max_cols, self.xls_max_tabs for key in code_array: if all(kele < mele for kele, ...
python
def _code2xls(self, worksheets): """Writes code to xls file Format: <row>\t<col>\t<tab>\t<code>\n """ code_array = self.code_array xls_max_shape = self.xls_max_rows, self.xls_max_cols, self.xls_max_tabs for key in code_array: if all(kele < mele for kele, ...
[ "def", "_code2xls", "(", "self", ",", "worksheets", ")", ":", "code_array", "=", "self", ".", "code_array", "xls_max_shape", "=", "self", ".", "xls_max_rows", ",", "self", ".", "xls_max_cols", ",", "self", ".", "xls_max_tabs", "for", "key", "in", "code_array...
Writes code to xls file Format: <row>\t<col>\t<tab>\t<code>\n
[ "Writes", "code", "to", "xls", "file" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/xls.py#L150-L203
236,481
manns/pyspread
pyspread/src/interfaces/xls.py
Xls._xls2code
def _xls2code(self, worksheet, tab): """Updates code in xls code_array""" def xlrddate2datetime(xlrd_date): """Returns datetime from xlrd_date""" try: xldate_tuple = xlrd.xldate_as_tuple(xlrd_date, self.workboo...
python
def _xls2code(self, worksheet, tab): """Updates code in xls code_array""" def xlrddate2datetime(xlrd_date): """Returns datetime from xlrd_date""" try: xldate_tuple = xlrd.xldate_as_tuple(xlrd_date, self.workboo...
[ "def", "_xls2code", "(", "self", ",", "worksheet", ",", "tab", ")", ":", "def", "xlrddate2datetime", "(", "xlrd_date", ")", ":", "\"\"\"Returns datetime from xlrd_date\"\"\"", "try", ":", "xldate_tuple", "=", "xlrd", ".", "xldate_as_tuple", "(", "xlrd_date", ",", ...
Updates code in xls code_array
[ "Updates", "code", "in", "xls", "code_array" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/xls.py#L205-L236
236,482
manns/pyspread
pyspread/src/interfaces/xls.py
Xls._get_font
def _get_font(self, pys_style): """Returns xlwt.Font for pyspread style""" # Return None if there is no font if "textfont" not in pys_style: return font = xlwt.Font() font.name = pys_style["textfont"] if "pointsize" in pys_style: font.height = ...
python
def _get_font(self, pys_style): """Returns xlwt.Font for pyspread style""" # Return None if there is no font if "textfont" not in pys_style: return font = xlwt.Font() font.name = pys_style["textfont"] if "pointsize" in pys_style: font.height = ...
[ "def", "_get_font", "(", "self", ",", "pys_style", ")", ":", "# Return None if there is no font", "if", "\"textfont\"", "not", "in", "pys_style", ":", "return", "font", "=", "xlwt", ".", "Font", "(", ")", "font", ".", "name", "=", "pys_style", "[", "\"textfo...
Returns xlwt.Font for pyspread style
[ "Returns", "xlwt", ".", "Font", "for", "pyspread", "style" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/xls.py#L238-L269
236,483
manns/pyspread
pyspread/src/interfaces/xls.py
Xls._get_alignment
def _get_alignment(self, pys_style): """Returns xlwt.Alignment for pyspread style""" # Return None if there is no alignment alignment_styles = ["justification", "vertical_align", "angle"] if not any(astyle in pys_style for astyle in alignment_styles): return def ang...
python
def _get_alignment(self, pys_style): """Returns xlwt.Alignment for pyspread style""" # Return None if there is no alignment alignment_styles = ["justification", "vertical_align", "angle"] if not any(astyle in pys_style for astyle in alignment_styles): return def ang...
[ "def", "_get_alignment", "(", "self", ",", "pys_style", ")", ":", "# Return None if there is no alignment", "alignment_styles", "=", "[", "\"justification\"", ",", "\"vertical_align\"", ",", "\"angle\"", "]", "if", "not", "any", "(", "astyle", "in", "pys_style", "fo...
Returns xlwt.Alignment for pyspread style
[ "Returns", "xlwt", ".", "Alignment", "for", "pyspread", "style" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/xls.py#L271-L324
236,484
manns/pyspread
pyspread/src/interfaces/xls.py
Xls._get_pattern
def _get_pattern(self, pys_style): """Returns xlwt.pattern for pyspread style""" # Return None if there is no bgcolor if "bgcolor" not in pys_style: return pattern = xlwt.Pattern() pattern.pattern = xlwt.Pattern.SOLID_PATTERN bgcolor = wx.Colour() b...
python
def _get_pattern(self, pys_style): """Returns xlwt.pattern for pyspread style""" # Return None if there is no bgcolor if "bgcolor" not in pys_style: return pattern = xlwt.Pattern() pattern.pattern = xlwt.Pattern.SOLID_PATTERN bgcolor = wx.Colour() b...
[ "def", "_get_pattern", "(", "self", ",", "pys_style", ")", ":", "# Return None if there is no bgcolor", "if", "\"bgcolor\"", "not", "in", "pys_style", ":", "return", "pattern", "=", "xlwt", ".", "Pattern", "(", ")", "pattern", ".", "pattern", "=", "xlwt", ".",...
Returns xlwt.pattern for pyspread style
[ "Returns", "xlwt", ".", "pattern", "for", "pyspread", "style" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/xls.py#L326-L340
236,485
manns/pyspread
pyspread/src/interfaces/xls.py
Xls._get_borders
def _get_borders(self, pys_style, pys_style_above, pys_style_left): """Returns xlwt.Borders for pyspread style""" # Return None if there is no border key border_keys = [ "borderwidth_right", "borderwidth_bottom", "bordercolor_right", "bordercolor_...
python
def _get_borders(self, pys_style, pys_style_above, pys_style_left): """Returns xlwt.Borders for pyspread style""" # Return None if there is no border key border_keys = [ "borderwidth_right", "borderwidth_bottom", "bordercolor_right", "bordercolor_...
[ "def", "_get_borders", "(", "self", ",", "pys_style", ",", "pys_style_above", ",", "pys_style_left", ")", ":", "# Return None if there is no border key", "border_keys", "=", "[", "\"borderwidth_right\"", ",", "\"borderwidth_bottom\"", ",", "\"bordercolor_right\"", ",", "\...
Returns xlwt.Borders for pyspread style
[ "Returns", "xlwt", ".", "Borders", "for", "pyspread", "style" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/xls.py#L342-L512
236,486
manns/pyspread
pyspread/src/interfaces/xls.py
Xls._get_xfstyle
def _get_xfstyle(self, worksheets, key): """Gets XFStyle for cell key""" row, col, tab = key dict_grid = self.code_array.dict_grid dict_grid.cell_attributes._update_table_cache() pys_style = dict_grid.cell_attributes[key] pys_style_above = dict_grid.cell_attributes[row ...
python
def _get_xfstyle(self, worksheets, key): """Gets XFStyle for cell key""" row, col, tab = key dict_grid = self.code_array.dict_grid dict_grid.cell_attributes._update_table_cache() pys_style = dict_grid.cell_attributes[key] pys_style_above = dict_grid.cell_attributes[row ...
[ "def", "_get_xfstyle", "(", "self", ",", "worksheets", ",", "key", ")", ":", "row", ",", "col", ",", "tab", "=", "key", "dict_grid", "=", "self", ".", "code_array", ".", "dict_grid", "dict_grid", ".", "cell_attributes", ".", "_update_table_cache", "(", ")"...
Gets XFStyle for cell key
[ "Gets", "XFStyle", "for", "cell", "key" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/xls.py#L514-L555
236,487
manns/pyspread
pyspread/src/interfaces/xls.py
Xls._cell_attribute_append
def _cell_attribute_append(self, selection, tab, attributes): """Appends to cell_attributes with checks""" cell_attributes = self.code_array.cell_attributes thick_bottom_cells = [] thick_right_cells = [] # Does any cell in selection.cells have a larger bottom border? ...
python
def _cell_attribute_append(self, selection, tab, attributes): """Appends to cell_attributes with checks""" cell_attributes = self.code_array.cell_attributes thick_bottom_cells = [] thick_right_cells = [] # Does any cell in selection.cells have a larger bottom border? ...
[ "def", "_cell_attribute_append", "(", "self", ",", "selection", ",", "tab", ",", "attributes", ")", ":", "cell_attributes", "=", "self", ".", "code_array", ".", "cell_attributes", "thick_bottom_cells", "=", "[", "]", "thick_right_cells", "=", "[", "]", "# Does a...
Appends to cell_attributes with checks
[ "Appends", "to", "cell_attributes", "with", "checks" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/xls.py#L557-L602
236,488
manns/pyspread
pyspread/src/interfaces/xls.py
Xls._row_heights2xls
def _row_heights2xls(self, worksheets): """Writes row_heights to xls file Format: <row>\t<tab>\t<value>\n """ xls_max_rows, xls_max_tabs = self.xls_max_rows, self.xls_max_tabs dict_grid = self.code_array.dict_grid for row, tab in dict_grid.row_heights: if...
python
def _row_heights2xls(self, worksheets): """Writes row_heights to xls file Format: <row>\t<tab>\t<value>\n """ xls_max_rows, xls_max_tabs = self.xls_max_rows, self.xls_max_tabs dict_grid = self.code_array.dict_grid for row, tab in dict_grid.row_heights: if...
[ "def", "_row_heights2xls", "(", "self", ",", "worksheets", ")", ":", "xls_max_rows", ",", "xls_max_tabs", "=", "self", ".", "xls_max_rows", ",", "self", ".", "xls_max_tabs", "dict_grid", "=", "self", ".", "code_array", ".", "dict_grid", "for", "row", ",", "t...
Writes row_heights to xls file Format: <row>\t<tab>\t<value>\n
[ "Writes", "row_heights", "to", "xls", "file" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/xls.py#L770-L788
236,489
manns/pyspread
pyspread/src/interfaces/xls.py
Xls.pys_width2xls_width
def pys_width2xls_width(self, pys_width): """Returns xls width from given pyspread width""" width_0 = get_default_text_extent("0")[0] # Scale relative to 12 point font instead of 10 point width_0_char = pys_width * 1.2 / width_0 return int(width_0_char * 256.0)
python
def pys_width2xls_width(self, pys_width): """Returns xls width from given pyspread width""" width_0 = get_default_text_extent("0")[0] # Scale relative to 12 point font instead of 10 point width_0_char = pys_width * 1.2 / width_0 return int(width_0_char * 256.0)
[ "def", "pys_width2xls_width", "(", "self", ",", "pys_width", ")", ":", "width_0", "=", "get_default_text_extent", "(", "\"0\"", ")", "[", "0", "]", "# Scale relative to 12 point font instead of 10 point", "width_0_char", "=", "pys_width", "*", "1.2", "/", "width_0", ...
Returns xls width from given pyspread width
[ "Returns", "xls", "width", "from", "given", "pyspread", "width" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/xls.py#L804-L810
236,490
manns/pyspread
pyspread/src/interfaces/xls.py
Xls._col_widths2xls
def _col_widths2xls(self, worksheets): """Writes col_widths to xls file Format: <col>\t<tab>\t<value>\n """ xls_max_cols, xls_max_tabs = self.xls_max_cols, self.xls_max_tabs dict_grid = self.code_array.dict_grid for col, tab in dict_grid.col_widths: if co...
python
def _col_widths2xls(self, worksheets): """Writes col_widths to xls file Format: <col>\t<tab>\t<value>\n """ xls_max_cols, xls_max_tabs = self.xls_max_cols, self.xls_max_tabs dict_grid = self.code_array.dict_grid for col, tab in dict_grid.col_widths: if co...
[ "def", "_col_widths2xls", "(", "self", ",", "worksheets", ")", ":", "xls_max_cols", ",", "xls_max_tabs", "=", "self", ".", "xls_max_cols", ",", "self", ".", "xls_max_tabs", "dict_grid", "=", "self", ".", "code_array", ".", "dict_grid", "for", "col", ",", "ta...
Writes col_widths to xls file Format: <col>\t<tab>\t<value>\n
[ "Writes", "col_widths", "to", "xls", "file" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/xls.py#L820-L835
236,491
manns/pyspread
pyspread/src/interfaces/xls.py
Xls.from_code_array
def from_code_array(self): """Returns xls workbook object with everything from code_array""" worksheets = [] self._shape2xls(worksheets) self._code2xls(worksheets) self._row_heights2xls(worksheets) self._col_widths2xls(worksheets) return self.workbook
python
def from_code_array(self): """Returns xls workbook object with everything from code_array""" worksheets = [] self._shape2xls(worksheets) self._code2xls(worksheets) self._row_heights2xls(worksheets) self._col_widths2xls(worksheets) return self.workbook
[ "def", "from_code_array", "(", "self", ")", ":", "worksheets", "=", "[", "]", "self", ".", "_shape2xls", "(", "worksheets", ")", "self", ".", "_code2xls", "(", "worksheets", ")", "self", ".", "_row_heights2xls", "(", "worksheets", ")", "self", ".", "_col_w...
Returns xls workbook object with everything from code_array
[ "Returns", "xls", "workbook", "object", "with", "everything", "from", "code_array" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/xls.py#L852-L863
236,492
manns/pyspread
pyspread/src/interfaces/xls.py
Xls.to_code_array
def to_code_array(self): """Replaces everything in code_array from xls_file""" self._xls2shape() worksheets = self.workbook.sheet_names() for tab, worksheet_name in enumerate(worksheets): worksheet = self.workbook.sheet_by_name(worksheet_name) self._xls2code(wo...
python
def to_code_array(self): """Replaces everything in code_array from xls_file""" self._xls2shape() worksheets = self.workbook.sheet_names() for tab, worksheet_name in enumerate(worksheets): worksheet = self.workbook.sheet_by_name(worksheet_name) self._xls2code(wo...
[ "def", "to_code_array", "(", "self", ")", ":", "self", ".", "_xls2shape", "(", ")", "worksheets", "=", "self", ".", "workbook", ".", "sheet_names", "(", ")", "for", "tab", ",", "worksheet_name", "in", "enumerate", "(", "worksheets", ")", ":", "worksheet", ...
Replaces everything in code_array from xls_file
[ "Replaces", "everything", "in", "code_array", "from", "xls_file" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/xls.py#L865-L877
236,493
manns/pyspread
pyspread/src/interfaces/pys.py
Pys._split_tidy
def _split_tidy(self, string, maxsplit=None): """Rstrips string for \n and splits string for \t""" if maxsplit is None: return string.rstrip("\n").split("\t") else: return string.rstrip("\n").split("\t", maxsplit)
python
def _split_tidy(self, string, maxsplit=None): """Rstrips string for \n and splits string for \t""" if maxsplit is None: return string.rstrip("\n").split("\t") else: return string.rstrip("\n").split("\t", maxsplit)
[ "def", "_split_tidy", "(", "self", ",", "string", ",", "maxsplit", "=", "None", ")", ":", "if", "maxsplit", "is", "None", ":", "return", "string", ".", "rstrip", "(", "\"\\n\"", ")", ".", "split", "(", "\"\\t\"", ")", "else", ":", "return", "string", ...
Rstrips string for \n and splits string for \t
[ "Rstrips", "string", "for", "\\", "n", "and", "splits", "string", "for", "\\", "t" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/pys.py#L107-L113
236,494
manns/pyspread
pyspread/src/interfaces/pys.py
Pys._pys_assert_version
def _pys_assert_version(self, line): """Asserts pys file version""" if float(line.strip()) > 1.0: # Abort if file version not supported msg = _("File version {version} unsupported (>1.0).").format( version=line.strip()) raise ValueError(msg)
python
def _pys_assert_version(self, line): """Asserts pys file version""" if float(line.strip()) > 1.0: # Abort if file version not supported msg = _("File version {version} unsupported (>1.0).").format( version=line.strip()) raise ValueError(msg)
[ "def", "_pys_assert_version", "(", "self", ",", "line", ")", ":", "if", "float", "(", "line", ".", "strip", "(", ")", ")", ">", "1.0", ":", "# Abort if file version not supported", "msg", "=", "_", "(", "\"File version {version} unsupported (>1.0).\"", ")", ".",...
Asserts pys file version
[ "Asserts", "pys", "file", "version" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/pys.py#L120-L127
236,495
manns/pyspread
pyspread/src/interfaces/pys.py
Pys._shape2pys
def _shape2pys(self): """Writes shape to pys file Format: <rows>\t<cols>\t<tabs>\n """ shape_line = u"\t".join(map(unicode, self.code_array.shape)) + u"\n" self.pys_file.write(shape_line)
python
def _shape2pys(self): """Writes shape to pys file Format: <rows>\t<cols>\t<tabs>\n """ shape_line = u"\t".join(map(unicode, self.code_array.shape)) + u"\n" self.pys_file.write(shape_line)
[ "def", "_shape2pys", "(", "self", ")", ":", "shape_line", "=", "u\"\\t\"", ".", "join", "(", "map", "(", "unicode", ",", "self", ".", "code_array", ".", "shape", ")", ")", "+", "u\"\\n\"", "self", ".", "pys_file", ".", "write", "(", "shape_line", ")" ]
Writes shape to pys file Format: <rows>\t<cols>\t<tabs>\n
[ "Writes", "shape", "to", "pys", "file" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/pys.py#L138-L146
236,496
manns/pyspread
pyspread/src/interfaces/pys.py
Pys._code2pys
def _code2pys(self): """Writes code to pys file Format: <row>\t<col>\t<tab>\t<code>\n """ for key in self.code_array: key_str = u"\t".join(repr(ele) for ele in key) code_str = self.code_array(key) if code_str is not None: out_str = k...
python
def _code2pys(self): """Writes code to pys file Format: <row>\t<col>\t<tab>\t<code>\n """ for key in self.code_array: key_str = u"\t".join(repr(ele) for ele in key) code_str = self.code_array(key) if code_str is not None: out_str = k...
[ "def", "_code2pys", "(", "self", ")", ":", "for", "key", "in", "self", ".", "code_array", ":", "key_str", "=", "u\"\\t\"", ".", "join", "(", "repr", "(", "ele", ")", "for", "ele", "in", "key", ")", "code_str", "=", "self", ".", "code_array", "(", "...
Writes code to pys file Format: <row>\t<col>\t<tab>\t<code>\n
[ "Writes", "code", "to", "pys", "file" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/pys.py#L153-L166
236,497
manns/pyspread
pyspread/src/interfaces/pys.py
Pys._pys2code
def _pys2code(self, line): """Updates code in pys code_array""" row, col, tab, code = self._split_tidy(line, maxsplit=3) key = self._get_key(row, col, tab) self.code_array.dict_grid[key] = unicode(code, encoding='utf-8')
python
def _pys2code(self, line): """Updates code in pys code_array""" row, col, tab, code = self._split_tidy(line, maxsplit=3) key = self._get_key(row, col, tab) self.code_array.dict_grid[key] = unicode(code, encoding='utf-8')
[ "def", "_pys2code", "(", "self", ",", "line", ")", ":", "row", ",", "col", ",", "tab", ",", "code", "=", "self", ".", "_split_tidy", "(", "line", ",", "maxsplit", "=", "3", ")", "key", "=", "self", ".", "_get_key", "(", "row", ",", "col", ",", ...
Updates code in pys code_array
[ "Updates", "code", "in", "pys", "code_array" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/pys.py#L168-L174
236,498
manns/pyspread
pyspread/src/interfaces/pys.py
Pys._attributes2pys
def _attributes2pys(self): """Writes attributes to pys file Format: <selection[0]>\t[...]\t<tab>\t<key>\t<value>\t[...]\n """ # Remove doublettes purged_cell_attributes = [] purged_cell_attributes_keys = [] for selection, tab, attr_dict in self.code_arr...
python
def _attributes2pys(self): """Writes attributes to pys file Format: <selection[0]>\t[...]\t<tab>\t<key>\t<value>\t[...]\n """ # Remove doublettes purged_cell_attributes = [] purged_cell_attributes_keys = [] for selection, tab, attr_dict in self.code_arr...
[ "def", "_attributes2pys", "(", "self", ")", ":", "# Remove doublettes", "purged_cell_attributes", "=", "[", "]", "purged_cell_attributes_keys", "=", "[", "]", "for", "selection", ",", "tab", ",", "attr_dict", "in", "self", ".", "code_array", ".", "cell_attributes"...
Writes attributes to pys file Format: <selection[0]>\t[...]\t<tab>\t<key>\t<value>\t[...]\n
[ "Writes", "attributes", "to", "pys", "file" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/pys.py#L176-L211
236,499
manns/pyspread
pyspread/src/interfaces/pys.py
Pys._row_heights2pys
def _row_heights2pys(self): """Writes row_heights to pys file Format: <row>\t<tab>\t<value>\n """ for row, tab in self.code_array.dict_grid.row_heights: if row < self.code_array.shape[0] and \ tab < self.code_array.shape[2]: height = self.cod...
python
def _row_heights2pys(self): """Writes row_heights to pys file Format: <row>\t<tab>\t<value>\n """ for row, tab in self.code_array.dict_grid.row_heights: if row < self.code_array.shape[0] and \ tab < self.code_array.shape[2]: height = self.cod...
[ "def", "_row_heights2pys", "(", "self", ")", ":", "for", "row", ",", "tab", "in", "self", ".", "code_array", ".", "dict_grid", ".", "row_heights", ":", "if", "row", "<", "self", ".", "code_array", ".", "shape", "[", "0", "]", "and", "tab", "<", "self...
Writes row_heights to pys file Format: <row>\t<tab>\t<value>\n
[ "Writes", "row_heights", "to", "pys", "file" ]
0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0
https://github.com/manns/pyspread/blob/0e2fd44c2e0f06605efc3058c20a43a8c1f9e7e0/pyspread/src/interfaces/pys.py#L235-L247