burning
burning

Reputation: 2586

Django Chart using Highcharts

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

Answers (2)

Zain Khan
Zain Khan

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

Related Questions