Python import wildcard

In python is possible to import _everything_ from a module in the root namespace with

from module import *

Just don’t do it.

If you curious why look here

The good way is

import module

Explore posts in the same categories: English, Open Source

2 Comments on “Python import wildcard”

  1. mattions Says:

    Well if you are into textmining ….
    :)


Comment: