reads a file asynchronously during its execution while somewhere some other process writes to the same file
Project description
reads a file asynchronously during its execution while somewhere some other process writes to the same file
Tested against Windows 10 / Python 3.10 / Anaconda - should work everywhere - pure Python
pip install umacajadada
read_async(
file: str,
asthread: bool = True,
mode: str = "r",
action=lambda line: sys.stderr.write((str(line) + "\n")),
stoptrigger: list | tuple = (False,),
):
This function `read_async` reads a file asynchronously during its execution while somewhere some other
process writes to the same file.
Args:
file (str): The path to the file to be read.
asthread (bool, optional): If True, the function will start as a thread. Default is True.
mode (str, optional): The mode in which the file is opened. Default is 'r' (read mode).
action (function, optional): A function to be applied to each line of the file. Default is to write the line to stderr.
stoptrigger (list | tuple, optional): A list or tuple (preferably a list) that triggers the function to stop reading when its last element is True. Default is [False].
encoding (str, optional): The character encoding of the file. Default is 'utf-8'.
errors (str, optional): How to handle encoding errors. Default is 'backslashreplace'.
Returns:
kthread.KThread or None: If as_thread is True, it returns a KThread object. Otherwise, it returns None.
The advantage of this function is that it allows for real-time processing of the file while it is being written by another process.
This is particularly useful in scenarios where the file is continuously updated, and the updates need to be processed immediately, such as in log monitoring or real-time data analysis.
Example usage:
from threading import Timer
from time import time
newfile = f'c:\\testfilex{str(time()).replace(".","_")}.txt'
stoptrigger = [False,]
t = read_async(
file=newfile,
as_thread=True,
mode="r",
action=lambda line: sys.stderr.write((str(line) + "\n")),
stoptrigger=stoptrigger,
)
Timer(5, lambda: stoptrigger.append(True)).start() # Stops after 5 seconds and doesn't print anymore, but os.system goes on.
os.system("ping 8.8.8.8 -n 10 > " + newfile + "")
if not asthread:
return _read_file_async(file, mode=mode, action=action)
else:
return _start_as_tread(file, mode, action, stoptrigger)
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
umacajadada-0.11.tar.gz
(5.0 kB
view details)
Built Distribution
File details
Details for the file umacajadada-0.11.tar.gz
.
File metadata
- Download URL: umacajadada-0.11.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f444dee13fcf913ca9459599f9689a739b671543cfccc9054067ffc0b79ca7b2 |
|
MD5 | eee4a8bbc23e1de180f6f67eb988b1d7 |
|
BLAKE2b-256 | 7a4b71af25024131d50448489925e8e049ef165b2eefb90a18312938f549047b |
File details
Details for the file umacajadada-0.11-py3-none-any.whl
.
File metadata
- Download URL: umacajadada-0.11-py3-none-any.whl
- Upload date:
- Size: 7.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf040cd0b28c29905a559145deceee60dcab7aafe17b8beb68690d948d9cad89 |
|
MD5 | 3a3dafe56274afd103ed5752d608aca8 |
|
BLAKE2b-256 | 594f23c22511cdeacb8319d34e4959232b685649c0bd64cbd50fd38876031f1f |