mirror of https://github.com/scrapy/scrapy.git
added web console docstring pointing to documentation, improved telnet console docstring
This commit is contained in:
parent
834ac9fca0
commit
93fcf6e314
|
|
@ -1,7 +1,7 @@
|
|||
"""
|
||||
Telnet Console extension
|
||||
Scrapy Telnet Console extension
|
||||
|
||||
See documentation in docs/ref/telnetconsole.rst
|
||||
See documentation in docs/topics/telnetconsole.rst
|
||||
"""
|
||||
|
||||
import pprint
|
||||
|
|
|
|||
|
|
@ -1,8 +1,13 @@
|
|||
"""
|
||||
Scrapy Web Console extension
|
||||
|
||||
See docs/topics/webconsole.rst
|
||||
"""
|
||||
|
||||
import re
|
||||
import socket
|
||||
from datetime import datetime
|
||||
|
||||
from twisted.internet import reactor
|
||||
from twisted.web import server, resource
|
||||
from pydispatch import dispatcher
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue