package
xsdata.utils.package
package_path(package)
cached
Join the current working path with the package name.
Source code in xsdata/utils/package.py
6 7 8 9 | |
module_path(module)
cached
Join the current working path with the given module name.
Source code in xsdata/utils/package.py
12 13 14 15 | |
module_name(uri)
cached
Convert a file uri to a module name.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
uri
|
str
|
A file URI location |
required |
Returns:
| Type | Description |
|---|---|
str
|
The last part of the URI path stripped from known extensions. |
Source code in xsdata/utils/package.py
18 19 20 21 22 23 24 25 26 27 28 29 30 | |