Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

pydev and twisted framework

It seems like my Eclipse PyDev does not recognize that Twisted is installed on my system. I can't make auto suggest working. Does anyone know how to solve it?

like image 525
rzajac Avatar asked Jul 07 '10 23:07

rzajac


People also ask

What is twisted framework?

Twisted is an event-driven network programming framework written in Python and licensed under the MIT License.

What is twisted reactor?

The reactor is the core of the event loop within Twisted – the loop which drives applications using Twisted. The event loop is a programming construct that waits for and dispatches events or messages in a program.

What is Python twisted used for?

Python Twisted Examples It allows you to create a SMTP, HTTP, proxy and ssh servers (and more) in Python with minimal effort. Twisted is Asynchronous and event driven and allows applications to respond to different network connection without the use of traditional threading models.

What is twisted package in Python?

Twisted is an event-based framework for internet applications, supporting Python 3.6+. It includes modules for many different purposes, including the following: twisted. web: HTTP clients and servers, HTML templating, and a WSGI server.


1 Answers

go to preferences->Pydev->Interpreter - Python and hit the apply button. That will rescan your modules directory and add any missing modules.

That should fix any normal import errors. Some modules do some runtime magic that PyDev cant follow.

like image 115
ebt Avatar answered Oct 11 '22 13:10

ebt