faq.xhtml   [plain text]


<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>The Twisted FAQ</title></head>
<body>
<h1>The Twisted FAQ</h1>


<h2>General</h2>

<h3>What is <q>Twisted</q>?</h3>

<p>Please see
<a href="http://twistedmatrix.com/products/twisted">Twisted</a>
</p>


<h3>Why should I use Twisted?</h3>

<p>See <a href="http://twistedmatrix.com/services/twisted-advantage">The
Twisted Advantage</a></p>

<h3>I have a problem <q>getting</q> Twisted.</h3>

<p>Did you check the HOWTO collection? There are so many documents there
that they might overwhelm you... try starting from the index, reading through
the overviews and seeing if there seems to be a chapter which explains what
you need to. You can try reading the PostScript or PDF formatted books,
inside the distribution. And, remember, the source will be with
you... always.</p>


<h3>Why is Twisted so big?</h3>

<p>Twisted is a lot of things, rolled into one big package. We're not sure if 
it'll stay this way, yet, but for now, if you have only specific needs, we
recommend grabbing the big Twisted tarball, and if you want, you can run the
'setup.py' script with a modified config file to generate a package with only
certain Twisted sub-packages. Twisted as a whole makes it into many operating 
system distributions (FreeBSD, Debian and Gentoo, at least) so size shouldn't
be an issue for the end developer or user. In addition, packaging Twisted
as a whole makes sure the end users do not have to worry about versioning
parts of Twisted and inter-version compatibility.</p>

<p>If you are distributing Twisted to end-users, you can base your distribution
on the <q>Nodocs</q> packages, which are signficantly smaller.</p>

<h3>But won't Twisted bloat my program, since it's so big?</h3>

<p>No. You only need to import the sub-packages which you want to use, meaning
only those will be loaded into memory. So if you write a low-level network
protocol, you'd only import twisted.internet, leaving out extraneous things
like twisted.web, etc. Twisted itself is very careful with internal
dependancies, so importing one subpackage is not likely to import the whole
twisted package.</p>

<h2>Stability</h2>

<h3>Does the 1.0 release mean that all of Twisted's APIs are stable?</h3>

<p>No, only specific parts of Twisted are stable, i.e. we only promise
backwards compatibility for some parts of Twisted. While these APIs may be
extended, they will not change in ways that break existing code that uses
them. </p>

<p>While other parts of Twisted are not stable, we will however do
our best to make sure that there is backwards compatibility for these parts
as well. In general, the more the module or package are used, and the closer they
are to being feature complete, the more we will concentrate on providing backwards
compatibility when API changes take place.</p>

<h3>Which parts of Twisted are stable?</h3>

<p>Only modules explictily marked as such can be considered stable. Semi-stable
modules may change, but not in a large way and some sort of backwards-compatibily
will probably be provided. If no comment about API stability is present, assume
the module is unstable.</p>

<p>In Twisted 1.1, <em>most of twisted.internet, .cred and
.application are completely stable</em> (excepting of course code
marked as deprecated).</p>

<p>But as always, the only accurate way of knowing a module's stability is reading
the module's docstrings.</p>

<h2>Installation</h2>

<h3>I run mktap (from site-packages/twisted/scripts/mktap.py)
and nothing happens!</h3>

<p>Don't run scripts out of <code>site-packages</code>.  The Windows
installer should install executable scripts to someplace like
<code>C:\Python22\scripts\</code>, *nix installers put them in
<code>$PREFIX/bin</code>, which should be in your $PATH.</p>

<h3>Why do the Debian packages for Alphas and Release Candidates have weird versions containing old version numbers?</h3>

<p>
An example: 1.0.6+1.0.7rc1-1
</p>

<p>

In Debian versioning, 1.0.7rc1 is <em>greater than</em> 1.0.7. This
means that if you install a package with Version: 1.0.7rc1, and then
that package gets a new version 1.0.7, apt will not upgrade it for
you, because 1.0.7 looks like an older version. So, we prefix the
previous version to the actual version. 1.0.6+1.0.7rc1 is <em>less
than</em> 1.0.7.

</p>

<h2>Core Twisted</h2>

<h3>How can I access self.factory from my Protocol's __init__?</h3>

<p>You can't.  A Protocol doesn't have a Factory when it is created.  Instead,
you should probably be doing that in your Protocol's
<code>connectionMade</code> method.</p>

<p>Similarly you shouldn't be doing <q>real</q> work, like connecting to
databases, in a Factory's <code>__init__</code> either.  Instead, do that in
<code>startFactory</code>.</p>

<p>See <a href="servers.xhtml">Writing Servers</a> and 
<a href="clients.xhtml">Writing Clients</a> for more details.</p>

<h3>Where can I find out how to write Twisted servers?</h3>

