नहीं है contextlib.redirect_stdout()
समारोह अजगर 3.4 में:
from contextlib import redirect_stdout
with open('help.txt', 'w') as f:
with redirect_stdout(f):
print('it now prints to `help.text`')
यह उसके जैसा है:
import sys
from contextlib import contextmanager
@contextmanager
def redirect_stdout(new_target):
old_target, sys.stdout = sys.stdout, new_target # replace sys.stdout
try:
yield new_target # run some code with the replaced stdout
finally:
sys.stdout = old_target # restore to the previous value
जिसका उपयोग पहले पायथन संस्करणों पर किया जा सकता है। बाद वाला संस्करण पुन: प्रयोज्य नहीं है । इसे यदि चाहें तो बनाया जा सकता है।
यह फ़ाइल डिस्क्रिप्टर के स्तर पर stdout को पुनर्निर्देशित नहीं करता है जैसे:
import os
from contextlib import redirect_stdout
stdout_fd = sys.stdout.fileno()
with open('output.txt', 'w') as f, redirect_stdout(f):
print('redirected to a file')
os.write(stdout_fd, b'not redirected')
os.system('echo this also is not redirected')
b'not redirected'
और फ़ाइल पर 'echo this also is not redirected'
पुनर्निर्देशित नहीं किया जाता है output.txt
।
फ़ाइल डिस्क्रिप्टर स्तर पर पुनर्निर्देशित करने के लिए, os.dup2()
का उपयोग किया जा सकता है:
import os
import sys
from contextlib import contextmanager
def fileno(file_or_fd):
fd = getattr(file_or_fd, 'fileno', lambda: file_or_fd)()
if not isinstance(fd, int):
raise ValueError("Expected a file (`.fileno()`) or a file descriptor")
return fd
@contextmanager
def stdout_redirected(to=os.devnull, stdout=None):
if stdout is None:
stdout = sys.stdout
stdout_fd = fileno(stdout)
# copy stdout_fd before it is overwritten
#NOTE: `copied` is inheritable on Windows when duplicating a standard stream
with os.fdopen(os.dup(stdout_fd), 'wb') as copied:
stdout.flush() # flush library buffers that dup2 knows nothing about
try:
os.dup2(fileno(to), stdout_fd) # $ exec >&to
except ValueError: # filename
with open(to, 'wb') as to_file:
os.dup2(to_file.fileno(), stdout_fd) # $ exec > to
try:
yield stdout # allow code to be run with the redirected stdout
finally:
# restore stdout to its previous value
#NOTE: dup2 makes stdout_fd inheritable unconditionally
stdout.flush()
os.dup2(copied.fileno(), stdout_fd) # $ exec >&copied
यदि stdout_redirected()
इसके बजाय इसका उपयोग किया जाता है तो वही उदाहरण अब काम करता है redirect_stdout()
:
import os
import sys
stdout_fd = sys.stdout.fileno()
with open('output.txt', 'w') as f, stdout_redirected(f):
print('redirected to a file')
os.write(stdout_fd, b'it is redirected now\n')
os.system('echo this is also redirected')
print('this is goes back to stdout')
उत्पादन है कि पहले stdout पर मुद्रित किया गया था अब के लिए चला जाता output.txt
जब तक कि stdout_redirected()
संदर्भ प्रबंधक सक्रिय है।
नोट: stdout.flush()
पायथन बफ़र्स को पायथन 3 पर फ्लश नहीं करता है जहाँ I / O को सीधे read()
/ write()
सिस्टम कॉल पर लागू किया जाता है । सभी खुली सी stdio आउटपुट स्ट्रीम को फ्लश करने के लिए, आप libc.fflush(None)
स्पष्ट रूप से कॉल कर सकते हैं यदि कुछ C एक्सटेंशन stdio- आधारित I / S का उपयोग करता है:
try:
import ctypes
from ctypes.util import find_library
except ImportError:
libc = None
else:
try:
libc = ctypes.cdll.msvcrt # Windows
except OSError:
libc = ctypes.cdll.LoadLibrary(find_library('c'))
def flush(stream):
try:
libc.fflush(None)
stream.flush()
except (AttributeError, ValueError, IOError):
pass # unsupported
आप stdout
अन्य धाराओं को पुनर्निर्देशित करने के लिए पैरामीटर का उपयोग कर सकते हैं , न कि केवल sys.stdout
उदाहरण के लिए, विलय sys.stderr
और करने के लिए sys.stdout
:
def merged_stderr_stdout(): # $ exec 2>&1
return stdout_redirected(to=sys.stdout, stdout=sys.stderr)
उदाहरण:
from __future__ import print_function
import sys
with merged_stderr_stdout():
print('this is printed on stdout')
print('this is also printed on stdout', file=sys.stderr)
नोट: stdout_redirected()
बफ़र किए गए I / O ( sys.stdout
आमतौर पर) और असंबद्ध I / O को मिलाता है (सीधे फाइल डिस्क्रिप्टर पर संचालन)। खबरदार, मुद्दों बफरिंग हो सकता है ।
उत्तर देने के लिए, अपना संपादन: आप python-daemon
अपनी स्क्रिप्ट को निष्क्रिय करने के लिए उपयोग कर सकते हैं और logging
मॉड्यूल का उपयोग कर सकते हैं (जैसा कि @ erikb85 ने सुझाव दिया है ) print
बयानों के बजाय और अपने लंबे समय से चल रहे पायथन स्क्रिप्ट के लिए केवल पुनर्निर्देशन का उपयोग करें जिसे आप nohup
अभी उपयोग कर रहे हैं।
script.p > file