Hello,
Based on the jokes python example, I’d like to import code that sits at the root of the repository.
So, something along those lines:
# test.py
def test():
return {"test": "test"}
# packages/joke/joke/__main__.py
import pyjokes
from ....test import test # this won't work?
def main(args):
joke = pyjokes.get_joke()
return {
'body': {
'response_type': 'in_channel',
'text': joke
}
}
How do I import any code that I have in a level above the current packages/joke/joke
folder structure? - Say I have code to share between more than one package?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Enter your email to get $200 in credit for your first 60 days with DigitalOcean.
New accounts only. By submitting your email you agree to our Privacy Policy.
Hi there,
There was a similar question recently asked here:
https://www.digitalocean.com/community/questions/problems-with-python-imports-in-functions
Rodric created a repository with an example on how to do this as well:
https://github.com/rabbah/functions/tree/master/pymod
Hope that this is helpful!
Let me know if you have any questions!
Best,
Bobby