Package Name Prefixes

3 points by hugoarnal


olegkovalov

Can I say that Go’s solution to naming (importing?) modules solve this in a best way?

Yes, package name can be whatever but the full import path means you own it (no matter if it’s a github org/user or a whole domain).

Cool to see that Python tries to solve this.