enums#

Collection of enums used throughout conda.

Classes#

Arch

Generic enumeration.

Platform

Generic enumeration.

FileMode

Generic enumeration.

LinkType

Generic enumeration.

PathType

Refers to if the file in question is hard linked or soft linked. Originally designed to be used

LeasedPathType

Generic enumeration.

PackageType

Generic enumeration.

NoarchType

Generic enumeration.

class Arch#

Bases: enum.Enum

Generic enumeration.

Derive from this class to define new enumerations.

x86 = 'x86'#
x86_64 = 'x86_64'#
arm64 = 'arm64'#
armv6l = 'armv6l'#
armv7l = 'armv7l'#
aarch64 = 'aarch64'#
ppc64 = 'ppc64'#
ppc64le = 'ppc64le'#
riscv64 = 'riscv64'#
s390x = 's390x'#
z = 'z'#
classmethod from_sys()#
__json__()#
class Platform#

Bases: enum.Enum

Generic enumeration.

Derive from this class to define new enumerations.

freebsd = 'freebsd'#
linux = 'linux'#
win = 'win32'#
openbsd = 'openbsd5'#
osx = 'darwin'#
zos = 'zos'#
classmethod from_sys()#
__json__()#
class FileMode#

Bases: enum.Enum

Generic enumeration.

Derive from this class to define new enumerations.

text = 'text'#
binary = 'binary'#
__str__()#

Return str(self).

class LinkType#

Bases: enum.Enum

Generic enumeration.

Derive from this class to define new enumerations.

copy = 3#
directory = 4#
__int__()#
__str__()#

Return str(self).

__json__()#
class PathType#

Bases: enum.Enum

Refers to if the file in question is hard linked or soft linked. Originally designed to be used in paths.json

directory = 'directory'#
linked_package_record = 'linked_package_record'#
pyc_file = 'pyc_file'#
unix_python_entry_point = 'unix_python_entry_point'#
windows_python_entry_point_script = 'windows_python_entry_point_script'#
windows_python_entry_point_exe = 'windows_python_entry_point_exe'#
basic_types()#
__str__()#

Return str(self).

__json__()#
class LeasedPathType#

Bases: enum.Enum

Generic enumeration.

Derive from this class to define new enumerations.

application_entry_point = 'application_entry_point'#
application_entry_point_windows_exe = 'application_entry_point_windows_exe'#
__str__()#

Return str(self).

__json__()#
class PackageType#

Bases: enum.Enum

Generic enumeration.

Derive from this class to define new enumerations.

NOARCH_GENERIC = 'noarch_generic'#
NOARCH_PYTHON = 'noarch_python'#
VIRTUAL_PRIVATE_ENV = 'virtual_private_env'#
VIRTUAL_PYTHON_WHEEL = 'virtual_python_wheel'#
VIRTUAL_PYTHON_EGG_MANAGEABLE = 'virtual_python_egg_manageable'#
VIRTUAL_PYTHON_EGG_UNMANAGEABLE = 'virtual_python_egg_unmanageable'#
VIRTUAL_SYSTEM = 'virtual_system'#
static conda_package_types()#
static unmanageable_package_types()#
class NoarchType#

Bases: enum.Enum

Generic enumeration.

Derive from this class to define new enumerations.

generic = 'generic'#
python = 'python'#
static coerce(val)#