Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ipython/ipython
/ functions
Functions
3,293 in github.com/ipython/ipython
⨍
Functions
3,293
◇
Types & classes
503
↳
Endpoints
20
Function
_type_pprint
The pprint for classes and types.
IPython/lib/pretty.py:667
Method
_type_printers_default
(self)
IPython/core/formatters.py:678
Function
_types_simplenamespace_pprint
The pprint function for types.SimpleNamespace.
IPython/lib/pretty.py:651
Method
_user_ns_changed
(self, change)
IPython/core/shellapp.py:188
Method
_validate_data
Validate the display data. Parameters ---------- data : dict The formata data dictionary. metadata : dict
IPython/core/displaypub.py:43
Method
_validate_editing_mode
(self, proposal)
IPython/terminal/interactiveshell.py:157
Method
act_mpl
(backend)
IPython/core/tests/test_pylabtools.py:156
Function
activate_matplotlib
Activate the given backend and set interactive to True.
IPython/core/pylabtools.py:306
Function
addError
(self, test, err, capt=None)
IPython/testing/iptest.py:90
Method
add_builtin
Add a builtin and save the original.
IPython/core/builtin_trap.py:53
Method
add_to_parser
Add this object's information to the parser.
IPython/core/magic_arguments.py:228
Method
add_to_parser
Add this object's information to the parser.
IPython/core/magic_arguments.py:259
Method
add_usage
(self, usage, actions, groups, prefix="::\n\n %")
IPython/core/magic_arguments.py:102
Method
address
(self)
IPython/testing/plugin/ipdoctest.py:593
Method
again
Move the seek pointer back one block and re-execute.
IPython/lib/demo.py:381
Method
alias
Define an alias for a system command. '%alias alias_name cmd' defines 'alias_name' as an alias for 'cmd' Then, typing 'alias_name pa
IPython/core/magics/osm.py:98
Method
alias_magic
Create an alias for an existing line or cell magic. Examples -------- :: In [1]: %alias_magic t timeit C
IPython/core/magics/basic.py:99
Method
aliases
(self)
IPython/core/alias.py:212
Method
all_ns_refs
Get a list of references to all the namespace dictionaries in which IPython might store a user-created object. Note that this
IPython/core/interactiveshell.py:1403
Method
allow_new_attr
Set whether new attributes can be created in this Struct. This can be used to catch typos by verifying that the attribute user tries
IPython/utils/ipstruct.py:265
Method
append_field
(bundle, title:str, key:str, formatter=None)
IPython/core/oinspect.py:593
Function
apply_wrapper
Apply a wrapper to a function for decoration. This mixes Michele Simionato's decorator tool with nose's make_decorator, to apply a wrapper in
IPython/testing/decorators.py:69
Function
arg_split
Split a command line's arguments in a shell-like manner. This is a modified version of the standard library's shlex.split() function, but wit
IPython/utils/_process_common.py:177
Function
as_hook
Wrap a pager func to strip the `self` arg so it can be called as a hook.
IPython/core/page.py:46
Function
as_unittest
Decorator to make a simple function into a normal test via unittest.
IPython/testing/decorators.py:57
Function
assemble
Assemble a block into multi-line sub-blocks.
IPython/core/tests/test_inputsplitter.py:53
Method
assert_completion
(**kwargs)
IPython/core/tests/test_completer.py:888
Method
assert_no_completion
(**kwargs)
IPython/core/tests/test_completer.py:880
Method
atexit_operations
This will be executed at the time of exit. Cleanup operations and saving of persistent data that is done unconditionally by IPython s
IPython/core/interactiveshell.py:3752
Function
atomic_writing
DEPRECATED: moved to notebook.services.contents.fileio
IPython/utils/io.py:214
Method
auto_rewrite_input
Overridden from the parent class to use fancy rewriting prompt
IPython/terminal/interactiveshell.py:617
Method
autoawait
Allow to change the status of the autoawait option. This allow you to set a specific asynchronous code runner. If no value
IPython/core/magics/basic.py:600
Method
autocall
Make functions callable without having to type parentheses. Usage: %autocall [mode] The mode can be one of: 0->Off, 1->S
IPython/core/magics/auto.py:64
Method
autoindent
Toggle autoindent on/off (deprecated)
IPython/terminal/magics.py:81
Method
automagic
Make magic functions callable without having to type the initial %. Without arguments toggles on/off (when off, you must call it as %
IPython/core/magics/auto.py:34
Method
average
(self)
IPython/core/magics/execution.py:90
Function
back_latex_name_matches
Match latex characters back to unicode name This does ``\\ℵ`` -> ``\\aleph`` Used on Python 3 only.
IPython/core/completer.py:919
Function
back_unicode_name_matches
u"""Match unicode characters back to unicode name This does ``☃`` -> ``\\snowman`` Note that snowman is not a valid python3 combining chara
IPython/core/completer.py:889
Method
banner
(self)
IPython/core/interactiveshell.py:979
Method
baz
Example: >>> ff2 = FooClass(3) Making a FooClass. >>> ff2.baz(3) True
IPython/testing/tests/test_decorators.py:131
Function
black_reformat_handler
(text_before_cursor)
IPython/terminal/interactiveshell.py:93
Method
bookmark
Manage IPython's bookmark system. %bookmark <name> - set bookmark to current dir %bookmark <name> <dir> - set bookmark to <dir>
IPython/core/magics/osm.py:739
Function
buffer_to_bytes
Cast a buffer object to bytes
IPython/utils/py3compat.py:36
Function
buildwheels
()
tools/toollib.py:23
Method
call
(self)
IPython/lib/backgroundjobs.py:490
Function
call_doctest_bad
Check that we can still call the decorated functions. >>> doctest_bad(3,y=4) x: 3 y: 4 k: {}
IPython/testing/tests/test_decorators.py:73
Function
call_editor
(self, filename, line=0)
IPython/lib/editorhooks.py:47
Function
call_f
()
IPython/core/tests/refbug.py:44
Function
call_tip
DEPRECATED. Extract call tip data from an oinfo dict.
IPython/core/oinspect.py:235
Function
can_exit
Test that quit work in ipydb >>> old_trace = sys.gettrace() >>> def bar(): ... pass >>> with PdbTestInput([ ... 'exit',
IPython/core/tests/test_debugger.py:216
Function
can_quit
Test that quit work in ipydb >>> old_trace = sys.gettrace() >>> def bar(): ... pass >>> with PdbTestInput([ ... 'quit',
IPython/core/tests/test_debugger.py:192
Method
capture
run the cell, capturing stdout, stderr, and IPython's rich display() calls.
IPython/core/magics/execution.py:1456
Method
capture_exc
(*args, **kwargs)
IPython/core/tests/test_ultratb.py:373
Function
cast_bytes
(s, encoding=None)
IPython/utils/py3compat.py:31
Function
catch_corrupt_db
A decorator which wraps HistoryAccessor method calls to catch errors from a corrupt SQLite database, move the old database out of the way, and cre
IPython/core/history.py:78
Function
catch_format_error
show traceback on failed format call
IPython/core/formatters.py:221
Method
cb1
()
IPython/core/tests/test_events.py:37
Method
cb2
()
IPython/core/tests/test_events.py:40
Function
cd_completer
Completer function for cd, which only returns directories.
IPython/core/completerlib.py:298
Method
cell_foo
I am cell foo, not line foo
IPython/core/tests/test_magic.py:1022
Method
cellm
(line, cell)
IPython/core/tests/test_magic.py:808
Method
cellm3
(self, line, cell)
IPython/core/tests/test_magic.py:827
Method
cellm33
(self, line, cell)
IPython/core/tests/test_magic.py:839
Method
check
Inspect line_info and return a handler instance or None.
IPython/core/prefilter.py:388
Method
check
(self, line_info)
IPython/core/prefilter.py:414
Method
check
Instances of IPyAutocall in user_ns get autocalled immediately
IPython/core/prefilter.py:426
Method
check
Check to see if user is assigning to a var for the first time, in which case we want to avoid any sort of automagic / autocall games.
IPython/core/prefilter.py:440
Method
check
If the ifun is magic, and automagic is on, run it. Note: normal, non-auto magic would already have been triggered via '%' in check_es
IPython/core/prefilter.py:458
Method
check
If the 'rest' of the line begins with a function call or pretty much any python operator, we should simply execute the line (regardless of
IPython/core/prefilter.py:482
Method
check_complete
Return whether a block of code is ready to execute, or should be continued Parameters ---------- source : string Py
IPython/core/interactiveshell.py:3442
Function
check_exclusions_exist
()
IPython/testing/iptest.py:229
Function
check_latex_to_png_dvipng_fails_when_no_cmd
(command)
IPython/lib/tests/test_latextools.py:22
Function
check_linecache_ipython
Call linecache.checkcache() safely protecting our cached values.
IPython/core/compilerop.py:153
Function
check_make_token_by_line_never_ends_empty
Check that not sequence of single or double characters ends up leading to en empty list of tokens
IPython/core/tests/test_inputtransformer2.py:144
Method
check_match
(self, patterns, matches)
IPython/utils/tests/test_path.py:361
Method
check_module_contents
()
IPython/extensions/tests/test_autoreload.py:316
Function
check_pairs
Utility function for the common case of checking a function with a sequence of input/output pairs. Parameters ---------- func : calla
IPython/testing/tools.py:307
Function
check_pid
(pid)
IPython/utils/_process_posix.py:214
Function
check_pid
Check if a process with the given PID (pid) exists
IPython/utils/_process_cli.py:65
Function
check_pid
(pid)
IPython/utils/_process_win32.py:202
Method
check_stdin
(self)
IPython/terminal/pt_inputhooks/wx.py:69
Method
check_stdin
(self)
IPython/lib/inputhookwx.py:74
Method
checkers
Return a list of checkers, sorted by priority.
IPython/core/prefilter.py:184
Method
cleanup
(self)
IPython/sphinxext/ipython_directive.py:386
Method
cleanup
Make the non-accessible directory created in setup() accessible again, otherwise deleting the workingdir will fail.
IPython/testing/iptestcontroller.py:160
Method
clear_app_refs
DEPRECATED since IPython 5.0 Clear IPython's internal reference to an application instance. Whenever we create an app for a user on
IPython/lib/inputhook.py:188
Method
clear_err_state
Return the current error state and clear it
IPython/core/ultratb.py:1478
Function
clear_output
Clear the output of the current cell receiving output. Parameters ---------- wait : bool [default: false] Wait to clear the outpu
IPython/core/display.py:1455
Method
clear_output
(self, wait=False)
IPython/core/displaypub.py:134
Method
clear_payload
(self)
IPython/core/payload.py:54
Function
clipboard_get
Get text from the clipboard.
IPython/core/hooks.py:173
Function
clocks
clocks() -> floating point number Return the *SYSTEM* CPU time in seconds since the start of the process. This is done via a call to
IPython/utils/timing.py:35
Function
clocku
clocku() -> floating point number Return the *USER* CPU time in seconds since the start of the process. This is done via a call to re
IPython/utils/timing.py:26
Method
clone
(meth)
IPython/utils/io.py:36
Function
close
()
examples/IPython Kernel/gui/gui-glut.py:18
Method
closed
(self)
IPython/utils/io.py:80
Method
cls
Clear screen.
IPython/terminal/magics.py:200
Method
cmagic
A cell magic
IPython/core/tests/test_interactiveshell.py:355
Method
cmdloop
Repeatedly issue a prompt, accept input, parse an initial prefix off the received input, and dispatch to action methods, passing them
IPython/terminal/debugger.py:84
Method
code_formatter
(text)
IPython/core/oinspect.py:600
← previous
next →
1,601–1,700 of 3,293, ranked by callers