Compare commits
25 Commits
2021.10.0
...
4ceea36926
Author | SHA1 | Date | |
---|---|---|---|
4ceea36926 | |||
b3f8174663 | |||
58dccea28b | |||
ca086e01d7 | |||
c5b1a95661 | |||
d7881774a8 | |||
6eec92243e | |||
124b236182 | |||
2dc96cdf3d | |||
6f7923debc | |||
90d148b4a5 | |||
73e2c5ec10 | |||
f31522dcd9 | |||
a83607fd81 | |||
707df3f27d | |||
0f43e57831 | |||
c08ab33060 | |||
ee2abd98b3 | |||
e39661a42a | |||
9518d19580 | |||
adf95faaf8 | |||
2f92e9909d | |||
b18f2c4bcd | |||
784ba049ad | |||
4d6d19d2e5 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -132,5 +132,4 @@ dmypy.json
|
||||
.pyre/
|
||||
|
||||
# IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
|
296
.vscode/launch.json
vendored
Normal file
296
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,296 @@
|
||||
{
|
||||
// Use IntelliSense to learn about possible attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Python: Aktuelle Datei",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "${file}",
|
||||
"console": "integratedTerminal"
|
||||
},
|
||||
{
|
||||
"name": "CPL: main test",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}/cpl_core/src/tests/custom/general/src/general",
|
||||
"program": "main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"--customer=sh-edraft.de"
|
||||
],
|
||||
"env": {
|
||||
"CPL_NAME": "CPL_Dev_Test",
|
||||
"PYTHON_ENVIRONMENT": "development"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "CPL: console test",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}/src/tests/custom/console",
|
||||
"program": "main.py",
|
||||
"console": "integratedTerminal",
|
||||
},
|
||||
{
|
||||
"name": "CPL: database test",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}/src/tests/custom/database/src",
|
||||
"program": "main.py",
|
||||
"console": "integratedTerminal",
|
||||
},
|
||||
{
|
||||
"name": "CLI",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}/",
|
||||
"program": "${workspaceFolder}/src/cpl_cli/main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": []
|
||||
},
|
||||
{
|
||||
"name": "CLI: add",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}/src/tests/custom/general",
|
||||
"program": "${workspaceFolder}/src/cpl_cli/main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"add",
|
||||
"testing",
|
||||
"general",
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "CLI: remove",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}/src/tests/custom/general",
|
||||
"program": "${workspaceFolder}/src/cpl_cli/main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"remove",
|
||||
"testing",
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "CLI: build",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"program": "${workspaceFolder}/src/cpl_cli/main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"build"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "CLI: generate abc",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"program": "${workspaceFolder}/src/cpl_cli/main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"generate",
|
||||
"a",
|
||||
"testName"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "CLI: generate class",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"program": "${workspaceFolder}/src/cpl_cli/main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"generate",
|
||||
"c",
|
||||
"src/hfs/fsnfiu/fiush/fisbf/testName"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "CLI: generate enum",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"program": "${workspaceFolder}/src/cpl_cli/main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"generate",
|
||||
"e",
|
||||
"testName"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "CLI: generate service",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"program": "${workspaceFolder}/src/cpl_cli/main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"generate",
|
||||
"s",
|
||||
"testName"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "CLI: generate settings",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"program": "${workspaceFolder}/src/cpl_cli/main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"generate",
|
||||
"st",
|
||||
"testName"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "CLI: generate thread",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"program": "${workspaceFolder}/src/cpl_cli/main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"generate",
|
||||
"t",
|
||||
"testName"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "CLI: hello-world",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"program": "${workspaceFolder}/src/cpl_cli/main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"hello-world",
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "CLI: help",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"program": "${workspaceFolder}/src/cpl_cli/main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"help",
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "CLI: install discord.py",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}/src/tests/custom/general",
|
||||
"program": "${workspaceFolder}/src/cpl_cli/main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"install",
|
||||
"discord.py",
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "CLI: install local",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}/src/tests/custom/general",
|
||||
"program": "${workspaceFolder}/src/cpl_cli/main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"install",
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "CLI: new console",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"program": "${workspaceFolder}/src/cpl_cli/main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"new",
|
||||
"console",
|
||||
"HelloWorld"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "CLI: new library",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"program": "${workspaceFolder}/src/cpl_cli/main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"new",
|
||||
"library",
|
||||
"HelloWorldLib"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "CLI: publish",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"program": "${workspaceFolder}/src/cpl_cli/main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"publish",
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "CLI: start",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"program": "${workspaceFolder}/src/cpl_cli/main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"start",
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "CLI: uninstall discord.py",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}/src/tests/custom/general",
|
||||
"program": "${workspaceFolder}/src/cpl_cli/main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"uninstall",
|
||||
"discord.py",
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "CLI: start",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}/src/tests/custom/general",
|
||||
"program": "${workspaceFolder}/src/cpl_cli/main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"update",
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "CLI: version",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"program": "${workspaceFolder}/src/cpl_cli/main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [
|
||||
"version",
|
||||
]
|
||||
},
|
||||
]
|
||||
}
|
26
.vscode/settings.json
vendored
Normal file
26
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"workbench.colorCustomizations": {
|
||||
"activityBar.activeBackground": "#fbed80",
|
||||
"activityBar.activeBorder": "#06b9a5",
|
||||
"activityBar.background": "#fbed80",
|
||||
"activityBar.foreground": "#15202b",
|
||||
"activityBar.inactiveForeground": "#15202b99",
|
||||
"activityBarBadge.background": "#06b9a5",
|
||||
"activityBarBadge.foreground": "#15202b",
|
||||
"editorGroup.border": "#fbed80",
|
||||
"panel.border": "#fbed80",
|
||||
"sash.hoverBorder": "#fbed80",
|
||||
"sideBar.border": "#fbed80",
|
||||
"statusBar.background": "#f9e64f",
|
||||
"statusBar.foreground": "#15202b",
|
||||
"statusBarItem.hoverBackground": "#f7df1e",
|
||||
"statusBarItem.remoteBackground": "#f9e64f",
|
||||
"statusBarItem.remoteForeground": "#15202b",
|
||||
"titleBar.activeBackground": "#f9e64f",
|
||||
"titleBar.activeForeground": "#15202b",
|
||||
"titleBar.inactiveBackground": "#f9e64f99",
|
||||
"titleBar.inactiveForeground": "#15202b99"
|
||||
},
|
||||
"peacock.color": "#f9e64f",
|
||||
"python.pythonPath": "cpl-env/bin/python3.9",
|
||||
}
|
@@ -6,6 +6,8 @@
|
||||
"cpl_cli": "src/cpl_cli/cpl_cli.json",
|
||||
"cpl_query": "src/cpl_query/cpl_query.json"
|
||||
},
|
||||
"Scripts": {}
|
||||
"Scripts": {
|
||||
"hello-world": "echo 'Hello World'"
|
||||
}
|
||||
}
|
||||
}
|
BIN
docs/build/doctrees/cli.add.doctree
vendored
BIN
docs/build/doctrees/cli.add.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cli.build.doctree
vendored
BIN
docs/build/doctrees/cli.build.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cli.generate.doctree
vendored
BIN
docs/build/doctrees/cli.generate.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cli.help.doctree
vendored
BIN
docs/build/doctrees/cli.help.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cli.install.doctree
vendored
BIN
docs/build/doctrees/cli.install.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cli.new.doctree
vendored
BIN
docs/build/doctrees/cli.new.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cli.overview.doctree
vendored
BIN
docs/build/doctrees/cli.overview.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cli.publish.doctree
vendored
BIN
docs/build/doctrees/cli.publish.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cli.remove.doctree
vendored
BIN
docs/build/doctrees/cli.remove.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cli.start.doctree
vendored
BIN
docs/build/doctrees/cli.start.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cli.uninstall.doctree
vendored
BIN
docs/build/doctrees/cli.uninstall.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cli.update.doctree
vendored
BIN
docs/build/doctrees/cli.update.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cli.version.doctree
vendored
BIN
docs/build/doctrees/cli.version.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/contributing.doctree
vendored
BIN
docs/build/doctrees/contributing.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cpl.application.doctree
vendored
BIN
docs/build/doctrees/cpl.application.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cpl.configuration.doctree
vendored
BIN
docs/build/doctrees/cpl.configuration.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cpl.console.doctree
vendored
BIN
docs/build/doctrees/cpl.console.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cpl.database.connection.doctree
vendored
BIN
docs/build/doctrees/cpl.database.connection.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cpl.database.context.doctree
vendored
BIN
docs/build/doctrees/cpl.database.context.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cpl.database.doctree
vendored
BIN
docs/build/doctrees/cpl.database.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cpl.dependency_injection.doctree
vendored
BIN
docs/build/doctrees/cpl.dependency_injection.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cpl.environment.doctree
vendored
BIN
docs/build/doctrees/cpl.environment.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cpl.logging.doctree
vendored
BIN
docs/build/doctrees/cpl.logging.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cpl.mailing.doctree
vendored
BIN
docs/build/doctrees/cpl.mailing.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cpl.time.doctree
vendored
BIN
docs/build/doctrees/cpl.time.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cpl.utils.doctree
vendored
BIN
docs/build/doctrees/cpl.utils.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/cpl_core.application.doctree
vendored
Normal file
BIN
docs/build/doctrees/cpl_core.application.doctree
vendored
Normal file
Binary file not shown.
BIN
docs/build/doctrees/cpl_core.configuration.doctree
vendored
Normal file
BIN
docs/build/doctrees/cpl_core.configuration.doctree
vendored
Normal file
Binary file not shown.
BIN
docs/build/doctrees/cpl_core.console.doctree
vendored
Normal file
BIN
docs/build/doctrees/cpl_core.console.doctree
vendored
Normal file
Binary file not shown.
BIN
docs/build/doctrees/cpl_core.database.connection.doctree
vendored
Normal file
BIN
docs/build/doctrees/cpl_core.database.connection.doctree
vendored
Normal file
Binary file not shown.
BIN
docs/build/doctrees/cpl_core.database.context.doctree
vendored
Normal file
BIN
docs/build/doctrees/cpl_core.database.context.doctree
vendored
Normal file
Binary file not shown.
BIN
docs/build/doctrees/cpl_core.database.doctree
vendored
Normal file
BIN
docs/build/doctrees/cpl_core.database.doctree
vendored
Normal file
Binary file not shown.
BIN
docs/build/doctrees/cpl_core.dependency_injection.doctree
vendored
Normal file
BIN
docs/build/doctrees/cpl_core.dependency_injection.doctree
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
docs/build/doctrees/cpl_core.environment.doctree
vendored
Normal file
BIN
docs/build/doctrees/cpl_core.environment.doctree
vendored
Normal file
Binary file not shown.
BIN
docs/build/doctrees/cpl_core.logging.doctree
vendored
Normal file
BIN
docs/build/doctrees/cpl_core.logging.doctree
vendored
Normal file
Binary file not shown.
BIN
docs/build/doctrees/cpl_core.mailing.doctree
vendored
Normal file
BIN
docs/build/doctrees/cpl_core.mailing.doctree
vendored
Normal file
Binary file not shown.
BIN
docs/build/doctrees/cpl_core.time.doctree
vendored
Normal file
BIN
docs/build/doctrees/cpl_core.time.doctree
vendored
Normal file
Binary file not shown.
BIN
docs/build/doctrees/cpl_core.utils.doctree
vendored
Normal file
BIN
docs/build/doctrees/cpl_core.utils.doctree
vendored
Normal file
Binary file not shown.
BIN
docs/build/doctrees/cpl_query.doctree
vendored
Normal file
BIN
docs/build/doctrees/cpl_query.doctree
vendored
Normal file
Binary file not shown.
BIN
docs/build/doctrees/cpl_query.exceptions.doctree
vendored
Normal file
BIN
docs/build/doctrees/cpl_query.exceptions.doctree
vendored
Normal file
Binary file not shown.
BIN
docs/build/doctrees/cpl_query.extension.doctree
vendored
Normal file
BIN
docs/build/doctrees/cpl_query.extension.doctree
vendored
Normal file
Binary file not shown.
BIN
docs/build/doctrees/cpl_query.tests.doctree
vendored
Normal file
BIN
docs/build/doctrees/cpl_query.tests.doctree
vendored
Normal file
Binary file not shown.
BIN
docs/build/doctrees/environment.pickle
vendored
BIN
docs/build/doctrees/environment.pickle
vendored
Binary file not shown.
BIN
docs/build/doctrees/index.doctree
vendored
BIN
docs/build/doctrees/index.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/introduction.doctree
vendored
BIN
docs/build/doctrees/introduction.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/modules.doctree
vendored
BIN
docs/build/doctrees/modules.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/quickstart.doctree
vendored
BIN
docs/build/doctrees/quickstart.doctree
vendored
Binary file not shown.
BIN
docs/build/doctrees/setup.doctree
vendored
BIN
docs/build/doctrees/setup.doctree
vendored
Binary file not shown.
2
docs/build/html/.buildinfo
vendored
2
docs/build/html/.buildinfo
vendored
@@ -1,4 +1,4 @@
|
||||
# Sphinx build info version 1
|
||||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
|
||||
config: 8170277cf12e5442e6180427108a8adf
|
||||
config: e947378348368955f94cb62626664e15
|
||||
tags: 645f666f9bcd5a90fca523b33c5a78b7
|
||||
|
2
docs/build/html/_sources/cli.generate.md.txt
vendored
2
docs/build/html/_sources/cli.generate.md.txt
vendored
@@ -31,5 +31,5 @@ Generates files based on a schematic.
|
||||
| ```class``` | Class | ```<name>```
|
||||
| ```enum``` | Enum class | ```<name>```
|
||||
| ```service``` | Service class | ```<name>```
|
||||
| ```settings``` | [Configmodel](cpl.configuration) | ```<name>```
|
||||
| ```settings``` | [Configmodel](cpl_core.configuration) | ```<name>```
|
||||
| ```thread``` | Thread class | ```<name>```
|
||||
|
2
docs/build/html/_sources/cli.publish.md.txt
vendored
2
docs/build/html/_sources/cli.publish.md.txt
vendored
@@ -15,7 +15,7 @@ cpl **P**
|
||||
|
||||
The command can be used to publish a project of type "console" or "library".
|
||||
|
||||
The publish command builds the source files and then creates an ```setup.py``` with data from ```cpl.json```.
|
||||
The publish command builds the source files and then creates an ```setup.py``` with data from ```cpl_core.json```.
|
||||
The command executes the ```setup.py``` and removes all source files with the ```setup.py``` from the 'publish/' directory.
|
||||
|
||||
Generated files of ```setup.py``` are in the 'publish/setup/' directory.
|
||||
|
7
docs/build/html/_sources/cli.remove.md.txt
vendored
7
docs/build/html/_sources/cli.remove.md.txt
vendored
@@ -13,12 +13,9 @@ cpl **R** *<project>*
|
||||
|
||||
## Description
|
||||
|
||||
The command can be used to publish a project of type "console" or "library".
|
||||
Removes a project reference and the files from workspace.
|
||||
|
||||
The publish command builds the source files and then creates an ```setup.py``` with data from ```cpl.json```.
|
||||
The command executes the ```setup.py``` and removes all source files with the ```setup.py``` from the 'publish/' directory.
|
||||
|
||||
Generated files of ```setup.py``` are in the 'publish/setup/' directory.
|
||||
If you call the command in a CPL workspace, you can use the project names. Otherwise the paths of the projects must be specified.
|
||||
|
||||
## Arguments
|
||||
|
||||
|
@@ -1,42 +0,0 @@
|
||||
cpl.configuration
|
||||
=========================
|
||||
|
||||
cpl.configuration.configuration
|
||||
--------------------------------------
|
||||
|
||||
.. automodule:: cpl.configuration.configuration
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.configuration.configuration\_abc
|
||||
-------------------------------------------
|
||||
|
||||
.. automodule:: cpl.configuration.configuration_abc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.configuration.configuration\_model\_abc
|
||||
--------------------------------------------------
|
||||
|
||||
.. automodule:: cpl.configuration.configuration_model_abc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.configuration.configuration\_variable\_name\_enum
|
||||
------------------------------------------------------------
|
||||
|
||||
.. automodule:: cpl.configuration.configuration_variable_name_enum
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.configuration.console\_argument
|
||||
------------------------------------------
|
||||
|
||||
.. automodule:: cpl.configuration.console_argument
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@@ -1,18 +0,0 @@
|
||||
cpl.database.connection
|
||||
===============================
|
||||
|
||||
cpl.database.connection.database\_connection
|
||||
---------------------------------------------------
|
||||
|
||||
.. automodule:: cpl.database.connection.database_connection
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.database.connection.database\_connection\_abc
|
||||
--------------------------------------------------------
|
||||
|
||||
.. automodule:: cpl.database.connection.database_connection_abc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@@ -1,18 +0,0 @@
|
||||
cpl.database.context
|
||||
============================
|
||||
|
||||
cpl.database.context.database\_context
|
||||
---------------------------------------------
|
||||
|
||||
.. automodule:: cpl.database.context.database_context
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.database.context.database\_context\_abc
|
||||
--------------------------------------------------
|
||||
|
||||
.. automodule:: cpl.database.context.database_context_abc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@@ -1,50 +0,0 @@
|
||||
cpl.dependency\_injection
|
||||
=================================
|
||||
|
||||
cpl.dependency\_injection.service\_collection
|
||||
----------------------------------------------------
|
||||
|
||||
.. automodule:: cpl.dependency_injection.service_collection
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.dependency\_injection.service\_collection\_abc
|
||||
---------------------------------------------------------
|
||||
|
||||
.. automodule:: cpl.dependency_injection.service_collection_abc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.dependency\_injection.service\_descriptor
|
||||
----------------------------------------------------
|
||||
|
||||
.. automodule:: cpl.dependency_injection.service_descriptor
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.dependency\_injection.service\_lifetime\_enum
|
||||
--------------------------------------------------------
|
||||
|
||||
.. automodule:: cpl.dependency_injection.service_lifetime_enum
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.dependency\_injection.service\_provider
|
||||
--------------------------------------------------
|
||||
|
||||
.. automodule:: cpl.dependency_injection.service_provider
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.dependency\_injection.service\_provider\_abc
|
||||
-------------------------------------------------------
|
||||
|
||||
.. automodule:: cpl.dependency_injection.service_provider_abc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
26
docs/build/html/_sources/cpl.environment.rst.txt
vendored
26
docs/build/html/_sources/cpl.environment.rst.txt
vendored
@@ -1,26 +0,0 @@
|
||||
cpl.environment
|
||||
=======================
|
||||
|
||||
cpl.environment.application\_environment
|
||||
-----------------------------------------------
|
||||
|
||||
.. automodule:: cpl.environment.application_environment
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.environment.application\_environment\_abc
|
||||
----------------------------------------------------
|
||||
|
||||
.. automodule:: cpl.environment.application_environment_abc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.environment.environment\_name\_enum
|
||||
----------------------------------------------
|
||||
|
||||
.. automodule:: cpl.environment.environment_name_enum
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
16
docs/build/html/_sources/cpl.rst.txt
vendored
16
docs/build/html/_sources/cpl.rst.txt
vendored
@@ -1,16 +0,0 @@
|
||||
API Reference
|
||||
===========
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 4
|
||||
|
||||
cpl.application
|
||||
cpl.configuration
|
||||
cpl.console
|
||||
cpl.database
|
||||
cpl.dependency_injection
|
||||
cpl.environment
|
||||
cpl.logging
|
||||
cpl.mailing
|
||||
cpl.time
|
||||
cpl.utils
|
@@ -1,34 +1,34 @@
|
||||
cpl.application
|
||||
cpl_core.application
|
||||
=======================
|
||||
|
||||
cpl.application.application\_abc
|
||||
cpl_core.application.application\_abc
|
||||
---------------------------------------
|
||||
|
||||
.. automodule:: cpl.application.application_abc
|
||||
.. automodule:: cpl_core.application.application_abc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.application.application\_builder
|
||||
cpl_core.application.application\_builder
|
||||
-------------------------------------------
|
||||
|
||||
.. automodule:: cpl.application.application_builder
|
||||
.. automodule:: cpl_core.application.application_builder
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.application.application\_builder\_abc
|
||||
cpl_core.application.application\_builder\_abc
|
||||
------------------------------------------------
|
||||
|
||||
.. automodule:: cpl.application.application_builder_abc
|
||||
.. automodule:: cpl_core.application.application_builder_abc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.application.startup\_abc
|
||||
cpl_core.application.startup\_abc
|
||||
-----------------------------------
|
||||
|
||||
.. automodule:: cpl.application.startup_abc
|
||||
.. automodule:: cpl_core.application.startup_abc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
42
docs/build/html/_sources/cpl_core.configuration.rst.txt
vendored
Normal file
42
docs/build/html/_sources/cpl_core.configuration.rst.txt
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
cpl_core.configuration
|
||||
=========================
|
||||
|
||||
cpl_core.configuration.configuration
|
||||
--------------------------------------
|
||||
|
||||
.. automodule:: cpl_core.configuration.configuration
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl_core.configuration.configuration\_abc
|
||||
-------------------------------------------
|
||||
|
||||
.. automodule:: cpl_core.configuration.configuration_abc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl_core.configuration.configuration\_model\_abc
|
||||
--------------------------------------------------
|
||||
|
||||
.. automodule:: cpl_core.configuration.configuration_model_abc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl_core.configuration.configuration\_variable\_name\_enum
|
||||
------------------------------------------------------------
|
||||
|
||||
.. automodule:: cpl_core.configuration.configuration_variable_name_enum
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl_core.configuration.console\_argument
|
||||
------------------------------------------
|
||||
|
||||
.. automodule:: cpl_core.configuration.console_argument
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@@ -1,42 +1,42 @@
|
||||
cpl.console
|
||||
cpl_core.console
|
||||
===================
|
||||
|
||||
cpl.console.background\_color\_enum
|
||||
cpl_core.console.background\_color\_enum
|
||||
------------------------------------------
|
||||
|
||||
.. automodule:: cpl.console.background_color_enum
|
||||
.. automodule:: cpl_core.console.background_color_enum
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.console.console
|
||||
cpl_core.console.console
|
||||
--------------------------
|
||||
|
||||
.. automodule:: cpl.console.console
|
||||
.. automodule:: cpl_core.console.console
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.console.console\_call
|
||||
cpl_core.console.console\_call
|
||||
--------------------------------
|
||||
|
||||
.. automodule:: cpl.console.console_call
|
||||
.. automodule:: cpl_core.console.console_call
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.console.foreground\_color\_enum
|
||||
cpl_core.console.foreground\_color\_enum
|
||||
------------------------------------------
|
||||
|
||||
.. automodule:: cpl.console.foreground_color_enum
|
||||
.. automodule:: cpl_core.console.foreground_color_enum
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.console.spinner\_thread
|
||||
cpl_core.console.spinner\_thread
|
||||
----------------------------------
|
||||
|
||||
.. automodule:: cpl.console.spinner_thread
|
||||
.. automodule:: cpl_core.console.spinner_thread
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
18
docs/build/html/_sources/cpl_core.database.connection.rst.txt
vendored
Normal file
18
docs/build/html/_sources/cpl_core.database.connection.rst.txt
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
cpl_core.database.connection
|
||||
===============================
|
||||
|
||||
cpl_core.database.connection.database\_connection
|
||||
---------------------------------------------------
|
||||
|
||||
.. automodule:: cpl_core.database.connection.database_connection
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl_core.database.connection.database\_connection\_abc
|
||||
--------------------------------------------------------
|
||||
|
||||
.. automodule:: cpl_core.database.connection.database_connection_abc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
18
docs/build/html/_sources/cpl_core.database.context.rst.txt
vendored
Normal file
18
docs/build/html/_sources/cpl_core.database.context.rst.txt
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
cpl_core.database.context
|
||||
============================
|
||||
|
||||
cpl_core.database.context.database\_context
|
||||
---------------------------------------------
|
||||
|
||||
.. automodule:: cpl_core.database.context.database_context
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl_core.database.context.database\_context\_abc
|
||||
--------------------------------------------------
|
||||
|
||||
.. automodule:: cpl_core.database.context.database_context_abc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@@ -1,35 +1,35 @@
|
||||
cpl.database
|
||||
cpl_core.database
|
||||
====================
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 4
|
||||
|
||||
cpl.database.connection
|
||||
cpl.database.context
|
||||
cpl_core.database.connection
|
||||
cpl_core.database.context
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
cpl.database.database\_model
|
||||
cpl_core.database.database\_model
|
||||
-----------------------------------
|
||||
|
||||
.. automodule:: cpl.database.database_model
|
||||
.. automodule:: cpl_core.database.database_model
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.database.database\_settings
|
||||
cpl_core.database.database\_settings
|
||||
--------------------------------------
|
||||
|
||||
.. automodule:: cpl.database.database_settings
|
||||
.. automodule:: cpl_core.database.database_settings
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.database.database\_settings\_name\_enum
|
||||
cpl_core.database.database\_settings\_name\_enum
|
||||
--------------------------------------------------
|
||||
|
||||
.. automodule:: cpl.database.database_settings_name_enum
|
||||
.. automodule:: cpl_core.database.database_settings_name_enum
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
50
docs/build/html/_sources/cpl_core.dependency_injection.rst.txt
vendored
Normal file
50
docs/build/html/_sources/cpl_core.dependency_injection.rst.txt
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
cpl_core.dependency\_injection
|
||||
=================================
|
||||
|
||||
cpl_core.dependency\_injection.service\_collection
|
||||
----------------------------------------------------
|
||||
|
||||
.. automodule:: cpl_core.dependency_injection.service_collection
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl_core.dependency\_injection.service\_collection\_abc
|
||||
---------------------------------------------------------
|
||||
|
||||
.. automodule:: cpl_core.dependency_injection.service_collection_abc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl_core.dependency\_injection.service\_descriptor
|
||||
----------------------------------------------------
|
||||
|
||||
.. automodule:: cpl_core.dependency_injection.service_descriptor
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl_core.dependency\_injection.service\_lifetime\_enum
|
||||
--------------------------------------------------------
|
||||
|
||||
.. automodule:: cpl_core.dependency_injection.service_lifetime_enum
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl_core.dependency\_injection.service\_provider
|
||||
--------------------------------------------------
|
||||
|
||||
.. automodule:: cpl_core.dependency_injection.service_provider
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl_core.dependency\_injection.service\_provider\_abc
|
||||
-------------------------------------------------------
|
||||
|
||||
.. automodule:: cpl_core.dependency_injection.service_provider_abc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
26
docs/build/html/_sources/cpl_core.environment.rst.txt
vendored
Normal file
26
docs/build/html/_sources/cpl_core.environment.rst.txt
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
cpl_core.environment
|
||||
=======================
|
||||
|
||||
cpl_core.environment.application\_environment
|
||||
-----------------------------------------------
|
||||
|
||||
.. automodule:: cpl_core.environment.application_environment
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl_core.environment.application\_environment\_abc
|
||||
----------------------------------------------------
|
||||
|
||||
.. automodule:: cpl_core.environment.application_environment_abc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl_core.environment.environment\_name\_enum
|
||||
----------------------------------------------
|
||||
|
||||
.. automodule:: cpl_core.environment.environment_name_enum
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@@ -1,42 +1,42 @@
|
||||
cpl.logging
|
||||
cpl_core.logging
|
||||
===================
|
||||
|
||||
cpl.logging.logger\_abc
|
||||
cpl_core.logging.logger\_abc
|
||||
------------------------------
|
||||
|
||||
.. automodule:: cpl.logging.logger_abc
|
||||
.. automodule:: cpl_core.logging.logger_abc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.logging.logger\_service
|
||||
cpl_core.logging.logger\_service
|
||||
----------------------------------
|
||||
|
||||
.. automodule:: cpl.logging.logger_service
|
||||
.. automodule:: cpl_core.logging.logger_service
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.logging.logging\_level\_enum
|
||||
cpl_core.logging.logging\_level\_enum
|
||||
---------------------------------------
|
||||
|
||||
.. automodule:: cpl.logging.logging_level_enum
|
||||
.. automodule:: cpl_core.logging.logging_level_enum
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.logging.logging\_settings
|
||||
cpl_core.logging.logging\_settings
|
||||
------------------------------------
|
||||
|
||||
.. automodule:: cpl.logging.logging_settings
|
||||
.. automodule:: cpl_core.logging.logging_settings
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.logging.logging\_settings\_name\_enum
|
||||
cpl_core.logging.logging\_settings\_name\_enum
|
||||
------------------------------------------------
|
||||
|
||||
.. automodule:: cpl.logging.logging_settings_name_enum
|
||||
.. automodule:: cpl_core.logging.logging_settings_name_enum
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@@ -1,42 +1,42 @@
|
||||
cpl.mailing
|
||||
cpl_core.mailing
|
||||
===================
|
||||
|
||||
cpl.mailing.email
|
||||
cpl_core.mailing.email
|
||||
------------------------
|
||||
|
||||
.. automodule:: cpl.mailing.email
|
||||
.. automodule:: cpl_core.mailing.email
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.mailing.email\_client\_abc
|
||||
cpl_core.mailing.email\_client\_abc
|
||||
-------------------------------------
|
||||
|
||||
.. automodule:: cpl.mailing.email_client_abc
|
||||
.. automodule:: cpl_core.mailing.email_client_abc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.mailing.email\_client\_service
|
||||
cpl_core.mailing.email\_client\_service
|
||||
-----------------------------------------
|
||||
|
||||
.. automodule:: cpl.mailing.email_client_service
|
||||
.. automodule:: cpl_core.mailing.email_client_service
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.mailing.email\_client\_settings
|
||||
cpl_core.mailing.email\_client\_settings
|
||||
------------------------------------------
|
||||
|
||||
.. automodule:: cpl.mailing.email_client_settings
|
||||
.. automodule:: cpl_core.mailing.email_client_settings
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.mailing.email\_client\_settings\_name\_enum
|
||||
cpl_core.mailing.email\_client\_settings\_name\_enum
|
||||
------------------------------------------------------
|
||||
|
||||
.. automodule:: cpl.mailing.email_client_settings_name_enum
|
||||
.. automodule:: cpl_core.mailing.email_client_settings_name_enum
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
16
docs/build/html/_sources/cpl_core.rst.txt
vendored
Normal file
16
docs/build/html/_sources/cpl_core.rst.txt
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
API Reference
|
||||
===========
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 4
|
||||
|
||||
cpl_core.application
|
||||
cpl_core.configuration
|
||||
cpl_core.console
|
||||
cpl_core.database
|
||||
cpl_core.dependency_injection
|
||||
cpl_core.environment
|
||||
cpl_core.logging
|
||||
cpl_core.mailing
|
||||
cpl_core.time
|
||||
cpl_core.utils
|
@@ -1,18 +1,18 @@
|
||||
cpl.time
|
||||
cpl_core.time
|
||||
================
|
||||
|
||||
cpl.time.time\_format\_settings
|
||||
cpl_core.time.time\_format\_settings
|
||||
--------------------------------------
|
||||
|
||||
.. automodule:: cpl.time.time_format_settings
|
||||
.. automodule:: cpl_core.time.time_format_settings
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.time.time\_format\_settings\_names\_enum
|
||||
cpl_core.time.time\_format\_settings\_names\_enum
|
||||
---------------------------------------------------
|
||||
|
||||
.. automodule:: cpl.time.time_format_settings_names_enum
|
||||
.. automodule:: cpl_core.time.time_format_settings_names_enum
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
@@ -1,26 +1,26 @@
|
||||
cpl.utils
|
||||
cpl_core.utils
|
||||
=================
|
||||
|
||||
cpl.utils.credential\_manager
|
||||
cpl_core.utils.credential\_manager
|
||||
------------------------------------
|
||||
|
||||
.. automodule:: cpl.utils.credential_manager
|
||||
.. automodule:: cpl_core.utils.credential_manager
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.utils.pip
|
||||
cpl_core.utils.pip
|
||||
--------------------
|
||||
|
||||
.. automodule:: cpl.utils.pip
|
||||
.. automodule:: cpl_core.utils.pip
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl.utils.string
|
||||
cpl_core.utils.string
|
||||
-----------------------
|
||||
|
||||
.. automodule:: cpl.utils.string
|
||||
.. automodule:: cpl_core.utils.string
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
10
docs/build/html/_sources/cpl_query.exceptions.rst.txt
vendored
Normal file
10
docs/build/html/_sources/cpl_query.exceptions.rst.txt
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
cpl_query.exceptions
|
||||
=================================
|
||||
|
||||
cpl_query.exceptions
|
||||
----------------------------------------------------
|
||||
|
||||
.. automodule:: cpl_query.exceptions
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
42
docs/build/html/_sources/cpl_query.extension.rst.txt
vendored
Normal file
42
docs/build/html/_sources/cpl_query.extension.rst.txt
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
cpl_query.extension
|
||||
=================================
|
||||
|
||||
cpl_query.extension.iterable_abc
|
||||
----------------------------------------------------
|
||||
|
||||
.. automodule:: cpl_query.extension.iterable_abc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl_query.extension.iterable
|
||||
----------------------------------------------------
|
||||
|
||||
.. automodule:: cpl_query.extension.iterable
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl_query.extension.list
|
||||
----------------------------------------------------
|
||||
|
||||
.. automodule:: cpl_query.extension.list
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl_query.extension.ordered_iterable_abc
|
||||
----------------------------------------------------
|
||||
|
||||
.. automodule:: cpl_query.extension.ordered_iterable_abc
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl_query.extension.ordered_iterable
|
||||
----------------------------------------------------
|
||||
|
||||
.. automodule:: cpl_query.extension.ordered_iterable
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
8
docs/build/html/_sources/cpl_query.rst.txt
vendored
Normal file
8
docs/build/html/_sources/cpl_query.rst.txt
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
Query Reference
|
||||
===========
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 4
|
||||
|
||||
cpl_query.extension
|
||||
cpl_query.exceptions
|
45
docs/build/html/_sources/cpl_query.tests.rst.txt
vendored
Normal file
45
docs/build/html/_sources/cpl_query.tests.rst.txt
vendored
Normal file
@@ -0,0 +1,45 @@
|
||||
cpl\_query.tests package
|
||||
========================
|
||||
|
||||
Submodules
|
||||
----------
|
||||
|
||||
cpl\_query.tests.iterable\_test module
|
||||
--------------------------------------
|
||||
|
||||
.. automodule:: cpl_query.tests.iterable_test
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl\_query.tests.models module
|
||||
------------------------------
|
||||
|
||||
.. automodule:: cpl_query.tests.models
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl\_query.tests.query\_test module
|
||||
-----------------------------------
|
||||
|
||||
.. automodule:: cpl_query.tests.query_test
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
cpl\_query.tests.tester module
|
||||
------------------------------
|
||||
|
||||
.. automodule:: cpl_query.tests.tester
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
||||
|
||||
Module contents
|
||||
---------------
|
||||
|
||||
.. automodule:: cpl_query.tests
|
||||
:members:
|
||||
:undoc-members:
|
||||
:show-inheritance:
|
3
docs/build/html/_sources/index.rst.txt
vendored
3
docs/build/html/_sources/index.rst.txt
vendored
@@ -20,5 +20,6 @@ These pages go into great detail about everything the Library can do.
|
||||
|
||||
introduction
|
||||
getting_started
|
||||
cpl
|
||||
cpl_cli
|
||||
cpl_core
|
||||
cpl_query
|
||||
|
3
docs/build/html/_sources/introduction.md.txt
vendored
3
docs/build/html/_sources/introduction.md.txt
vendored
@@ -8,5 +8,6 @@ This CPL docs help you learn, understand and use the package. From your first ap
|
||||
|
||||
- [Getting started](quickstart)
|
||||
- [Setup](setup)
|
||||
- [API Reference](cpl)
|
||||
- [API Reference](cpl_core)
|
||||
- [CLI Reference](cli.overview)
|
||||
- [Query Reference](cpl_query)
|
||||
|
3
docs/build/html/_sources/modules.rst.txt
vendored
3
docs/build/html/_sources/modules.rst.txt
vendored
@@ -5,5 +5,6 @@ cpl
|
||||
:maxdepth: 4
|
||||
|
||||
getting_started
|
||||
cpl
|
||||
cpl_cli
|
||||
cpl_core
|
||||
cpl_query
|
||||
|
6
docs/build/html/_sources/quickstart.md.txt
vendored
6
docs/build/html/_sources/quickstart.md.txt
vendored
@@ -200,9 +200,9 @@ In this section, you've created an application that uses user input to generate
|
||||
|
||||
To continue exploring CPL and developing applications:
|
||||
|
||||
- [Application base](cpl.application)
|
||||
- [Dependency injection](cpl.dependency_injection)
|
||||
- [Console](cpl.console)
|
||||
- [Application base](cpl_core.application)
|
||||
- [Dependency injection](cpl_core.dependency_injection)
|
||||
- [Console](cpl_core.console)
|
||||
|
||||
<!-- LINKS -->
|
||||
[pip-url]: https://pip.sh-edraft.de
|
||||
|
4
docs/build/html/_sources/setup.md.txt
vendored
4
docs/build/html/_sources/setup.md.txt
vendored
@@ -41,7 +41,7 @@ pip install sh_cpl-cli --extra-index-url https://pip.sh-edraft.de
|
||||
|
||||
## Create initial console app
|
||||
|
||||
You develop apps and packages in the context of an CPL project which is defined in an cpl.json.
|
||||
You develop apps and packages in the context of an CPL project which is defined in an cpl_core.json.
|
||||
|
||||
1. Run the CLI command ```cpl new console``` and provide the name my-app, as shown here:
|
||||
|
||||
@@ -55,7 +55,7 @@ The CLI create a new workspace and a simple 'Hello World' app, ready to run.
|
||||
|
||||
## Create initial library
|
||||
|
||||
You develop apps and packages in the context of an CPL project which is defined in an cpl.json.
|
||||
You develop apps and packages in the context of an CPL project which is defined in an cpl_core.json.
|
||||
|
||||
1. Run the CLI command ```cpl new library``` and provide the name my-lib, as shown here:
|
||||
|
||||
|
106
docs/build/html/_static/basic.css
vendored
106
docs/build/html/_static/basic.css
vendored
@@ -130,7 +130,7 @@ ul.search li a {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
ul.search li div.context {
|
||||
ul.search li p.context {
|
||||
color: #888;
|
||||
margin: 2px 0 0 30px;
|
||||
text-align: left;
|
||||
@@ -277,25 +277,25 @@ p.rubric {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
img.align-left, .figure.align-left, object.align-left {
|
||||
img.align-left, figure.align-left, .figure.align-left, object.align-left {
|
||||
clear: left;
|
||||
float: left;
|
||||
margin-right: 1em;
|
||||
}
|
||||
|
||||
img.align-right, .figure.align-right, object.align-right {
|
||||
img.align-right, figure.align-right, .figure.align-right, object.align-right {
|
||||
clear: right;
|
||||
float: right;
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
img.align-center, .figure.align-center, object.align-center {
|
||||
img.align-center, figure.align-center, .figure.align-center, object.align-center {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
img.align-default, .figure.align-default {
|
||||
img.align-default, figure.align-default, .figure.align-default {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
@@ -319,7 +319,8 @@ img.align-default, .figure.align-default {
|
||||
|
||||
/* -- sidebars -------------------------------------------------------------- */
|
||||
|
||||
div.sidebar {
|
||||
div.sidebar,
|
||||
aside.sidebar {
|
||||
margin: 0 0 0.5em 1em;
|
||||
border: 1px solid #ddb;
|
||||
padding: 7px;
|
||||
@@ -377,12 +378,14 @@ div.body p.centered {
|
||||
/* -- content of sidebars/topics/admonitions -------------------------------- */
|
||||
|
||||
div.sidebar > :last-child,
|
||||
aside.sidebar > :last-child,
|
||||
div.topic > :last-child,
|
||||
div.admonition > :last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
div.sidebar::after,
|
||||
aside.sidebar::after,
|
||||
div.topic::after,
|
||||
div.admonition::after,
|
||||
blockquote::after {
|
||||
@@ -455,20 +458,22 @@ td > :last-child {
|
||||
|
||||
/* -- figures --------------------------------------------------------------- */
|
||||
|
||||
div.figure {
|
||||
div.figure, figure {
|
||||
margin: 0.5em;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
div.figure p.caption {
|
||||
div.figure p.caption, figcaption {
|
||||
padding: 0.3em;
|
||||
}
|
||||
|
||||
div.figure p.caption span.caption-number {
|
||||
div.figure p.caption span.caption-number,
|
||||
figcaption span.caption-number {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
div.figure p.caption span.caption-text {
|
||||
div.figure p.caption span.caption-text,
|
||||
figcaption span.caption-text {
|
||||
}
|
||||
|
||||
/* -- field list styles ----------------------------------------------------- */
|
||||
@@ -503,6 +508,63 @@ table.hlist td {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
/* -- object description styles --------------------------------------------- */
|
||||
|
||||
.sig {
|
||||
font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace;
|
||||
}
|
||||
|
||||
.sig-name, code.descname {
|
||||
background-color: transparent;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.sig-name {
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
code.descname {
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
.sig-prename, code.descclassname {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.optional {
|
||||
font-size: 1.3em;
|
||||
}
|
||||
|
||||
.sig-paren {
|
||||
font-size: larger;
|
||||
}
|
||||
|
||||
.sig-param.n {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/* C++ specific styling */
|
||||
|
||||
.sig-inline.c-texpr,
|
||||
.sig-inline.cpp-texpr {
|
||||
font-family: unset;
|
||||
}
|
||||
|
||||
.sig.c .k, .sig.c .kt,
|
||||
.sig.cpp .k, .sig.cpp .kt {
|
||||
color: #0033B3;
|
||||
}
|
||||
|
||||
.sig.c .m,
|
||||
.sig.cpp .m {
|
||||
color: #1750EB;
|
||||
}
|
||||
|
||||
.sig.c .s, .sig.c .sc,
|
||||
.sig.cpp .s, .sig.cpp .sc {
|
||||
color: #067D17;
|
||||
}
|
||||
|
||||
|
||||
/* -- other body styles ----------------------------------------------------- */
|
||||
|
||||
@@ -629,14 +691,6 @@ dl.glossary dt {
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
.optional {
|
||||
font-size: 1.3em;
|
||||
}
|
||||
|
||||
.sig-paren {
|
||||
font-size: larger;
|
||||
}
|
||||
|
||||
.versionmodified {
|
||||
font-style: italic;
|
||||
}
|
||||
@@ -765,8 +819,12 @@ div.code-block-caption code {
|
||||
|
||||
table.highlighttable td.linenos,
|
||||
span.linenos,
|
||||
div.doctest > div.highlight span.gp { /* gp: Generic.Prompt */
|
||||
div.highlight span.gp { /* gp: Generic.Prompt */
|
||||
user-select: none;
|
||||
-webkit-user-select: text; /* Safari fallback only */
|
||||
-webkit-user-select: none; /* Chrome/Safari */
|
||||
-moz-user-select: none; /* Firefox */
|
||||
-ms-user-select: none; /* IE10+ */
|
||||
}
|
||||
|
||||
div.code-block-caption span.caption-number {
|
||||
@@ -781,16 +839,6 @@ div.literal-block-wrapper {
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
code.descname {
|
||||
background-color: transparent;
|
||||
font-weight: bold;
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
code.descclassname {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
code.xref, a code {
|
||||
background-color: transparent;
|
||||
font-weight: bold;
|
||||
|
4
docs/build/html/_static/css/theme.css
vendored
4
docs/build/html/_static/css/theme.css
vendored
File diff suppressed because one or more lines are too long
2
docs/build/html/_static/doctools.js
vendored
2
docs/build/html/_static/doctools.js
vendored
@@ -301,12 +301,14 @@ var Documentation = {
|
||||
window.location.href = prevHref;
|
||||
return false;
|
||||
}
|
||||
break;
|
||||
case 39: // right
|
||||
var nextHref = $('link[rel="next"]').prop('href');
|
||||
if (nextHref) {
|
||||
window.location.href = nextHref;
|
||||
return false;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
BIN
docs/build/html/_static/fonts/Inconsolata-Bold.ttf
vendored
BIN
docs/build/html/_static/fonts/Inconsolata-Bold.ttf
vendored
Binary file not shown.
Binary file not shown.
BIN
docs/build/html/_static/fonts/Inconsolata.ttf
vendored
BIN
docs/build/html/_static/fonts/Inconsolata.ttf
vendored
Binary file not shown.
BIN
docs/build/html/_static/fonts/Lato-Bold.ttf
vendored
BIN
docs/build/html/_static/fonts/Lato-Bold.ttf
vendored
Binary file not shown.
BIN
docs/build/html/_static/fonts/Lato-Regular.ttf
vendored
BIN
docs/build/html/_static/fonts/Lato-Regular.ttf
vendored
Binary file not shown.
BIN
docs/build/html/_static/fonts/Lato/lato-bold.eot
vendored
BIN
docs/build/html/_static/fonts/Lato/lato-bold.eot
vendored
Binary file not shown.
BIN
docs/build/html/_static/fonts/Lato/lato-bold.ttf
vendored
BIN
docs/build/html/_static/fonts/Lato/lato-bold.ttf
vendored
Binary file not shown.
BIN
docs/build/html/_static/fonts/Lato/lato-bold.woff
vendored
BIN
docs/build/html/_static/fonts/Lato/lato-bold.woff
vendored
Binary file not shown.
BIN
docs/build/html/_static/fonts/Lato/lato-bold.woff2
vendored
BIN
docs/build/html/_static/fonts/Lato/lato-bold.woff2
vendored
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user