In PyCharm, how to import a Python script from one project to another?
Answered
How to import a Python script in one PyCharm project to another PyCharm project
Please sign in to leave a comment.
Copy/paste within PyCharm? Filesystem copy, at the OS level?
Not sure there's any functions within PyCharm to facilitate that process for you.
One can:
A more reliable approach is to distribute the first project as a package with setup.py.
from PROGRAM_NAME import *