gevent
– common functions¶The most common functions and classes are available in the
gevent
top level package.
Please read Introduction for an introduction to the concepts discussed here.
__version__
= '1.4.0'¶The human-readable PEP 440 version identifier.
Use pkg_resources.parse_version(__version__)
or
packaging.version.Version(__version__)
to get a machine-usable
value.
See also
See gevent.Greenlet
for more information about greenlet
objects.
spawn
(function, *args, **kwargs) → Greenlet¶Create a new Greenlet
object and schedule it to run function(*args, **kwargs)
.
This can be used as gevent.spawn
or Greenlet.spawn
.
The arguments are passed to Greenlet.__init__()
.
Changed in version 1.1b1: If a function is given that is not callable, immediately raise a TypeError
instead of spawning a greenlet that will raise an uncaught TypeError.
spawn_later
(seconds, function, *args, **kwargs) → Greenlet¶Create and return a new Greenlet
object scheduled to run function(*args, **kwargs)
in a future loop iteration seconds later. This can be used as Greenlet.spawn_later
or gevent.spawn_later
.
The arguments are passed to Greenlet.__init__()
.
Changed in version 1.1b1: If an argument that’s meant to be a function (the first argument in args, or the run
keyword )
is given to this classmethod (and not a classmethod of a subclass),
it is verified to be callable. Previously, the spawned greenlet would have failed
when it started running.
spawn_raw
(function, *args, **kwargs)[source]¶Create a new greenlet.greenlet
object and schedule it to
run function(*args, **kwargs)
.
This returns a raw greenlet
which does not have all the useful
methods that gevent.Greenlet
has. Typically, applications
should prefer spawn()
, but this method may
occasionally be useful as an optimization if there are many
greenlets involved.
Changed in version 1.1a3: Verify that function
is callable, raising a TypeError if not. Previously,
the spawned greenlet would have failed the first time it was switched to.
Changed in version 1.1b1: If function is not callable, immediately raise a TypeError
instead of spawning a greenlet that will raise an uncaught TypeError.
Changed in version 1.1rc2: Accept keyword arguments for function
as previously (incorrectly)
documented. Note that this may incur an additional expense.
Changed in version 1.3a2: Populate the spawning_greenlet
and spawn_tree_locals
attributes of the returned greenlet.
Changed in version 1.3b1: Only populate spawning_greenlet
and spawn_tree_locals
if GEVENT_TRACK_GREENLET_TREE
is enabled (the default). If not enabled,
those attributes will not be set.
getcurrent
()¶Return the currently executing greenlet (the one that called this
function). Note that this may be an instance of Greenlet
or greenlet.greenlet
.
kill
(greenlet, exception=GreenletExit)[source]¶Kill greenlet asynchronously. The current greenlet is not unscheduled.
Note
The method Greenlet.kill()
method does the same and
more (and the same caveats listed there apply here). However, the MAIN
greenlet - the one that exists initially - does not have a
kill()
method, and neither do any created with spawn_raw()
,
so you have to use this function.
Caution
Use care when killing greenlets. If they are not prepared for exceptions, this could result in corrupted state.
Changed in version 1.1a2: If the greenlet
has a kill
method, calls it. This prevents a
greenlet from being switched to for the first time after it’s been
killed but not yet executed.
killall
(greenlets, exception=GreenletExit, block=True, timeout=None)[source]¶Forceably terminate all the greenlets
by causing them to raise exception
.
Caution
Use care when killing greenlets. If they are not prepared for exceptions, this could result in corrupted state.
Parameters: |
|
---|---|
Raises: | Timeout – If blocking and a timeout is given that elapses before all the greenlets are dead. |
Changed in version 1.1a2: greenlets can be any iterable of greenlets, like an iterator or a set. Previously it had to be a list or tuple.
sleep
(seconds=0, ref=True)[source]¶Put the current greenlet to sleep for at least seconds.
seconds may be specified as an integer, or a float if fractional seconds are desired.
Tip
In the current implementation, a value of 0 (the default) means to yield execution to any other runnable greenlets, but this greenlet may be scheduled again before the event loop cycles (in an extreme case, a greenlet that repeatedly sleeps with 0 can prevent greenlets that are ready to do I/O from being scheduled for some (small) period of time); a value greater than 0, on the other hand, will delay running this greenlet until the next iteration of the loop.
If ref is False, the greenlet running sleep()
will not prevent gevent.wait()
from exiting.
Changed in version 1.3a1: Sleeping with a value of 0 will now be bounded to approximately block the
loop for no longer than gevent.getswitchinterval()
.
See also
idle
(priority=0)[source]¶Cause the calling greenlet to wait until the event loop is idle.
Idle is defined as having no other events of the same or higher priority pending. That is, as long as sockets, timeouts or even signals of the same or higher priority are being processed, the loop is not idle.
See also
getswitchinterval
() → current switch interval¶New in version 1.3.
setswitchinterval
(seconds)¶Set the approximate maximum amount of time that callback functions will be allowed to run before the event loop is cycled to poll for events. This prevents code that does things like the following from monopolizing the loop:
while True: # Burning CPU!
gevent.sleep(0) # But yield to other greenlets
Prior to this, this code could prevent the event loop from running.
On Python 3, this uses the native sys.setswitchinterval()
and sys.getswitchinterval()
.
New in version 1.3.
wait
(objects=None, timeout=None, count=None)¶Wait for objects
to become ready or for event loop to finish.
If objects
is provided, it must be a list containing objects
implementing the wait protocol (rawlink() and unlink() methods):
gevent.Greenlet
instancegevent.event.Event
instancegevent.lock.Semaphore
instancegevent.subprocess.Popen
instanceIf objects
is None
(the default), wait()
blocks until
the current event loop has nothing to do (or until timeout
passes):
If count
is None
(the default), wait for all objects
to become ready.
If count
is a number, wait for (up to) count
objects to become
ready. (For example, if count is 1
then the function exits
when any object in the list is ready).
If timeout
is provided, it specifies the maximum number of
seconds wait()
will block.
Returns the list of ready objects, in the order in which they were ready.
See also
iwait
(objects, timeout=None, count=None)¶Iteratively yield objects as they are ready, until all (or count) are ready or timeout expired.
If you will only be consuming a portion of the objects, you should
do so inside a with
block on this object to avoid leaking resources:
with gevent.iwait((a, b, c)) as it:
for i in it:
if i is a:
break
Parameters: |
|
---|
See also
Changed in version 1.1a1: Add the count parameter.
Changed in version 1.1a2: No longer raise LoopExit
if our caller switches greenlets
in between items yielded by this function.
Changed in version 1.4: Add support to use the returned object as a context manager.
joinall
(greenlets, timeout=None, raise_error=False, count=None)[source]¶Wait for the greenlets
to finish.
Parameters: |
|
---|---|
Returns: | A sequence of the greenlets that finished before the timeout (if any) expired. |
Note
These functions will only be available if os.fork()
is
available. In general, prefer to use gevent.os.fork()
instead
of manually calling these functions.
fork
(*args, **kwargs)[source]¶Forks a child process and starts a child watcher for it in the
parent process so that waitpid
and SIGCHLD work as expected.
This implementation of fork
is a wrapper for fork_and_watch()
when the environment variable GEVENT_NOWAITPID
is not defined.
This is the default and should be used by most applications.
Changed in version 1.1b2.
reinit
() → None[source]¶Prepare the gevent hub to run in a new (forked) process.
This should be called immediately after os.fork()
in the
child process. This is done automatically by
gevent.os.fork()
or if the os
module has been
monkey-patched. If this function is not called in a forked
process, symptoms may include hanging of functions like
socket.getaddrinfo()
, and the hub’s threadpool is unlikely
to work.
Note
Registered fork watchers may or may not run before
this function (and thus gevent.os.fork
) return. If they have
not run, they will run “soon”, after an iteration of the event loop.
You can force this by inserting a few small (but non-zero) calls to sleep()
after fork returns. (As of gevent 1.1 and before, fork watchers will
not have run, but this may change in the future.)
Note
This function may be removed in a future major release if the fork process can be more smoothly managed.
Warning
See remarks in gevent.os.fork()
about greenlets
and event loop watchers in the child process.
signal_handler
(signalnum, handler, *args, **kwargs)¶Call the handler with the args and kwargs when the process receives the signal signalnum.
The handler will be run in a new greenlet when the signal is delivered.
This returns an object with the useful method cancel
, which, when called,
will prevent future deliveries of signalnum from calling handler.
Note
This may not operate correctly with SIGCHLD if libev child watchers
are used (as they are by default with gevent.os.fork()
).
Changed in version 1.1b4: gevent.signal
is an alias for this function, included for
backwards compatibility; the new module gevent.signal
is replacing this name. This alias will be removed in a
future release.
Changed in version 1.2a1: The handler is required to be callable at construction time.
See class gevent.Timeout
for information about Timeout objects.
with_timeout
(seconds, function, *args, **kwds)[source]¶Wrap a call to function with a timeout; if the called function fails to return before the timeout, cancel it and return a flag value, provided by timeout_value keyword argument.
If timeout expires but timeout_value is not provided, raise Timeout
.
Keyword argument timeout_value is not passed to function.
Next page: Greenlet Objects