How to know reactor status (running or not) ?
I tried this(searched from google):
from twisted.internet import reactor
if reactor.callWhenRunning(lambda: None) is not None:
# do some work
It worked, but this seems like weird way.
What can be other ways of doing this ?