syside.Scheme

class Scheme(*args, **kwds)

Bases: enum.Enum

none = 0

Indicates that no scheme is present

Unknown = 1

Indicates the scheme is not a well-known scheme

Ftp = 2

File Transfer Protocol (FTP)

FTP is a standard communication protocol used for the transfer of computer files from a server to a client on a computer network.

File = 3

File URI Scheme

The File URI Scheme is typically used to retrieve files from within one’s own computer.

Http = 4

The Hypertext Transfer Protocol URI Scheme

URLs of this type indicate a resource which is interacted with using the HTTP protocol.

Https = 5

The Secure Hypertext Transfer Protocol URI Scheme

URLs of this type indicate a resource which is interacted with using the Secure HTTP protocol.

Ws = 6

The WebSocket URI Scheme

URLs of this type indicate a resource which is interacted with using the WebSocket protocol.

Wss = 7

The Secure WebSocket URI Scheme

URLs of this type indicate a resource which is interacted with using the Secure WebSocket protocol.

classmethod __signature__()
__new__(value)
__repr__()
__str__()
__dir__()

Returns public methods and other interesting attributes.

__format__(format_spec)
__hash__()
__reduce_ex__(proto)
__deepcopy__(memo)
__copy__()
name()

The name of the Enum member.

value()

The value of the Enum member.