<p>Try <a href="servers.xhtml">Writing Servers</a>.</p> 


<h3>When I try to install my reactor, I get errors about a reactor
already being installed. What gives?</h3>

<p>Here's the rule - installing a reactor should always be the
<strong>first</strong> thing you do, and I do mean first. Importing other stuff
before you install the reactor can break your code.</p>

<p>Tkinter and wxPython support, as they do not install a new reactor, can be
done at any point, IIRC.</p>

<h3><code>twistd</code> won't load my <code>.tap</code> file! What's this
Ephemeral nonsense?</h3>

<p>When the pickled application state cannot be loaded for some reason, it
is common to get a rather opaque error like so:</p>

<pre class="shell">
% twistd -f test2.tap 

Failed to load application: global name 'initRun' is not defined
</pre>

<p>The rest of the error will try to explain how to solve this problem,
but a short comment first: this error is indeed terse -- but there is
probably more data available elsewhere -- namely, the <code>twistd.log</code>
file. Open it up to see the full exception.</p>

<p>The error might also look like this:</p>

<pre class="shell">
Failed to load application: &lt;twisted.persisted.styles.Ephemeral instance at 
0x82450a4&gt; is not safe for unpickling
</pre>

<p>To load a <code>.tap</code> file, as with any unpickling operation, all
the classes used by all the objects inside it must be accessible at the time
of the reload. This may require the PYTHONPATH variable to have the same
directories as were available when the application was first pickled.</p>

<p>A common problem occurs in single-file programs which define a few
classes, then create instances of those classes for use in a server of some
sort. If the class is used directly, the name of the class will be recorded
in the <code>.tap</code> file as something like
<code>__main__.MyProtocol</code>. When the application is reloaded, it will
look for the class definition in <code>__main__</code>, which probably won't
have it. The unpickling routines need to know the module name, and therefore
the source file, from which the class definition can be loaded.</p>

<p>The way to fix this is to import the class from the same source file that
defines it: if your source file is called <code>myprogram.py</code> and
defines a class called <code>MyProtocol</code>, you will need to do a
<code>from myprogram import MyProtocol</code> before (and in the same
namespace as) the code that references the MyProtocol class. This makes it
important to write the module cleanly: doing an <code>import
myprogram</code> should only define classes, and should not cause any other
subroutines to get run. All the code that builds the Application and saves
it out to a <code>.tap</code> file must be inside an <code>if __name__ ==
'__main__'</code> clause to make sure it is not run twice (or more).</p>

<p>When you import the class from the module using an <q>external</q> name,
that name will be recorded in the pickled <code>.tap</code> file. When the
<code>.tap</code> is reloaded by <code>twistd</code>, it will look for
<code>myprogram.py</code> to provide the definition of
<code>MyProtocol</code>.</p>

<p>Here is a short example of this technique:</p>

<pre class="python">
# file dummy.py
from twisted.internet import protocol
class Dummy(protocol.Protocol): pass
if __name__ == '__main__':
    from twisted.application import service, internet
    a = service.Application("dummy")
    import dummy
    f = protocol.Factory()
    f.protocol = dummy.Dummy # Note! Not "Dummy"
    internet.TCPServer(2000, f).setServiceParent(service.IServiceCollect(a))
    a.save()
</pre>

<h3>I get <q>Interrupted system call</q> errors when I use <code
class="python">os.popen2</code>.  How do I read results from a sub-process in
Twisted?</h3>

<p>You should be using <code class="python">reactor.spawnProcess</code> (see
<code class="API"
base="twisted.internet">interfaces.IReactorProcess.spawnProcess</code>).
There's also a convenience function, <code class="API"
base="twisted.internet.utils">getProcessOutput</code>, in <code
class="API">twisted.internet.utils</code>.</p>


<h3>Why don't my spawnProcess programs see my environment variables?</h3>

<p><code class="API"
base="twisted.internet.interfaces.IReactorProcess">spawnProcess</code>
defaults to clearing the environment of child processes as a security
feature. You can either provide a dictionary with exactly the name-value
pairs you want the child to use, or you can simply pass in
<code>os.environ</code> to inherit the complete environment. </p>


<h3>My Deferred or DeferredList never fires, so my program just mysteriously
hangs!  What's wrong?</h3>

<p>It really depends on what your program is doing, but the most common cause
is this: it <em>is</em> firing -- but it's an error, not a success, and you
have forgotten to add an <a href="glossary.xhtml#errback">errback</a>, so
nothing happens.  Always add errbacks!</p>

<p>The reason this happens is that unhandled errors in Deferreds get printed
when the Deferred is garbage collected. Make sure your Deferred is garbage
collected by deleting all references to it when you are done with it, e.g.
after <code class="python">callback()</code> is called.</p> 


