Ask HN: How do you handle project level imports in Python? I have python project called xyz. It has a directory structure like this:
At the top of a.py, I'd like to be able to say something like from c import some_func.From what I can tell, there are many, many different ways to accomplish this. I haven't been able to find anything though that is both a) automated and b) clean. How do you handle this your python projects? |
No comments yet