OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
python3
/
dist-packages
/
twisted
/
plugins
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/31/2022 06:22:38 AM
rwxr-xr-x
📄
__init__.py
590 bytes
09/08/2017 10:38:36 AM
rw-r--r--
📁
__pycache__
-
03/31/2022 06:22:39 AM
rwxr-xr-x
📄
cred_anonymous.py
1017 bytes
09/08/2017 10:38:36 AM
rw-r--r--
📄
cred_file.py
1.83 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
cred_memory.py
2.33 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
cred_sshkeys.py
1.46 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
cred_unix.py
3.75 KB
09/23/2017 05:51:46 AM
rw-r--r--
📄
dropin.cache
6.05 KB
03/31/2022 06:22:40 AM
rwxr-xr-x
📄
twisted_conch.py
519 bytes
09/08/2017 10:38:36 AM
rw-r--r--
📄
twisted_core.py
589 bytes
09/08/2017 10:38:35 AM
rw-r--r--
📄
twisted_ftp.py
229 bytes
09/08/2017 10:38:36 AM
rw-r--r--
📄
twisted_inet.py
260 bytes
09/08/2017 10:38:36 AM
rw-r--r--
📄
twisted_names.py
247 bytes
09/08/2017 10:38:36 AM
rw-r--r--
📄
twisted_portforward.py
275 bytes
09/08/2017 10:38:36 AM
rw-r--r--
📄
twisted_reactors.py
1.84 KB
09/08/2017 10:38:35 AM
rw-r--r--
📄
twisted_runner.py
278 bytes
09/08/2017 10:38:36 AM
rw-r--r--
📄
twisted_socks.py
247 bytes
09/08/2017 10:38:36 AM
rw-r--r--
📄
twisted_trial.py
2.04 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
twisted_web.py
312 bytes
09/08/2017 10:38:36 AM
rw-r--r--
📄
twisted_words.py
1 KB
09/08/2017 10:38:36 AM
rw-r--r--
Editing: twisted_trial.py
Close
from __future__ import division, absolute_import from zope.interface import implementer from twisted.trial.itrial import IReporter from twisted.plugin import IPlugin @implementer(IPlugin, IReporter) class _Reporter(object): def __init__(self, name, module, description, longOpt, shortOpt, klass): self.name = name self.module = module self.description = description self.longOpt = longOpt self.shortOpt = shortOpt self.klass = klass Tree = _Reporter("Tree Reporter", "twisted.trial.reporter", description="verbose color output (default reporter)", longOpt="verbose", shortOpt="v", klass="TreeReporter") BlackAndWhite = _Reporter("Black-And-White Reporter", "twisted.trial.reporter", description="Colorless verbose output", longOpt="bwverbose", shortOpt="o", klass="VerboseTextReporter") Minimal = _Reporter("Minimal Reporter", "twisted.trial.reporter", description="minimal summary output", longOpt="summary", shortOpt="s", klass="MinimalReporter") Classic = _Reporter("Classic Reporter", "twisted.trial.reporter", description="terse text output", longOpt="text", shortOpt="t", klass="TextReporter") Timing = _Reporter("Timing Reporter", "twisted.trial.reporter", description="Timing output", longOpt="timing", shortOpt=None, klass="TimingTextReporter") Subunit = _Reporter("Subunit Reporter", "twisted.trial.reporter", description="subunit output", longOpt="subunit", shortOpt=None, klass="SubunitReporter")