Skip to content

Commit c8eac56

Browse files
author
yevgen-nykytenko
committed
docs(api-refs): update python-net reference for conversion
1 parent c64100c commit c8eac56

1,865 files changed

Lines changed: 21048 additions & 7502 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

english/python-net/_index.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ type: docs
66
url: /python-net/
77
is_root: true
88
weight: 10
9-
version: 26.3.0
9+
version: 26.5.0
1010
---
1111

1212

@@ -16,8 +16,11 @@ version: 26.3.0
1616
| [`groupdocs.conversion`](/conversion/python-net/groupdocs.conversion/) | Main GroupDocs.Conversion namespace with top-level API classes. |
1717
| [`groupdocs.conversion.caching`](/conversion/python-net/groupdocs.conversion.caching/) | Types under `groupdocs.conversion.caching`. |
1818
| [`groupdocs.conversion.contracts`](/conversion/python-net/groupdocs.conversion.contracts/) | Result, context, and data-transfer types returned by the API. |
19+
| [`groupdocs.conversion.file_types`](/conversion/python-net/groupdocs.conversion.file_types/) | Types under `groupdocs.conversion.file_types`. |
1920
| [`groupdocs.conversion.filetypes`](/conversion/python-net/groupdocs.conversion.filetypes/) | File type constants and format identifiers. |
21+
| [`groupdocs.conversion.fluent`](/conversion/python-net/groupdocs.conversion.fluent/) | Types under `groupdocs.conversion.fluent`. |
2022
| [`groupdocs.conversion.logging`](/conversion/python-net/groupdocs.conversion.logging/) | Logging hooks and listener interfaces. |
2123
| [`groupdocs.conversion.options`](/conversion/python-net/groupdocs.conversion.options/) | Option classes for configuring conversions and operations. |
2224
| [`groupdocs.conversion.options.convert`](/conversion/python-net/groupdocs.conversion.options.convert/) | Types under `groupdocs.conversion.options.convert`. |
2325
| [`groupdocs.conversion.options.load`](/conversion/python-net/groupdocs.conversion.options.load/) | Types under `groupdocs.conversion.options.load`. |
26+
| [`groupdocs.conversion.reporting`](/conversion/python-net/groupdocs.conversion.reporting/) | Types under `groupdocs.conversion.reporting`. |

english/python-net/groupdocs.conversion.caching/_index.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@ Types under `groupdocs.conversion.caching`.
1414
### Classes
1515
| Class | Description |
1616
| :- | :- |
17-
| [`FileCache`](/conversion/python-net/groupdocs.conversion.caching/filecache/) | File caching behaviour. Means that cache is stored on the file system. |
18-
| [`MemoryCache`](/conversion/python-net/groupdocs.conversion.caching/memorycache/) | Memory caching behaviour; the cache is stored in memory. |
17+
| [`FileCache`](/conversion/python-net/groupdocs.conversion.caching/filecache/) | |
18+
| [`ICache`](/conversion/python-net/groupdocs.conversion.caching/icache/) | |
19+
| [`MemoryCache`](/conversion/python-net/groupdocs.conversion.caching/memorycache/) | |

english/python-net/groupdocs.conversion.caching/filecache/__init__/_index.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,12 @@ weight: 10
99
---
1010

1111

12-
## __init__ {#cache_path}
13-
14-
Initializes a new instance of the FileCache class.
12+
## __init__
1513

1614
```python
17-
def __init__(self, cache_path):
15+
def __init__(self):
1816
...
1917
```
2018

21-
| Parameter | Type | Description |
22-
| :- | :- | :- |
23-
| cache_path | `str` | Relative or absolute path where document cache will be stored. |
24-
2519
### See Also
2620
* class [`FileCache`](/conversion/python-net/groupdocs.conversion.caching/filecache/)
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
title: _get_keys_string method
3+
second_title: GroupDocs.Conversion for Python via .NET API References
4+
description:
5+
type: docs
6+
url: /python-net/groupdocs.conversion.caching/filecache/_get_keys_string/
7+
is_root: false
8+
weight: 1010
9+
---
10+
11+
12+
## _get_keys_string {#filter}
13+
14+
```python
15+
def _get_keys_string(self, filter):
16+
...
17+
```
18+
19+
| Parameter | Type | Description |
20+
| :- | :- | :- |
21+
| filter | `str` | |
22+
23+
**Returns:** List[Any]
24+
25+
### See Also
26+
* class [`FileCache`](/conversion/python-net/groupdocs.conversion.caching/filecache/)

english/python-net/groupdocs.conversion.caching/filecache/_index.md

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,29 @@ weight: 10
1111

1212
## FileCache class
1313

14-
File caching behaviour. Means that cache is stored on the file system.
15-
16-
Learn more
17-
18-
- More about caching and optimizing conversion process performance: https://docs.groupdocs.com/display/conversionnet/Caching
19-
2014
The FileCache type exposes the following members:
2115