<h3>My exceptions and tracebacks aren't getting printed!</h3>

<p>See previous question.</p>


<h3>How do I use Deferreds to make my blocking code non-blocking?</h3><a name="deferreds-aren't-magic" />

<p>You don't.  Deferreds don't magically turn a blocking function call into a
non-blocking one.  A Deferred is just a simple object that represents a
<em>deferred result</em>, with methods to allow convenient adding of
callbacks.  (This is a common misunderstanding; suggestions on how to make this
clearer in the <a href="defer.xhtml">Deferred Execution</a> howto are
welcome!)</p>

<p>If you have blocking code that you want to use non-blockingly in Twisted,
either rewrite it to be non-blocking, or run it in a thread.  There is a
convenience function, <code class="API"
base="twisted.internet.threads">deferToThread</code>, to help you with the
threaded approach -- but be sure to read <a href="threading.xhtml">Using
Threads in Twisted</a>.</p>


<h3>I get <q>exceptions.ValueError: signal only works in main thread</q> when I
try to run my Twisted program!  What's wrong?</h3>

<p>The default reactor, by default, will install signal handlers to catch
events like Ctrl-C, SIGTERM, and so on.  However, you can't install signal
handlers from non-main threads in Python, which means that
<code>reactor.run()</code> will cause an
error.  Pass the <code>installSignalHandlers=0</code> keyword argument to
<code>reactor.run</code> (or <code>Application.run</code>) to work around
this.</p>


<h3>I'm trying to stop my program with <code>sys.exit()</code>, but Twisted
seems to catch it!  How do I exit my program?</h3>

<p>Use <code>reactor.stop()</code> instead.  This will cleanly shutdown the
reactor.</p>


<h3>How do I find out the IP address of the other end of my connection?</h3>

<p>The <code>.transport</code> object (which implements the <code class="API"
base="twisted.internet.interfaces">ITransport</code> interface) offers a pair
of methods named <code class="API"
base="twisted.internet.interfaces.ITransport">getPeer</code> and <code
class="API" base="twisted.internet.interfaces.ITransport">getHost</code>.
<code>getPeer</code> will give you a tuple that describes the address of the
system at the other end of the connection. For example:</p>

<pre class="python">
class MyProtocol(protocol.Protocol):
    def connectionMade(self):
        print "connection from", self.transport.getPeer()
</pre>


<h2>Web</h2>

<h3>Is the Twisted web server a toy?</h3>

<p>No. It is a production grade server. It is running continously on several
sites and has been proven quite stable. The server can take loads of up to 3000
users at a time and still keep churning several million requests a day, even on
low end hardware. It can serve static files or dynamically rendered pages.</p>

<h3>But can Twisted Web do PHP?</h3>

<p>Yes.  It works out-of-the-box, so long as you've got the standalone php
interpreter installed.
</p>

<h3>And can Twisted Web do virtual hosting?</h3>

<p>Can it ever!</p>

<p>You can decide to go with one big process for all of them, a front server
and a seperate server for each virtual host (for example, for permission
reasons), and you can even mix-and-match between Apache and Twisted (for
example, put Apache in the front and have Twisted handle some subset of the
virtual host).</p>

<h3>How do I use twisted.web to do complex things?</h3>

<p>See <a href="using-twistedweb.xhtml">the Twisted.Web Howto</a>.</p>

<h3>I've been using Woven since before it was called Woven.  I just upgraded
and now I'm getting a confusing traceback talking about INodeMutator. What
gives?</h3>

<p>You probably have code that's survived the upgrade from PyXML's
<code>minidom</code> to Twisted's <code>microdom</code>.  Try deleting any
<code>.pxp</code> files that you have lying around and the error will probably
go away.</p>

<h3>My Woven pages are sent to the browser with a trailing slash appended to the
URL, which breaks all of the relative links.  How do I get rid of the trailing
slash?</h3>

<p>If you are subclassing <code class="API"
base="twisted.web.woven.page">Page</code>, you can add a class attribute <code
class="python">addSlash = 0</code>, like this:</p>

<pre class="python">
class Foo(page.Page):
        addSlash = 0
</pre>

<p>If you are still subclassing <code class="API"
base="twisted.web.woven.controller">Controller</code>, you can put the <code
class="python">addSlash = 0</code> there. Consider subclassing <code class="API"
base="twisted.web.woven.page">Page</code> instead, as having a <code class="API"
base="twisted.web.woven.model">Model</code>, <code class="API"
base="twisted.web.woven.view">View</code>, <code class="API"
base="twisted.web.woven.controller">Controller</code> triad as the base of a
<code class="API" base="twisted.web.woven.page">Page</code> will be deprecated
in the near future.</p>

<p>If you're just using the generic <code class="API"
base="twisted.web.woven.page">Page</code> instance, you can set it after
creation like this:</p>

