Notice: This forum has been recovered from an old backup, so some content, links, and dates may be outdated. The forum is currently read-only while we restore sign-in and registration functionality. Details

If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.

Search found 2 matches

by lucidstate
Thu Nov 05, 2015 7:46 pm
Forum: General Support
Topic: Write to file from autoremote message
Replies: 4
Views: 2010

Re: Write to file from autoremote message

Thank you! I'm not above learning how to python script. I've got just enough hobby programming experience to get started. But how do I actually pass information from eventghost to python?

like:

Code: Select all

myData = somehowgetfromeventghost
f = open('minfil.txt', 'w+')
f.writelines(myData)

by lucidstate
Thu Nov 05, 2015 3:53 am
Forum: General Support
Topic: Write to file from autoremote message
Replies: 4
Views: 2010

Write to file from autoremote message

I'm new to Autoremote and Eventghost. I've got a number of android devices that will send some data to eventghost. Then that data will be stored in a file on my desktop (txt file for now, database when I learn more). I've figured out how to send the info to eventghost, but I don't don't know where ...