Reputation: 2586
I am following the highchart demos but I am do not understand how they are importing using the following line:
from ..charts import Chart, PivotChart
Please tell me the meaning of the above line.
Upvotes: 2
Views: 995
Reputation: 3793
These are explicit relative imports which started with Python 2.5 >. These explicit relative imports use leading dots to indicate the current and parent packages involved in the relative import.
Upvotes: 1
Reputation: 1903
This is relative import
http://docs.python.org/tutorial/modules.html#intra-package-references
Upvotes: 2