<pre class="python">
resource = page.Page("foo")
resource.addSlash = 0
</pre>

<p>The default behavior of Woven is now to automatically add a slash
because it makes creating relative links far easier, ironically ;-)</p>

<h3>Argh! When using Woven, my newlines get mangled inside a &lt;pre&gt;</h3>

<p>Use the <code>RawText</code> view.</p>


<h3>When trying to use Guard, I get infinite redirects to URLs with long
hexadecimal numbers. What's the deal?</h3>

<p>Are you using an RPY? Add a single line containing <code>cache()</code> as
the first line of your RPY.</p>

<p>An RPY file is executed every time it is accessed, so the call to <code
class="API" base="twisted.web.woven">guard.SessionWrapper</code> is executed
once per request, making a new SessionWrapper for each request. There should be
only one SessionWrapper object for your application. Caching the RPY file
enforces this.</p>

<h2>Perspective Broker</h2>

<h3>How can I get the reference to a client from a Perspective?</h3>

<p>Firstly, the client must send a reference when it connects to the
perspective broker. This can be done by passing the reference as a parameter to
<code class="API" base="twisted.spread">pb.connect</code>.</p>

<p>At the server end, you must override the <code base="twisted.spread.pb"
class="API">Perspective.attach</code>, which is called when a client attaches
to a perspective. The first argument of this method is a remote reference to
the client object that was passed to <code class="API"
base="twisted.spread">pb.connect</code>. </p>

<p>Note that a single perspective can have many attached clients. For further
information, see <a href="pclients.xhtml">Managing Clients of Perspectives</a>
HOWTO and the <code class="API">twisted.spread.pb</code> API docs.</p>


<h2>Requests and Contributing</h2>

<h3>Twisted is cool, but I need to add more functionality.</h3>

<p>Great! Read our the docs, and if you're feeling generous, contribute
patches.</p>

<h3>I have a patch. How do I maximize the chances the Twisted developers
will include it?</h3>

<p>Use unified diff. Either use <code class="shell">svn diff</code>
or, better yet, make a clean checkout and use <code class="shell">diff
-urN</code> between them. Make sure your patch applies cleanly. In
your post to the mailing list, make sure it is inlined and without any
word wrapping.</p>


<h3>And to whom do I send it?</h3>

<p>Add it to the <a href="http://twistedmatrix.com/bugs/">bug tracker</a>, and if it's an urgent or important issue you may want to tell the <a href="http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python">mailing list</a>. about the issue you added</p>


<h3>My company would love to use Twisted, but it's missing feature X, can you implement it?</h3>

<p>You have 3 options:</p>

<ul>
<li>Pay one of the Twisted developers to implement the feature.</li>
<li>Implement the feature yourself.</li>
<li>Add a feature request to our bug tracker. We will try to implement the
feature, but there are no guarantees when and if this will happen.</li>
</ul>


<h2>Documentation</h2>

<h3>Twisted really needs documentation for X, Y or Z - how come it's not documented?.</h3>

<p>We are doing the best we can, and there is documentation
in progress for many parts of Twisted. There is a limit to how much we
can do in our free time. See also the answer to the next question.</p>


<h3>Wow the Twisted documentation is nice! I want my docs to look like that
too!</h3>

<p>Now you can, with <code class="API">twisted.lore</code>. See the manual
page for <code class="shell">lore</code>. For
source format documentation, see <a href="policy/doc-standard.xhtml">the documentation
standard description</a>. For a more comprehensive explanation, see
<a href="lore.xhtml">the Lore HOWTO</a>.</p>


<h2>Communicating with us</h2>

<h3>There's a bug in Twisted. Where do I report it?</h3>

<p>Unless it is a show-stopper bug, we usually won't fix it if it's already
fixed in <a href="http://twistedmatrix.com/developers/cvs">Subversion</a>, so
you would do well to look there. Then send any pertinent information about the
bug (hopefully as much information needed to reproduce it: OS, Subversion
versions of any important files, Python version, code you wrote or things you
did to trigger the bug, etc.) to the <a
href="http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python">mailing
list</a>. If no one answers immediately, you should add it to the <a
href="http://twistedmatrix.com/bugs/">bug tracker</a>.</p>

<h3>Where do I go for help?</h3>

<p>Ask for help <a href="http://twistedmatrix.com/services/online-help">where
the Twisted team hangs out</a></p>


<h3>How do I e-mail a Twisted developer?</h3>

<p>First, note that in many cases this is the wrong thing to do: if
you have a question about a part of Twisted, it's usually better to
e-mail the mailing list. However, the preferred e-mail addresses for
all Twisted developers are listed in the file <q>CREDITS</q> in the
Subversion repository.</p>
</body>
</html>