#!/usr/bin/python
import time
f = open('/home/martin/Downloads/a.txt')
while 1:
for line in f:
print line;
time.sleep(1);
--
https://mail.python.org/mailman/listinfo/python-list
- How to streamingly read text file and display whenever upd... galeomaga
- Re: How to streamingly read text file and display whe... galeomaga
- Re: How to streamingly read text file and display... Mark Lawrence
- Re: How to streamingly read text file and display whe... James Harris
- Re: How to streamingly read text file and display... Mark Lawrence
- Re: How to streamingly read text file and display whe... Nobody
- Re: How to streamingly read text file and display whe... Joost Molenaar
- Re: How to streamingly read text file and display... Mark Lawrence
- Re: How to streamingly read text file and display whe... galeomaga
- Re: How to streamingly read text file and display... Chris Angelico
- Re: How to streamingly read text file and display... Steven D'Aprano
