dissector.diffusion
Documentation about the dissector module.
Functions
|
Say hello. |
Module Contents
- dissector.diffusion.hello(name: str) str[source]
Say hello.
Function docstring using Google docstring style. Will be upgraded to sphinx style soon.
- Parameters:
name (str) – Name to say hello to
- Returns:
Hello message
- Return type:
- Raises:
ValueError – If name is equal to nobody
Example
This function can be called with Jane Smith as argument using
>>> from dissector.diffusion import hello >>> hello('Jane Smith') 'Hello Jane Smith!'