genwiki2024 API Documentation
genwiki_cmd
Created on 2024-08-15
@author: wf
GenWikiCmd
Bases: WebserverCmd
command line handling for genealogy wiki frontend
Source code in genwiki/genwiki_cmd.py
15 16 17 18 19 20 21 22 23 24 25 |
|
__init__()
constructor
Source code in genwiki/genwiki_cmd.py
20 21 22 23 24 25 |
|
main(argv=None)
main call
Source code in genwiki/genwiki_cmd.py
28 29 30 31 32 33 34 |
|
version
Created on 2024-08-15
@author: wf
Version
dataclass
Bases: object
Version handling for genwiki2024
Source code in genwiki/version.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
|
webserver
Created on 2024-08-15
@author: wf
GenWikiSolution
Bases: InputWebSolution
the NiceSprinkler solution
Source code in genwiki/webserver.py
38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
|
__init__(webserver, client)
Initialize the solution
Parameters:
Name | Type | Description | Default |
---|---|---|---|
webserver |
GenWikiWebServer
|
The webserver instance associated with this solution. |
required |
client |
Client
|
The client instance this context is associated with. |
required |
Source code in genwiki/webserver.py
43 44 45 46 47 48 49 50 51 |
|
GenWikiWebServer
Bases: InputWebserver
WebServer class that manages the server and handles Sprinkler operations.
Source code in genwiki/webserver.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
|
__init__()
Constructs all the necessary attributes for the WebServer object.
Source code in genwiki/webserver.py
32 33 34 35 |
|