About 12,200 results
Open links in new tab
  1. Twisted

    Twisted makes it easy to implement custom network applications. Here's a TCP server that echoes back everything that's written to it:

  2. Configuring and Using the Twisted Web Server

    Twisted Web provides an abstraction of this browser-tracking behavior called the Session object . Calling request.getSession () checks to see if a session cookie has been set; if not, it creates a …

  3. Using Processes — Twisted 25.5.0 documentation

    Along with connection to servers across the internet, Twisted also connects to local processes with much the same API. The API is described in more detail in the documentation of:

  4. Using TLS in Twisted — Twisted 18.4.0 documentation

    Using TLS in Twisted requires that you have pyOpenSSL installed. A quick test to verify that you do is to run from OpenSSL import SSL at a python prompt and not get an error. Twisted …

  5. Asynchronous Programming with Twisted

    This document is for readers new to Twisted who are familiar with the Python programming language and, at least conceptually, with core networking concepts such as servers, clients …

  6. Twisted Documentation: Deferred Reference

    After reading this document, the reader should expect to be able to deal with most simple APIs in Twisted and Twisted-using code that return Deferreds.

  7. Using the Twisted Web Client — Twisted 25.5.0 documentation

    Using the Twisted Web Client Overview This document describes how to use the HTTP client included in Twisted Web. After reading it, you should be able to make HTTP and HTTPS …

  8. Deferred Reference — Twisted 18.7.0 documentation

    Always use this argument unless you are adding further callbacks or errbacks to the passed-in Deferreds, or unless you know that they will not fail. Otherwise, a failure will result in an …

  9. Using Threads in Twisted — Twisted 25.5.0 documentation

    It is a common mistake to think that because Twisted can manage multiple connections at once, things are happening in multiple threads, and so you need to carefully manage locks. Lucky for …

  10. Configuring and Using the Twisted Web Server

    A Resource can either return a response as bytes or write to the request object. Session objects allow you to store information across multiple requests. Each individual browser using the …