简体   繁体   中英

Accessing Running Python program from another Python program

I have the following program running

collector.py

data=0
while True:
    #collects data
     data=data+1

I have another program cool.py which wants to access the current data value. How can I do this?

Ultimately, something like:

cool.py

getData() 

*An Idea would be to use a global variable for data?

You can use memory mapping. http://docs.python.org/2/library/mmap.html

For example you open a file in tmp directore, next u mapping this file to memory in both program and write u data to this file.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM