API documentation¶
asyncio¶
The asyncio package, tracking PEP 3156.
- class asyncio.AbstractEventLoop[source]¶
Bases:
objectAbstract event loop.
- close()[source]¶
Close the loop.
The loop should not be running.
This is idempotent and irreversible.
No other methods should be called after this one.
- async connect_read_pipe(protocol_factory, pipe)[source]¶
Register read pipe in event loop. Set the pipe to non-blocking mode.
protocol_factory should instantiate object with Protocol interface. pipe is a file-like object. Return pair (transport, protocol), where transport supports the ReadTransport interface.
- async connect_write_pipe(protocol_factory, pipe)[source]¶
Register write pipe in event loop.
protocol_factory should instantiate object with BaseProtocol interface. Pipe is file-like object already switched to nonblocking. Return pair (transport, protocol), where transport support WriteTransport interface.
- async create_datagram_endpoint(protocol_factory, local_addr=None, remote_addr=None, *, family=0, proto=0, flags=0, reuse_address=None, reuse_port=None, allow_broadcast=None, sock=None)[source]¶
A coroutine which creates a datagram endpoint.
This method will try to establish the endpoint in the background. When successful, the coroutine returns a (transport, protocol) pair.
protocol_factory must be a callable returning a protocol instance.
socket family AF_INET, socket.AF_INET6 or socket.AF_UNIX depending on host (or family if specified), socket type SOCK_DGRAM.
reuse_address tells the kernel to reuse a local socket in TIME_WAIT state, without waiting for its natural timeout to expire. If not specified it will automatically be set to True on UNIX.
reuse_port tells the kernel to allow this endpoint to be bound to the same port as other existing endpoints are bound to, so long as they all set this flag when being created. This option is not supported on Windows and some UNIX’s. If the
SO_REUSEPORTconstant is not defined then this capability is unsupported.allow_broadcast tells the kernel to allow this endpoint to send messages to the broadcast address.
sock can optionally be specified in order to use a preexisting socket object.
- async create_server(protocol_factory, host=None, port=None, *, family=AddressFamily.AF_UNSPEC, flags=AddressInfo.AI_PASSIVE, sock=None, backlog=100, ssl=None, reuse_address=None, reuse_port=None, ssl_handshake_timeout=None, start_serving=True)[source]¶
A coroutine which creates a TCP server bound to host and port.
The return value is a Server object which can be used to stop the service.
If host is an empty string or None all interfaces are assumed and a list of multiple sockets will be returned (most likely one for IPv4 and another one for IPv6). The host parameter can also be a sequence (e.g. list) of hosts to bind to.
family can be set to either AF_INET or AF_INET6 to force the socket to use IPv4 or IPv6. If not set it will be determined from host (defaults to AF_UNSPEC).
flags is a bitmask for getaddrinfo().
sock can optionally be specified in order to use a preexisting socket object.
backlog is the maximum number of queued connections passed to listen() (defaults to 100).
ssl can be set to an SSLContext to enable SSL over the accepted connections.
reuse_address tells the kernel to reuse a local socket in TIME_WAIT state, without waiting for its natural timeout to expire. If not specified will automatically be set to True on UNIX.
reuse_port tells the kernel to allow this endpoint to be bound to the same port as other existing endpoints are bound to, so long as they all set this flag when being created. This option is not supported on Windows.
ssl_handshake_timeout is the time in seconds that an SSL server will wait for completion of the SSL handshake before aborting the connection. Default is 60s.
start_serving set to True (default) causes the created server to start accepting connections immediately. When set to False, the user should await Server.start_serving() or Server.serve_forever() to make the server to start accepting connections.
- async create_unix_server(protocol_factory, path=None, *, sock=None, backlog=100, ssl=None, ssl_handshake_timeout=None, start_serving=True)[source]¶
A coroutine which creates a UNIX Domain Socket server.
The return value is a Server object, which can be used to stop the service.
path is a str, representing a file system path to bind the server socket to.
sock can optionally be specified in order to use a preexisting socket object.
backlog is the maximum number of queued connections passed to listen() (defaults to 100).
ssl can be set to an SSLContext to enable SSL over the accepted connections.
ssl_handshake_timeout is the time in seconds that an SSL server will wait for the SSL handshake to complete (defaults to 60s).
start_serving set to True (default) causes the created server to start accepting connections immediately. When set to False, the user should await Server.start_serving() or Server.serve_forever() to make the server to start accepting connections.
- run_until_complete(future)[source]¶
Run the event loop until a Future is done.
Return the Future’s result, or raise its exception.
- async sendfile(transport, file, offset=0, count=None, *, fallback=True)[source]¶
Send a file through a transport.
Return an amount of sent bytes.
- asyncio.gather(*coros_or_futures, loop=None, return_exceptions=False)[source]¶
Return a future aggregating results from the given coroutines/futures.
Coroutines will be wrapped in a future and scheduled in the event loop. They will not necessarily be scheduled in the same order as passed in.
All futures must share the same event loop. If all the tasks are done successfully, the returned future’s result is the list of results (in the order of the original sequence, not necessarily the order of results arrival). If return_exceptions is True, exceptions in the tasks are treated the same as successful results, and gathered in the result list; otherwise, the first raised exception will be immediately propagated to the returned future.
Cancellation: if the outer Future is cancelled, all children (that have not completed yet) are also cancelled. If any child is cancelled, this is treated as if it raised CancelledError – the outer Future is not cancelled in this case. (This is to prevent the cancellation of one child to cause other children to be cancelled.)
If return_exceptions is False, cancelling gather() after it has been marked done won’t cancel any submitted awaitables. For instance, gather can be marked done after propagating an exception to the caller, therefore, calling
gather.cancel()after catching an exception (raised by one of the awaitables) from gather won’t cancel any other awaitables.
- asyncio.run(main, *, debug=None)[source]¶
Execute the coroutine and return the result.
This function runs the passed coroutine, taking care of managing the asyncio event loop and finalizing asynchronous generators.
This function cannot be called when another asyncio event loop is running in the same thread.
If debug is True, the event loop will be run in debug mode.
This function always creates a new event loop and closes it at the end. It should be used as a main entry point for asyncio programs, and should ideally only be called once.
Example:
- async def main():
await asyncio.sleep(1) print(‘hello’)
asyncio.run(main())
docutils¶
This is the Docutils (Python Documentation Utilities) package.
Package Structure¶
Modules:
__init__.py: Contains component base classes, exception classes, and Docutils version information.
core.py: Contains the
Publisherclass andpublish_*()convenience functions.frontend.py: Runtime settings (command-line interface, configuration files) processing, for Docutils front-ends.
io.py: Provides a uniform API for low-level input and output.
nodes.py: Docutils document tree (doctree) node class library.
statemachine.py: A finite state machine specialized for regular-expression-based text filters.
Subpackages:
languages: Language-specific mappings of terms.
parsers: Syntax-specific input parser modules or packages.
readers: Context-specific input handlers which understand the data source and manage a parser.
transforms: Modules used by readers and writers to modify DPS doctrees.
utils: Contains the
Reportersystem warning class and miscellaneous utilities used by readers, writers, and transforms.utils/urischemes.py: Contains a complete mapping of known URI addressing scheme names to descriptions.
utils/math: Contains functions for conversion of mathematical notation between different formats (LaTeX, MathML, text, …).
writers: Format-specific output translators.
- exception docutils.DataError[source]¶
Bases:
docutils.ApplicationError
- class docutils.Component[source]¶
Bases:
docutils.SettingsSpec,docutils.TransformSpecBase class for Docutils components.
- supports(format)[source]¶
Is format supported by this component?
To be used by transforms to ask the dependent component if it supports a certain input context or output format.
- component_type = None¶
Name of the component type (‘reader’, ‘parser’, ‘writer’). Override in subclasses.
- supported = ()¶
Names for this component. Override in subclasses.
- class docutils.SettingsSpec[source]¶
Bases:
objectRuntime setting specification base class.
SettingsSpec subclass objects used by docutils.frontend.OptionParser.
- config_section = None¶
The name of the config file section specific to this component (lowercase, no brackets). Override in subclasses.
- config_section_dependencies = None¶
A list of names of config file sections that are to be applied before config_section, in order (from general to specific). In other words, the settings in config_section are to be overlaid on top of the settings from these sections. The “general” section is assumed implicitly. Override in subclasses.
- relative_path_settings = ()¶
Settings containing filesystem paths. Override in subclasses. Settings listed here are to be interpreted relative to the current working directory.
- settings_default_overrides = None¶
A dictionary of auxiliary defaults, to override defaults for settings defined in other components. Override in subclasses.
- settings_defaults = None¶
A dictionary of defaults for settings not in settings_spec (internal settings, intended to be inaccessible by command-line and config file). Override in subclasses.
- settings_spec = ()¶
Runtime settings specification. Override in subclasses.
Defines runtime settings and associated command-line options, as used by docutils.frontend.OptionParser. This is a tuple of:
Option group title (string or None which implies no group, just a list of single options).
Description (string or None).
A sequence of option tuples. Each consists of:
Help text (string)
List of option strings (e.g.
['-Q', '--quux']).Dictionary of keyword arguments sent to the OptionParser/OptionGroup
add_optionmethod.Runtime setting names are derived implicitly from long option names (’–a-setting’ becomes
settings.a_setting) or explicitly from the ‘dest’ keyword argument.Most settings will also have a ‘validator’ keyword & function. The validator function validates setting values (from configuration files and command-line option arguments) and converts them to appropriate types. For example, the
docutils.frontend.validate_booleanfunction, required by all boolean settings, converts true values (‘1’, ‘on’, ‘yes’, and ‘true’) to 1 and false values (‘0’, ‘off’, ‘no’, ‘false’, and ‘’) to 0. Validators need only be set once per setting. See the docutils.frontend.validate_* functions.See the optparse docs for more details.
More triples of group title, description, options, as many times as needed. Thus, settings_spec tuples can be simply concatenated.
- class docutils.TransformSpec[source]¶
Bases:
objectRuntime transform specification base class.
TransformSpec subclass objects used by docutils.transforms.Transformer.
- unknown_reference_resolvers = ()¶
List of functions to try to resolve unknown references. Unknown references have a ‘refname’ attribute which doesn’t correspond to any target in the document. Called when the transforms in docutils.tranforms.references are unable to find a correct target. The list should contain functions which will try to resolve unknown references, with the following signature:
def reference_resolver(node): '''Returns boolean: true if resolved, false if not.'''
If the function is able to resolve the reference, it should also remove the ‘refname’ attribute and mark the node as resolved:
del node['refname'] node.resolved = 1
Each function must have a “priority” attribute which will affect the order the unknown_reference_resolvers are run:
reference_resolver.priority = 100
Override in subclasses.
- class docutils.VersionInfo(major=0, minor=0, micro=0, releaselevel='final', serial=0, release=True)[source]¶
Bases:
docutils.VersionInfo
- docutils.__version__ = '0.17.1'¶
Docutils version identifier (complies with PEP 440):
major.minor[.micro][releaselevel[serial]][.dev]
For version comparison operations, use __version_info__ (see, below) rather than parsing the text of __version__.
See ‘Version Numbering’ in docs/dev/policies.txt.
- docutils.__version_details__ = 'release'¶
Optional extra version details (e.g. ‘snapshot 2005-05-29, r3410’). (For development and release status see __version_info__.)