2216
### Constructors
2317
| Constructor | Description |
2418
| :- | :- |
25-
| [__init__](/conversion/python-net/groupdocs.conversion.caching/filecache/__init__/#cache_path) | Initializes a new instance of the FileCache class. |
19+
| [__init__](/conversion/python-net/groupdocs.conversion.caching/filecache/__init__/) | |
2620

2721
### Methods
2822
| Method | Description |
2923
| :- | :- |
30-
| [get_keys](/conversion/python-net/groupdocs.conversion.caching/filecache/get_keys/#filter) | Returns all keys matching filter. |
31-
| [set](/conversion/python-net/groupdocs.conversion.caching/filecache/set/#key-value) | Inserts a cache entry into the cache. |
32-
| [try_get_value](/conversion/python-net/groupdocs.conversion.caching/filecache/try_get_value/#key-value) | Gets the entry associated with the given key if present. |
24+
| [_get_keys_string](/conversion/python-net/groupdocs.conversion.caching/filecache/_get_keys_string/#filter) | |
25+
| [_init_string](/conversion/python-net/groupdocs.conversion.caching/filecache/_init_string/#cache_path) | |
26+
| [_set_string_object](/conversion/python-net/groupdocs.conversion.caching/filecache/_set_string_object/#key-value) | |
27+
| [_try_get_value_string_object_](/conversion/python-net/groupdocs.conversion.caching/filecache/_try_get_value_string_object_/#key-value) | |
28+
| [get_keys](/conversion/python-net/groupdocs.conversion.caching/filecache/get_keys/) | |
29+
| [get_keys_file](/conversion/python-net/groupdocs.conversion.caching/filecache/get_keys_file/) | |
30+
| [get_keys_string](/conversion/python-net/groupdocs.conversion.caching/filecache/get_keys_string/) | |
31+
| [set](/conversion/python-net/groupdocs.conversion.caching/filecache/set/) | |
32+
| [set_file](/conversion/python-net/groupdocs.conversion.caching/filecache/set_file/) | |
33+
| [set_string](/conversion/python-net/groupdocs.conversion.caching/filecache/set_string/) | |
34+
| [try_get_value](/conversion/python-net/groupdocs.conversion.caching/filecache/try_get_value/) | |
35+
| [try_get_value_file](/conversion/python-net/groupdocs.conversion.caching/filecache/try_get_value_file/) | |
36+
| [try_get_value_string](/conversion/python-net/groupdocs.conversion.caching/filecache/try_get_value_string/) | |
3337

3438
### See Also
3539
* module [`groupdocs.conversion.caching`](/conversion/python-net/groupdocs.conversion.caching/)
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: _init_string method
3+
second_title: GroupDocs.Conversion for Python via .NET API References
4+
description:
5+
type: docs
6+
url: /python-net/groupdocs.conversion.caching/filecache/_init_string/
7+
is_root: false
8+
weight: 1020
9+
---
10+
11+
12+
## _init_string {#cache_path}
13+
14+
```python
15+
def _init_string(self, cache_path):
16+
...
17+
```
18+
19+
| Parameter | Type | Description |
20+
| :- | :- | :- |
21+
| cache_path | `str` | |
22+
23+
### See Also
24+
* class [`FileCache`](/conversion/python-net/groupdocs.conversion.caching/filecache/)
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
title: _set_string_object method
3+
second_title: GroupDocs.Conversion for Python via .NET API References
4+
description:
5+
type: docs
6+
url: /python-net/groupdocs.conversion.caching/filecache/_set_string_object/
7+
is_root: false
8+
weight: 1030
9+
---
10+
11+
12+
## _set_string_object {#key-value}
13+
14+
```python
15+
def _set_string_object(self, key, value):
16+
...
17+
```
18+
19+
| Parameter | Type | Description |
20+
| :- | :- | :- |
21+
| key | `str` | |
22+
| value | `Any` | |
23+
24+
### See Also
25+
* class [`FileCache`](/conversion/python-net/groupdocs.conversion.caching/filecache/)
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: _try_get_value_string_object_ method
3+
second_title: GroupDocs.Conversion for Python via .NET API References
4+
description:
5+
type: docs
6+
url: /python-net/groupdocs.conversion.caching/filecache/_try_get_value_string_object_/
7+
is_root: false
8+
weight: 1040
9+
---
10+
11+
12+
## _try_get_value_string_object_ {#key-value}
13+
14+
```python
15+
def _try_get_value_string_object_(self, key, value):
16+
...
17+
```
18+
19+
| Parameter | Type | Description |
20+
| :- | :- | :- |
21+
| key | `str` | |
22+
| value | `Any` | |
23+
24+
**Returns:** bool
25+
26+
### See Also
27+
* class [`FileCache`](/conversion/python-net/groupdocs.conversion.caching/filecache/)

english/python-net/groupdocs.conversion.caching/filecache/get_keys/_index.md

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,16 @@ description:
55
type: docs
66
url: /python-net/groupdocs.conversion.caching/filecache/get_keys/
77
is_root: false
8-
weight: 1010
8+
weight: 1050
99
---
1010

1111

12-
## get_keys {#filter}
13-
14-
Returns all keys matching filter.
12+
## get_keys
1513

1614
```python
17-
def get_keys(self, filter):
15+
def get_keys(self):
1816
...
1917
```
2018

21-
| Parameter | Type | Description |
22-
| :- | :- | :- |
23-
| filter | `str` | The filter to use. |
24-
25-
**Returns:** Keys matching the filter.
26-
2719
### See Also
2820
* class [`FileCache`](/conversion/python-net/groupdocs.conversion.caching/filecache/)
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
title: get_keys_file method
3+
second_title: GroupDocs.Conversion for Python via .NET API References
4+
description:
5+
type: docs
6+
url: /python-net/groupdocs.conversion.caching/filecache/get_keys_file/
7+
is_root: false
8+
weight: 1060
9+
---
10+
11+
12+
## get_keys_file
13+
14+
```python
15+
def get_keys_file(self):
16+
...
17+
```
18+
19+
### See Also
20+
* class [`FileCache`](/conversion/python-net/groupdocs.conversion.caching/filecache/)

0 commit comments

Comments
 (0)