[BangPypers] Capture and save running process on Python 3.6

2017-11-01 Thread Ajinkya Bobade
Hello, Hope someone can help me on this. In the following code, I want to capture print('Recording GPS Position...') on sd card, for now, this is printing on terminal directly I want to capture this runtime process (p_1) from terminal and store on sd card as it is being executed how do I do this.

Re: [BangPypers] Capture and save running process on Python 3.6

2017-11-02 Thread Noufal Ibrahim KV
On Thu, Nov 02 2017, Ajinkya Bobade wrote: > Hello, > > Hope someone can help me on this. In the following code, I want to capture > print('Recording GPS Position...') on sd card, for now, this is printing > on terminal directly I want to capture this runtime process (p_1) from > terminal and sto

Re: [BangPypers] Capture and save running process on Python 3.6

2017-11-02 Thread Ajinkya Bobade
I wrote a code which works for text files: This code redirects the output to sd card it goes as follows: import sys oldstdout = sys.stdout # So you can restore later sys.stdout = open("/Volumes/aj/hello world.txt", 'w') # Or whatever your logfile is for i in range(10): print ("Hello", i)

Re: [BangPypers] Capture and save running process on Python 3.6

2017-11-03 Thread Noufal Ibrahim KV
On Thu, Nov 02 2017, Ajinkya Bobade wrote: [...] > However, I want to write this code for "*.bag" extension files that is > sys.stdout = open("/Volumes/aj/hello world.bag", 'w') . This file is > defined as Binary(application/octect-stream). The above code doesn't > work in this scenario. How do