|
Let us walk on the 3-isogeny graph
|


Public Member Functions | |
| None | add_options (self) |
| int | run (self, Values options, List[str] args) |
| None | get_cache_dir (self, Values options, List[Any] args) |
| None | get_cache_info (self, Values options, List[Any] args) |
| None | list_cache_items (self, Values options, List[Any] args) |
| None | format_for_human (self, List[str] files) |
| None | format_for_abspath (self, List[str] files) |
| None | remove_cache_items (self, Values options, List[Any] args) |
| None | purge_cache (self, Values options, List[Any] args) |
Public Member Functions inherited from Command | |
| None | __init__ (self, str name, str summary, bool isolated=False) |
| None | handle_pip_version_check (self, Values options) |
| Tuple[Values, List[str]] | parse_args (self, List[str] args) |
| int | main (self, List[str] args) |
Public Member Functions inherited from CommandContextMixIn | |
| Generator[None, None, None] | main_context (self) |
| _T | enter_context (self, ContextManager[_T] context_provider) |
Data Fields | |
| cmd_opts | |
| get_cache_dir | |
| get_cache_info | |
| list_cache_items | |
| remove_cache_items | |
| purge_cache | |
Data Fields inherited from Command | |
| name | |
| summary | |
| parser | |
| cmd_opts | |
| tempdir_registry | |
| verbosity | |
Static Public Attributes | |
| bool | ignore_require_venv = True |
| str | usage |
Static Public Attributes inherited from Command | |
| str | usage = "" |
| bool | ignore_require_venv = False |
Protected Member Functions | |
| str | _cache_dir (self, Values options, str subdir) |
| List[str] | _find_http_files (self, Values options) |
| List[str] | _find_wheels (self, Values options, str pattern) |
Protected Member Functions inherited from Command | |
| int | _main (self, List[str] args) |
Additional Inherited Members | |
Protected Attributes inherited from CommandContextMixIn | |
| _in_main_context | |
| _main_context | |
Inspect and manage pip's wheel cache. Subcommands: - dir: Show the cache directory. - info: Show information about the cache. - list: List filenames of packages stored in the cache. - remove: Remove one or more package from the cache. - purge: Remove all items from the cache. ``<pattern>`` can be a glob expression or a package name.
|
protected |
Definition at line 194 of file cache.py.
References i.
Referenced by CacheCommand._find_http_files(), CacheCommand._find_wheels(), and CacheCommand.get_cache_info().

|
protected |
Definition at line 197 of file cache.py.
References CacheCommand._cache_dir(), and i.
Referenced by CacheCommand.get_cache_info(), and CacheCommand.remove_cache_items().


|
protected |
Definition at line 201 of file cache.py.
References CacheCommand._cache_dir(), and i.
Referenced by CacheCommand.get_cache_info(), CacheCommand.list_cache_items(), and CacheCommand.remove_cache_items().


| None add_options | ( | self | ) |
Reimplemented from Command.
Definition at line 39 of file cache.py.
References Command.cmd_opts, CacheCommand.cmd_opts, CompletionCommand.cmd_opts, ConfigurationCommand.cmd_opts, DebugCommand.cmd_opts, DownloadCommand.cmd_opts, FreezeCommand.cmd_opts, HashCommand.cmd_opts, IndexCommand.cmd_opts, InspectCommand.cmd_opts, InstallCommand.cmd_opts, ListCommand.cmd_opts, SearchCommand.cmd_opts, ShowCommand.cmd_opts, UninstallCommand.cmd_opts, WheelCommand.cmd_opts, and i.
| None format_for_abspath | ( | self, | |
| List[str] | files | ||
| ) |
Definition at line 153 of file cache.py.
References i.
Referenced by CacheCommand.list_cache_items().

| None format_for_human | ( | self, | |
| List[str] | files | ||
| ) |
Definition at line 140 of file cache.py.
References i.
Referenced by CacheCommand.list_cache_items().

| None get_cache_dir | ( | self, | |
| Values | options, | ||
| List[Any] | args | ||
| ) |
| None get_cache_info | ( | self, | |
| Values | options, | ||
| List[Any] | args | ||
| ) |
Definition at line 89 of file cache.py.
References CacheCommand._cache_dir(), CacheCommand._find_http_files(), CacheCommand._find_wheels(), and i.

| None list_cache_items | ( | self, | |
| Values | options, | ||
| List[Any] | args | ||
| ) |
Definition at line 125 of file cache.py.
References CacheCommand._find_wheels(), CacheCommand.format_for_abspath(), CacheCommand.format_for_human(), and i.

| None purge_cache | ( | self, | |
| Values | options, | ||
| List[Any] | args | ||
| ) |
Definition at line 188 of file cache.py.
References CacheCommand.remove_cache_items, and CacheCommand.remove_cache_items().

| None remove_cache_items | ( | self, | |
| Values | options, | ||
| List[Any] | args | ||
| ) |
Definition at line 163 of file cache.py.
References CacheCommand._find_http_files(), CacheCommand._find_wheels(), and i.
Referenced by CacheCommand.purge_cache().


| int run | ( | self, | |
| Values | options, | ||
| List[str] | args | ||
| ) |
Reimplemented from Command.
Definition at line 51 of file cache.py.
| cmd_opts |
Definition at line 49 of file cache.py.
Referenced by RequirementCommand.__init__(), CacheCommand.add_options(), CompletionCommand.add_options(), ConfigurationCommand.add_options(), DownloadCommand.add_options(), FreezeCommand.add_options(), HashCommand.add_options(), InspectCommand.add_options(), InstallCommand.add_options(), ListCommand.add_options(), SearchCommand.add_options(), ShowCommand.add_options(), UninstallCommand.add_options(), and WheelCommand.add_options().
| remove_cache_items |
Definition at line 56 of file cache.py.
Referenced by CacheCommand.purge_cache().
|
static |