Source code for geeplot

"""The init file of the package."""

[docs] __version__ = "0.0.0"
[docs] __author__ = "Pierrick Rambaud"
[docs] __email__ = "pierrick.rambaud49@gmail.com"
[docs] class Hello: """Hello world class."""
[docs] msg = "hello world !"
"the message to print"
[docs] def hello_world(self) -> str: """Hello world demo method. Returns: the hello world string """ return self.msg