Python Forum
Pycharm sync - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Pycharm sync (/thread-26146.html)



Pycharm sync - PTPeter - Apr-22-2020

I have used VBA for years to build Excel macro's, but now I am learning how to use Python for this as it appears to be much better. I am working on an iMac and got the advice to install Pycharm for coding.

In the tutorials I am following, often new .xlsx files are made and then edited.
But each time I make a change in Pycharm, I have to close the .xlsx file and reopen it to be able to see the changes.

1. Is Pycharm the best free program to code in Openpyxl on Mac OS X?
2. Is there a way to make Pycharm (or any program) reload the .xlsx file automatically after I save?

Many thanks, I am just a n00b here ;-)


RE: Pycharm sync - DeaD_EyE - Apr-22-2020

Quote:1. Is Pycharm the best free program to code in Openpyxl on Mac OS X?
I use this IDE, but there is no "best" free program.

Quote:2. Is there a way to make Pycharm (or any program) reload the .xlsx file automatically after I save?
Indirect, but you have to program it. Maybe you could use also inotify watches on Mac OS. You observe the file change and if the file has been changed, the program have to read again the file.