GreatPublicationPlanner is a tool to display the dates of the conferences and other publications you might be interested in. Visualization will allow you to choose wisely.
Import the package and instantiate a batch-mode planner:
import greatpublicationplanner as gpp
planner = gpp.PlannerBatch()
Then you can load and plot data with
planner.load_data(path_to_file)
planner.plot_data()
and that's it!
Tutorials are provided inside the package.
Currently the package includes three private libraries:
_file_manager.py
, whose role is to get data from permitted files;_data_processor.py
, whose role is to check data integrity and format as expected by other libraries;_drawer.py
, whose role is to draw the plots and manage the drawing properties.
All functions are tested by means of the unittest
module.