ThreadIO, is good for capture stdout at multi-thread environment.
Project description
ThreadIO, is good for capture stdout at multi-thread environment.
>>> # standard capture
>>> from threadio import print_to_file
>>> with print_to_file(TextIO()) as fp:
... print("hello world")
...
>>> fp.getvalue()
'hello world\n'
>>> # standard capture (but not stdout, stderr)
>>> from threadio import ThreadIO
>>> fp = ThreadIO(TextIO())
>>> with fp.capture(TextIO()) as fp2:
... print("hello world", file=fp)
... with fp.capture(TextIO()) as fp3:
... print("hello world3", file=fp)
... # not captured fp3, stored fp2
... print("fail captured", file=fp2)
...
>>> fp.getvalue()
''
>>> fp2.getvalue()
'hello world\nfail captured\n'
>>> fp3.getvalue()
'hello world3\n'
>>> # thread example
>>> from threading import Thread
>>> from threadio import print_to_file
>>> th = Thread(target=print, args=("hello world!",))
>>> with print_to_file(TextIO()) as fp:
... th.start()
... th.join()
... print("HAYO!")
...
hello world!
>>> fp.getvalue() # not capture other thread's print
'HAYO!\n'
>>> # note. print_to_xxx function change everything. >>> a = sys.stdout >>> with print_to_file(TextIO()): pass >>> b = sys.stdout >>> a is b False
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
threadio-0.1.tar.gz
(2.2 kB
view details)
File details
Details for the file threadio-0.1.tar.gz.
File metadata
- Download URL: threadio-0.1.tar.gz
- Upload date:
- Size: 2.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
150ddac53b229611684956d5dd2e4893f220bea622e40b2a4c9a70e98102301c
|
|
| MD5 |
575ce52cd7933121ec0424e90d49624e
|
|
| BLAKE2b-256 |
cde210e6d20761e127de0531331fccccd04a4e6c49e3bd3e03858ad76aee1fdf
|