How can I \'embed\' a Python library in my own Python package?
Take the Requests library, for instance. How could I integrate it into my own package, the objective b
If you only need to run your application may be pyinstaller packaging is a better option.
It will create a single bundle with everything that is needed, including Python, to avoid dependencies on the system you're running in.