.highcharts

The highcharts_maps.highcharts module is designed to be a catch-all module for ease of importing. It does not actually define any functionality itself, but instead imports classes from across the Highcharts Maps for Python library to expose them under a single import statement. This enables you to choose between whatever import-style you prefer to apply:

Tip

Best Practice!

This method of importing Highcharts Maps for Python objects yields the fastest performance for the import statement. However, it is more verbose and requires you to navigate the extensive Highcharts Maps for Python API.

# Import classes using precise module indications. For example:
from highcharts_maps.chart import Chart
from highcharts_maps.global_options.shared_options import SharedMapsOptions
from highcharts_maps.options import HighchartsMapsOptions
from highcharts_maps.options.plot_options.map import MapOptions
from highcharts_maps.options.series.map import MapSeries

Caution

You should be aware that importing the highcharts_maps.highcharts module takes a relatively long time. This is because it needs to import hundreds of other classes from across the entire library. Assuming you are just doing it once, this may be acceptable to you. However you should be aware that is much less performant than importing precise classes when and as-needed.