Sync
Core synchronization logic. sync_packages() is the public entry point —
it orchestrates Gitea queries, version checks, downloads, and Devpi uploads
for all configured mappings.
devpi_gitea_sync.sync
SyncFailure
sync_packages(config, *, organizations=None, mapping_names=None, dry_run=False, force=False, package_filters=None)
Synchronise Python packages from configured Gitea organisations into Devpi.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
SyncConfig
|
The synchronization configuration. |
required |
organizations
|
Sequence[str] | None
|
A list of organizations to synchronize. |
None
|
mapping_names
|
Sequence[str] | None
|
A list of mapping names to synchronize. |
None
|
dry_run
|
bool
|
If True, discover assets without downloading or uploading them. |
False
|
force
|
bool
|
If True, re-upload package versions even if they already exist in Devpi. |
False
|
package_filters
|
dict[str, set[str]] | None
|
A dictionary of package filters. |
None
|
Raises:
| Type | Description |
|---|---|
SyncFailure
|
If any part of the synchronization fails. |
Source code in devpi_gitea_sync/sync.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | |