Bypassing import in Python so that I don't have to upload multiple libraries and classes?
- by Rob
For example, I have a few python scripts, that link together and some libraries for it that need to be imported. I'm trying to reduce it to only one script.
So instead of:
import library.py
Can I just take the coding from library.py and put into the main script?