pulp-python-client 3.12.5__tar.gz → 3.13.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulp-python-client might be problematic. Click here for more details.
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/PKG-INFO +3 -3
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/README.md +48 -48
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/pulp_python_client.egg-info/PKG-INFO +3 -3
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/pulp_python_client.egg-info/SOURCES.txt +5 -8
- pulp_python-client-3.13.0/pulp_python_client.egg-info/requires.txt +4 -0
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/pulpcore/client/pulp_python/__init__.py +9 -10
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/pulpcore/client/pulp_python/api/__init__.py +1 -2
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/api/content_packages_api.py +1859 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/api/distributions_pypi_api.py +3935 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/api/publications_pypi_api.py +2698 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/api/pypi_api.py +338 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/api/pypi_legacy_api.py +361 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/api/pypi_metadata_api.py +353 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/api/pypi_simple_api.py +958 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/api/remotes_python_api.py +4286 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/api/repositories_python_api.py +4588 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/api/repositories_python_versions_api.py +1602 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/api_client.py +798 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/api_response.py +21 -0
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/pulpcore/client/pulp_python/configuration.py +266 -73
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/pulpcore/client/pulp_python/exceptions.py +99 -20
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/pulpcore/client/pulp_python/models/__init__.py +5 -8
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/async_operation_response.py +88 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/content_summary_response.py +92 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/exclude_platforms_enum.py +40 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/my_permissions_response.py +88 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/nested_role.py +93 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/nested_role_response.py +92 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/object_roles_response.py +96 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/package_metadata_response.py +109 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/package_types_enum.py +44 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/package_upload_task_response.py +103 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/paginated_repository_version_response_list.py +112 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/paginatedpython_python_distribution_response_list.py +112 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/paginatedpython_python_package_content_response_list.py +112 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/paginatedpython_python_publication_response_list.py +112 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/paginatedpython_python_remote_response_list.py +112 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/paginatedpython_python_repository_response_list.py +112 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/patchedpython_python_distribution.py +125 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/patchedpython_python_remote.py +219 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/patchedpython_python_repository.py +114 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/policy_enum.py +39 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/python_python_distribution.py +125 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/python_python_distribution_response.py +149 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/python_python_package_content_response.py +199 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/python_python_publication.py +90 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/python_python_publication_response.py +111 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/python_python_remote.py +219 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/python_python_remote_response.py +213 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/python_python_remote_response_hidden_fields_inner.py +90 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/python_python_repository.py +114 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/python_python_repository_response.py +139 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/repair.py +88 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/repository_add_remove_content.py +93 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/repository_sync_url.py +90 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/repository_version_response.py +121 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/set_label.py +103 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/set_label_response.py +103 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/summary_response.py +92 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/unset_label.py +96 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/models/unset_label_response.py +100 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/py.typed +0 -0
- pulp_python-client-3.13.0/pulpcore/client/pulp_python/rest.py +258 -0
- pulp_python-client-3.13.0/pyproject.toml +89 -0
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/setup.py +19 -9
- pulp_python-client-3.13.0/test/test_async_operation_response.py +53 -0
- pulp_python-client-3.13.0/test/test_content_packages_api.py +53 -0
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/test/test_content_summary_response.py +17 -18
- pulp_python-client-3.13.0/test/test_distributions_pypi_api.py +116 -0
- pulp_python-client-3.13.0/test/test_exclude_platforms_enum.py +34 -0
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/test/test_my_permissions_response.py +17 -18
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/test/test_nested_role.py +17 -18
- pulp_python-client-3.13.0/test/test_nested_role_response.py +59 -0
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/test/test_object_roles_response.py +21 -22
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/test/test_package_metadata_response.py +18 -19
- pulp_python-client-3.13.0/test/test_package_types_enum.py +34 -0
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/test/test_package_upload_task_response.py +19 -20
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/test/test_paginated_repository_version_response_list.py +26 -27
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/test/test_paginatedpython_python_distribution_response_list.py +40 -41
- pulp_python-client-3.13.0/test/test_paginatedpython_python_package_content_response_list.py +125 -0
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/test/test_paginatedpython_python_publication_response_list.py +28 -29
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/test/test_paginatedpython_python_remote_response_list.py +50 -51
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/test/test_paginatedpython_python_repository_response_list.py +34 -35
- pulp_python-client-3.13.0/test/test_patchedpython_python_distribution.py +62 -0
- pulp_python-client-3.13.0/test/test_patchedpython_python_remote.py +90 -0
- pulp_python-client-3.13.0/test/test_patchedpython_python_repository.py +59 -0
- pulp_python-client-3.13.0/test/test_policy_enum.py +34 -0
- pulp_python-client-3.13.0/test/test_publications_pypi_api.py +88 -0
- pulp_python-client-3.13.0/test/test_pypi_api.py +39 -0
- pulp_python-client-3.13.0/test/test_pypi_legacy_api.py +39 -0
- pulp_python-client-3.13.0/test/test_pypi_metadata_api.py +39 -0
- pulp_python-client-3.13.0/test/test_pypi_simple_api.py +53 -0
- pulp_python-client-3.13.0/test/test_python_python_distribution.py +64 -0
- pulp_python-client-3.13.0/test/test_python_python_distribution_response.py +70 -0
- pulp_python-client-3.13.0/test/test_python_python_package_content_response.py +83 -0
- pulp_python-client-3.13.0/test/test_python_python_publication.py +53 -0
- pulp_python-client-3.13.0/test/test_python_python_publication_response.py +60 -0
- pulp_python-client-3.13.0/test/test_python_python_remote.py +92 -0
- pulp_python-client-3.13.0/test/test_python_python_remote_response.py +96 -0
- pulp_python-client-3.13.0/test/test_python_python_remote_response_hidden_fields_inner.py +55 -0
- pulp_python-client-3.13.0/test/test_python_python_repository.py +60 -0
- pulp_python-client-3.13.0/test/test_python_python_repository_response.py +66 -0
- pulp_python-client-3.13.0/test/test_remotes_python_api.py +123 -0
- pulp_python-client-3.13.0/test/test_repair.py +52 -0
- pulp_python-client-3.13.0/test/test_repositories_python_api.py +130 -0
- pulp_python-client-3.13.0/test/test_repositories_python_versions_api.py +59 -0
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/test/test_repository_add_remove_content.py +18 -19
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/test/test_repository_sync_url.py +16 -17
- pulp_python-client-3.13.0/test/test_repository_version_response.py +68 -0
- pulp_python-client-3.13.0/test/test_set_label.py +55 -0
- pulp_python-client-3.13.0/test/test_set_label_response.py +55 -0
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/test/test_summary_response.py +17 -18
- pulp_python-client-3.13.0/test/test_unset_label.py +53 -0
- pulp_python-client-3.13.0/test/test_unset_label_response.py +54 -0
- pulp_python-client-3.12.5/pulp_python_client.egg-info/requires.txt +0 -4
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/api/content_packages_api.py +0 -714
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/api/distributions_pypi_api.py +0 -1654
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/api/publications_pypi_api.py +0 -1106
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/api/pypi_api.py +0 -164
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/api/pypi_legacy_api.py +0 -188
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/api/pypi_metadata_api.py +0 -173
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/api/pypi_simple_api.py +0 -441
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/api/remotes_python_api.py +0 -1783
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/api/repositories_python_api.py +0 -1927
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/api/repositories_python_versions_api.py +0 -637
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/api_client.py +0 -667
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/async_operation_response.py +0 -124
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/content_summary_response.py +0 -176
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/exclude_platforms_enum.py +0 -103
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/my_permissions_response.py +0 -122
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/nested_role.py +0 -177
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/nested_role_response.py +0 -174
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/object_roles_response.py +0 -122
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/package_metadata_response.py +0 -209
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/package_types_enum.py +0 -107
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/package_upload.py +0 -190
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/package_upload_task_response.py +0 -172
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/paginated_repository_version_response_list.py +0 -199
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/paginatedpython_python_distribution_response_list.py +0 -199
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/paginatedpython_python_package_content_response_list.py +0 -199
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/paginatedpython_python_publication_response_list.py +0 -199
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/paginatedpython_python_remote_response_list.py +0 -199
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/paginatedpython_python_repository_response_list.py +0 -199
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/patchedpython_python_distribution.py +0 -347
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/patchedpython_python_remote.py +0 -879
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/patchedpython_python_repository.py +0 -267
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/policy_enum.py +0 -102
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/python_bander_remote.py +0 -184
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/python_python_distribution.py +0 -349
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/python_python_distribution_response.py +0 -507
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/python_python_package_content.py +0 -889
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/python_python_package_content_response.py +0 -989
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/python_python_publication.py +0 -149
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/python_python_publication_response.py +0 -287
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/python_python_remote.py +0 -881
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/python_python_remote_response.py +0 -854
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/python_python_remote_response_hidden_fields.py +0 -149
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/python_python_repository.py +0 -268
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/python_python_repository_response.py +0 -424
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/repair.py +0 -123
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/repository_add_remove_content.py +0 -179
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/repository_sync_url.py +0 -151
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/repository_version_response.py +0 -313
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/set_label.py +0 -153
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/set_label_response.py +0 -150
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/summary_response.py +0 -182
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/unset_label.py +0 -128
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/models/unset_label_response.py +0 -151
- pulp_python-client-3.12.5/pulpcore/client/pulp_python/rest.py +0 -292
- pulp_python-client-3.12.5/test/test_async_operation_response.py +0 -54
- pulp_python-client-3.12.5/test/test_content_packages_api.py +0 -55
- pulp_python-client-3.12.5/test/test_distributions_pypi_api.py +0 -118
- pulp_python-client-3.12.5/test/test_exclude_platforms_enum.py +0 -52
- pulp_python-client-3.12.5/test/test_nested_role_response.py +0 -60
- pulp_python-client-3.12.5/test/test_package_types_enum.py +0 -52
- pulp_python-client-3.12.5/test/test_package_upload.py +0 -57
- pulp_python-client-3.12.5/test/test_paginatedpython_python_package_content_response_list.py +0 -126
- pulp_python-client-3.12.5/test/test_patchedpython_python_distribution.py +0 -63
- pulp_python-client-3.12.5/test/test_patchedpython_python_remote.py +0 -91
- pulp_python-client-3.12.5/test/test_patchedpython_python_repository.py +0 -60
- pulp_python-client-3.12.5/test/test_policy_enum.py +0 -52
- pulp_python-client-3.12.5/test/test_publications_pypi_api.py +0 -90
- pulp_python-client-3.12.5/test/test_pypi_api.py +0 -41
- pulp_python-client-3.12.5/test/test_pypi_legacy_api.py +0 -41
- pulp_python-client-3.12.5/test/test_pypi_metadata_api.py +0 -41
- pulp_python-client-3.12.5/test/test_pypi_simple_api.py +0 -55
- pulp_python-client-3.12.5/test/test_python_bander_remote.py +0 -57
- pulp_python-client-3.12.5/test/test_python_python_distribution.py +0 -65
- pulp_python-client-3.12.5/test/test_python_python_distribution_response.py +0 -71
- pulp_python-client-3.12.5/test/test_python_python_package_content.py +0 -81
- pulp_python-client-3.12.5/test/test_python_python_package_content_response.py +0 -84
- pulp_python-client-3.12.5/test/test_python_python_publication.py +0 -54
- pulp_python-client-3.12.5/test/test_python_python_publication_response.py +0 -61
- pulp_python-client-3.12.5/test/test_python_python_remote.py +0 -93
- pulp_python-client-3.12.5/test/test_python_python_remote_response.py +0 -97
- pulp_python-client-3.12.5/test/test_python_python_remote_response_hidden_fields.py +0 -56
- pulp_python-client-3.12.5/test/test_python_python_repository.py +0 -61
- pulp_python-client-3.12.5/test/test_python_python_repository_response.py +0 -67
- pulp_python-client-3.12.5/test/test_remotes_python_api.py +0 -125
- pulp_python-client-3.12.5/test/test_repair.py +0 -53
- pulp_python-client-3.12.5/test/test_repositories_python_api.py +0 -132
- pulp_python-client-3.12.5/test/test_repositories_python_versions_api.py +0 -61
- pulp_python-client-3.12.5/test/test_repository_version_response.py +0 -60
- pulp_python-client-3.12.5/test/test_set_label.py +0 -56
- pulp_python-client-3.12.5/test/test_set_label_response.py +0 -56
- pulp_python-client-3.12.5/test/test_unset_label.py +0 -54
- pulp_python-client-3.12.5/test/test_unset_label_response.py +0 -55
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/pulp_python_client.egg-info/dependency_links.txt +0 -0
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/pulp_python_client.egg-info/top_level.txt +0 -0
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/pulpcore/__init__.py +0 -0
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/pulpcore/client/__init__.py +0 -0
- {pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/setup.cfg +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pulp_python-client
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.13.0
|
|
4
4
|
Summary: Pulp 3 API
|
|
5
5
|
Home-page:
|
|
6
6
|
Author: Pulp Team
|
|
7
7
|
Author-email: pulp-list@redhat.com
|
|
8
8
|
License: GPLv2+
|
|
9
9
|
Keywords: pulp,pulpcore,client,Pulp 3 API
|
|
10
|
-
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
11
|
|
|
12
|
-
Fetch, Upload, Organize, and Distribute Software Packages
|
|
12
|
+
Fetch, Upload, Organize, and Distribute Software Packages
|
|
13
13
|
|
|
@@ -4,13 +4,14 @@ Fetch, Upload, Organize, and Distribute Software Packages
|
|
|
4
4
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
5
5
|
|
|
6
6
|
- API version: v3
|
|
7
|
-
- Package version: 3.
|
|
7
|
+
- Package version: 3.13.0
|
|
8
|
+
- Generator version: 7.10.0
|
|
8
9
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
9
10
|
For more information, please visit [https://pulpproject.org](https://pulpproject.org)
|
|
10
11
|
|
|
11
12
|
## Requirements.
|
|
12
13
|
|
|
13
|
-
Python
|
|
14
|
+
Python 3.8+
|
|
14
15
|
|
|
15
16
|
## Installation & Usage
|
|
16
17
|
### pip install
|
|
@@ -41,14 +42,16 @@ Then import the package:
|
|
|
41
42
|
import pulpcore.client.pulp_python
|
|
42
43
|
```
|
|
43
44
|
|
|
45
|
+
### Tests
|
|
46
|
+
|
|
47
|
+
Execute `pytest` to run the tests.
|
|
48
|
+
|
|
44
49
|
## Getting Started
|
|
45
50
|
|
|
46
51
|
Please follow the [installation procedure](#installation--usage) and then run the following:
|
|
47
52
|
|
|
48
53
|
```python
|
|
49
|
-
from __future__ import print_function
|
|
50
54
|
|
|
51
|
-
import time
|
|
52
55
|
import pulpcore.client.pulp_python
|
|
53
56
|
from pulpcore.client.pulp_python.rest import ApiException
|
|
54
57
|
from pprint import pprint
|
|
@@ -66,19 +69,15 @@ configuration = pulpcore.client.pulp_python.Configuration(
|
|
|
66
69
|
|
|
67
70
|
# Configure HTTP basic authorization: basicAuth
|
|
68
71
|
configuration = pulpcore.client.pulp_python.Configuration(
|
|
69
|
-
username =
|
|
70
|
-
password =
|
|
72
|
+
username = os.environ["USERNAME"],
|
|
73
|
+
password = os.environ["PASSWORD"]
|
|
71
74
|
)
|
|
72
75
|
|
|
73
76
|
# Configure API key authorization: cookieAuth
|
|
74
|
-
configuration =
|
|
75
|
-
|
|
76
|
-
api_key = {
|
|
77
|
-
'sessionid': 'YOUR_API_KEY'
|
|
78
|
-
}
|
|
79
|
-
)
|
|
77
|
+
configuration.api_key['cookieAuth'] = os.environ["API_KEY"]
|
|
78
|
+
|
|
80
79
|
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
|
|
81
|
-
# configuration.api_key_prefix['
|
|
80
|
+
# configuration.api_key_prefix['cookieAuth'] = 'Bearer'
|
|
82
81
|
|
|
83
82
|
|
|
84
83
|
# Enter a context with an instance of the API client
|
|
@@ -86,41 +85,42 @@ with pulpcore.client.pulp_python.ApiClient(configuration) as api_client:
|
|
|
86
85
|
# Create an instance of the API class
|
|
87
86
|
api_instance = pulpcore.client.pulp_python.ContentPackagesApi(api_client)
|
|
88
87
|
relative_path = 'relative_path_example' # str | Path where the artifact is located relative to distributions base_path
|
|
89
|
-
repository = 'repository_example' # str | A URI of a repository the new content unit should be associated with. (optional)
|
|
90
|
-
artifact = 'artifact_example' # str | Artifact file representing the physical content (optional)
|
|
91
|
-
file =
|
|
92
|
-
upload = 'upload_example' # str | An uncommitted upload that may be turned into the content unit. (optional)
|
|
93
|
-
file_url = 'file_url_example' # str | A url that Pulp can download and turn into the content unit. (optional)
|
|
94
|
-
sha256 = '' # str | The SHA256 digest of this package. (optional) (default to '')
|
|
95
|
-
summary = 'summary_example' # str | A one-line summary of what the package does. (optional)
|
|
96
|
-
description = 'description_example' # str | A longer description of the package that can run to several paragraphs. (optional)
|
|
97
|
-
description_content_type = 'description_content_type_example' # str | A string stating the markup syntax (if any) used in the distribution’s description, so that tools can intelligently render the description. (optional)
|
|
98
|
-
keywords = 'keywords_example' # str | Additional keywords to be used to assist searching for the package in a larger catalog. (optional)
|
|
99
|
-
home_page = 'home_page_example' # str | The URL for the package's home page. (optional)
|
|
100
|
-
download_url = 'download_url_example' # str | Legacy field denoting the URL from which this package can be downloaded. (optional)
|
|
101
|
-
author = 'author_example' # str | Text containing the author's name. Contact information can also be added, separated with newlines. (optional)
|
|
102
|
-
author_email = 'author_email_example' # str | The author's e-mail address. (optional)
|
|
103
|
-
maintainer = 'maintainer_example' # str | The maintainer's name at a minimum; additional contact information may be provided. (optional)
|
|
104
|
-
maintainer_email = 'maintainer_email_example' # str | The maintainer's e-mail address. (optional)
|
|
105
|
-
license = 'license_example' # str | Text indicating the license covering the distribution (optional)
|
|
106
|
-
requires_python = 'requires_python_example' # str | The Python version(s) that the distribution is guaranteed to be compatible with. (optional)
|
|
107
|
-
project_url = 'project_url_example' # str | A browsable URL for the project and a label for it, separated by a comma. (optional)
|
|
108
|
-
project_urls = None # object | A dictionary of labels and URLs for the project. (optional)
|
|
109
|
-
platform = 'platform_example' # str | A comma-separated list of platform specifications, summarizing the operating systems supported by the package. (optional)
|
|
110
|
-
supported_platform = 'supported_platform_example' # str | Field to specify the OS and CPU for which the binary package was compiled. (optional)
|
|
111
|
-
requires_dist = None # object | A JSON list containing names of some other distutils project required by this distribution. (optional)
|
|
112
|
-
provides_dist = None # object | A JSON list containing names of a Distutils project which is contained within this distribution. (optional)
|
|
113
|
-
obsoletes_dist = None # object | A JSON list containing names of a distutils project's distribution which this distribution renders obsolete, meaning that the two projects should not be installed at the same time. (optional)
|
|
114
|
-
requires_external = None # object | A JSON list containing some dependency in the system that the distribution is to be used. (optional)
|
|
115
|
-
classifiers = None # object | A JSON list containing classification values for a Python package. (optional)
|
|
88
|
+
repository = 'repository_example' # str | A URI of a repository the new content unit should be associated with. (optional)
|
|
89
|
+
artifact = 'artifact_example' # str | Artifact file representing the physical content (optional)
|
|
90
|
+
file = None # bytearray | An uploaded file that may be turned into the content unit. (optional)
|
|
91
|
+
upload = 'upload_example' # str | An uncommitted upload that may be turned into the content unit. (optional)
|
|
92
|
+
file_url = 'file_url_example' # str | A url that Pulp can download and turn into the content unit. (optional)
|
|
93
|
+
sha256 = '' # str | The SHA256 digest of this package. (optional) (default to '')
|
|
94
|
+
summary = 'summary_example' # str | A one-line summary of what the package does. (optional)
|
|
95
|
+
description = 'description_example' # str | A longer description of the package that can run to several paragraphs. (optional)
|
|
96
|
+
description_content_type = 'description_content_type_example' # str | A string stating the markup syntax (if any) used in the distribution’s description, so that tools can intelligently render the description. (optional)
|
|
97
|
+
keywords = 'keywords_example' # str | Additional keywords to be used to assist searching for the package in a larger catalog. (optional)
|
|
98
|
+
home_page = 'home_page_example' # str | The URL for the package's home page. (optional)
|
|
99
|
+
download_url = 'download_url_example' # str | Legacy field denoting the URL from which this package can be downloaded. (optional)
|
|
100
|
+
author = 'author_example' # str | Text containing the author's name. Contact information can also be added, separated with newlines. (optional)
|
|
101
|
+
author_email = 'author_email_example' # str | The author's e-mail address. (optional)
|
|
102
|
+
maintainer = 'maintainer_example' # str | The maintainer's name at a minimum; additional contact information may be provided. (optional)
|
|
103
|
+
maintainer_email = 'maintainer_email_example' # str | The maintainer's e-mail address. (optional)
|
|
104
|
+
license = 'license_example' # str | Text indicating the license covering the distribution (optional)
|
|
105
|
+
requires_python = 'requires_python_example' # str | The Python version(s) that the distribution is guaranteed to be compatible with. (optional)
|
|
106
|
+
project_url = 'project_url_example' # str | A browsable URL for the project and a label for it, separated by a comma. (optional)
|
|
107
|
+
project_urls = None # object | A dictionary of labels and URLs for the project. (optional)
|
|
108
|
+
platform = 'platform_example' # str | A comma-separated list of platform specifications, summarizing the operating systems supported by the package. (optional)
|
|
109
|
+
supported_platform = 'supported_platform_example' # str | Field to specify the OS and CPU for which the binary package was compiled. (optional)
|
|
110
|
+
requires_dist = None # object | A JSON list containing names of some other distutils project required by this distribution. (optional)
|
|
111
|
+
provides_dist = None # object | A JSON list containing names of a Distutils project which is contained within this distribution. (optional)
|
|
112
|
+
obsoletes_dist = None # object | A JSON list containing names of a distutils project's distribution which this distribution renders obsolete, meaning that the two projects should not be installed at the same time. (optional)
|
|
113
|
+
requires_external = None # object | A JSON list containing some dependency in the system that the distribution is to be used. (optional)
|
|
114
|
+
classifiers = None # object | A JSON list containing classification values for a Python package. (optional)
|
|
116
115
|
|
|
117
116
|
try:
|
|
118
117
|
# Create a python package content
|
|
119
118
|
api_response = api_instance.create(relative_path, repository=repository, artifact=artifact, file=file, upload=upload, file_url=file_url, sha256=sha256, summary=summary, description=description, description_content_type=description_content_type, keywords=keywords, home_page=home_page, download_url=download_url, author=author, author_email=author_email, maintainer=maintainer, maintainer_email=maintainer_email, license=license, requires_python=requires_python, project_url=project_url, project_urls=project_urls, platform=platform, supported_platform=supported_platform, requires_dist=requires_dist, provides_dist=provides_dist, obsoletes_dist=obsoletes_dist, requires_external=requires_external, classifiers=classifiers)
|
|
119
|
+
print("The response of ContentPackagesApi->create:\n")
|
|
120
120
|
pprint(api_response)
|
|
121
121
|
except ApiException as e:
|
|
122
122
|
print("Exception when calling ContentPackagesApi->create: %s\n" % e)
|
|
123
|
-
|
|
123
|
+
|
|
124
124
|
```
|
|
125
125
|
|
|
126
126
|
## Documentation for API Endpoints
|
|
@@ -202,7 +202,6 @@ Class | Method | HTTP request | Description
|
|
|
202
202
|
- [ObjectRolesResponse](docs/ObjectRolesResponse.md)
|
|
203
203
|
- [PackageMetadataResponse](docs/PackageMetadataResponse.md)
|
|
204
204
|
- [PackageTypesEnum](docs/PackageTypesEnum.md)
|
|
205
|
-
- [PackageUpload](docs/PackageUpload.md)
|
|
206
205
|
- [PackageUploadTaskResponse](docs/PackageUploadTaskResponse.md)
|
|
207
206
|
- [PaginatedRepositoryVersionResponseList](docs/PaginatedRepositoryVersionResponseList.md)
|
|
208
207
|
- [PaginatedpythonPythonDistributionResponseList](docs/PaginatedpythonPythonDistributionResponseList.md)
|
|
@@ -214,16 +213,14 @@ Class | Method | HTTP request | Description
|
|
|
214
213
|
- [PatchedpythonPythonRemote](docs/PatchedpythonPythonRemote.md)
|
|
215
214
|
- [PatchedpythonPythonRepository](docs/PatchedpythonPythonRepository.md)
|
|
216
215
|
- [PolicyEnum](docs/PolicyEnum.md)
|
|
217
|
-
- [PythonBanderRemote](docs/PythonBanderRemote.md)
|
|
218
216
|
- [PythonPythonDistribution](docs/PythonPythonDistribution.md)
|
|
219
217
|
- [PythonPythonDistributionResponse](docs/PythonPythonDistributionResponse.md)
|
|
220
|
-
- [PythonPythonPackageContent](docs/PythonPythonPackageContent.md)
|
|
221
218
|
- [PythonPythonPackageContentResponse](docs/PythonPythonPackageContentResponse.md)
|
|
222
219
|
- [PythonPythonPublication](docs/PythonPythonPublication.md)
|
|
223
220
|
- [PythonPythonPublicationResponse](docs/PythonPythonPublicationResponse.md)
|
|
224
221
|
- [PythonPythonRemote](docs/PythonPythonRemote.md)
|
|
225
222
|
- [PythonPythonRemoteResponse](docs/PythonPythonRemoteResponse.md)
|
|
226
|
-
- [
|
|
223
|
+
- [PythonPythonRemoteResponseHiddenFieldsInner](docs/PythonPythonRemoteResponseHiddenFieldsInner.md)
|
|
227
224
|
- [PythonPythonRepository](docs/PythonPythonRepository.md)
|
|
228
225
|
- [PythonPythonRepositoryResponse](docs/PythonPythonRepositoryResponse.md)
|
|
229
226
|
- [Repair](docs/Repair.md)
|
|
@@ -237,15 +234,18 @@ Class | Method | HTTP request | Description
|
|
|
237
234
|
- [UnsetLabelResponse](docs/UnsetLabelResponse.md)
|
|
238
235
|
|
|
239
236
|
|
|
237
|
+
<a id="documentation-for-authorization"></a>
|
|
240
238
|
## Documentation For Authorization
|
|
241
239
|
|
|
242
240
|
|
|
243
|
-
|
|
241
|
+
Authentication schemes defined for the API:
|
|
242
|
+
<a id="basicAuth"></a>
|
|
243
|
+
### basicAuth
|
|
244
244
|
|
|
245
245
|
- **Type**: HTTP basic authentication
|
|
246
246
|
|
|
247
|
-
|
|
248
|
-
|
|
247
|
+
<a id="cookieAuth"></a>
|
|
248
|
+
### cookieAuth
|
|
249
249
|
|
|
250
250
|
- **Type**: API key
|
|
251
251
|
- **API key parameter name**: sessionid
|
{pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/pulp_python_client.egg-info/PKG-INFO
RENAMED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pulp-python-client
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.13.0
|
|
4
4
|
Summary: Pulp 3 API
|
|
5
5
|
Home-page:
|
|
6
6
|
Author: Pulp Team
|
|
7
7
|
Author-email: pulp-list@redhat.com
|
|
8
8
|
License: GPLv2+
|
|
9
9
|
Keywords: pulp,pulpcore,client,Pulp 3 API
|
|
10
|
-
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
11
|
|
|
12
|
-
Fetch, Upload, Organize, and Distribute Software Packages
|
|
12
|
+
Fetch, Upload, Organize, and Distribute Software Packages
|
|
13
13
|
|
{pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/pulp_python_client.egg-info/SOURCES.txt
RENAMED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
README.md
|
|
2
|
+
pyproject.toml
|
|
2
3
|
setup.cfg
|
|
3
4
|
setup.py
|
|
4
5
|
pulp_python_client.egg-info/PKG-INFO
|
|
@@ -10,8 +11,10 @@ pulpcore/__init__.py
|
|
|
10
11
|
pulpcore/client/__init__.py
|
|
11
12
|
pulpcore/client/pulp_python/__init__.py
|
|
12
13
|
pulpcore/client/pulp_python/api_client.py
|
|
14
|
+
pulpcore/client/pulp_python/api_response.py
|
|
13
15
|
pulpcore/client/pulp_python/configuration.py
|
|
14
16
|
pulpcore/client/pulp_python/exceptions.py
|
|
17
|
+
pulpcore/client/pulp_python/py.typed
|
|
15
18
|
pulpcore/client/pulp_python/rest.py
|
|
16
19
|
pulpcore/client/pulp_python/api/__init__.py
|
|
17
20
|
pulpcore/client/pulp_python/api/content_packages_api.py
|
|
@@ -34,7 +37,6 @@ pulpcore/client/pulp_python/models/nested_role_response.py
|
|
|
34
37
|
pulpcore/client/pulp_python/models/object_roles_response.py
|
|
35
38
|
pulpcore/client/pulp_python/models/package_metadata_response.py
|
|
36
39
|
pulpcore/client/pulp_python/models/package_types_enum.py
|
|
37
|
-
pulpcore/client/pulp_python/models/package_upload.py
|
|
38
40
|
pulpcore/client/pulp_python/models/package_upload_task_response.py
|
|
39
41
|
pulpcore/client/pulp_python/models/paginated_repository_version_response_list.py
|
|
40
42
|
pulpcore/client/pulp_python/models/paginatedpython_python_distribution_response_list.py
|
|
@@ -46,16 +48,14 @@ pulpcore/client/pulp_python/models/patchedpython_python_distribution.py
|
|
|
46
48
|
pulpcore/client/pulp_python/models/patchedpython_python_remote.py
|
|
47
49
|
pulpcore/client/pulp_python/models/patchedpython_python_repository.py
|
|
48
50
|
pulpcore/client/pulp_python/models/policy_enum.py
|
|
49
|
-
pulpcore/client/pulp_python/models/python_bander_remote.py
|
|
50
51
|
pulpcore/client/pulp_python/models/python_python_distribution.py
|
|
51
52
|
pulpcore/client/pulp_python/models/python_python_distribution_response.py
|
|
52
|
-
pulpcore/client/pulp_python/models/python_python_package_content.py
|
|
53
53
|
pulpcore/client/pulp_python/models/python_python_package_content_response.py
|
|
54
54
|
pulpcore/client/pulp_python/models/python_python_publication.py
|
|
55
55
|
pulpcore/client/pulp_python/models/python_python_publication_response.py
|
|
56
56
|
pulpcore/client/pulp_python/models/python_python_remote.py
|
|
57
57
|
pulpcore/client/pulp_python/models/python_python_remote_response.py
|
|
58
|
-
pulpcore/client/pulp_python/models/
|
|
58
|
+
pulpcore/client/pulp_python/models/python_python_remote_response_hidden_fields_inner.py
|
|
59
59
|
pulpcore/client/pulp_python/models/python_python_repository.py
|
|
60
60
|
pulpcore/client/pulp_python/models/python_python_repository_response.py
|
|
61
61
|
pulpcore/client/pulp_python/models/repair.py
|
|
@@ -78,7 +78,6 @@ test/test_nested_role_response.py
|
|
|
78
78
|
test/test_object_roles_response.py
|
|
79
79
|
test/test_package_metadata_response.py
|
|
80
80
|
test/test_package_types_enum.py
|
|
81
|
-
test/test_package_upload.py
|
|
82
81
|
test/test_package_upload_task_response.py
|
|
83
82
|
test/test_paginated_repository_version_response_list.py
|
|
84
83
|
test/test_paginatedpython_python_distribution_response_list.py
|
|
@@ -95,16 +94,14 @@ test/test_pypi_api.py
|
|
|
95
94
|
test/test_pypi_legacy_api.py
|
|
96
95
|
test/test_pypi_metadata_api.py
|
|
97
96
|
test/test_pypi_simple_api.py
|
|
98
|
-
test/test_python_bander_remote.py
|
|
99
97
|
test/test_python_python_distribution.py
|
|
100
98
|
test/test_python_python_distribution_response.py
|
|
101
|
-
test/test_python_python_package_content.py
|
|
102
99
|
test/test_python_python_package_content_response.py
|
|
103
100
|
test/test_python_python_publication.py
|
|
104
101
|
test/test_python_python_publication_response.py
|
|
105
102
|
test/test_python_python_remote.py
|
|
106
103
|
test/test_python_python_remote_response.py
|
|
107
|
-
test/
|
|
104
|
+
test/test_python_python_remote_response_hidden_fields_inner.py
|
|
108
105
|
test/test_python_python_repository.py
|
|
109
106
|
test/test_python_python_repository_response.py
|
|
110
107
|
test/test_remotes_python_api.py
|
{pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/pulpcore/client/pulp_python/__init__.py
RENAMED
|
@@ -5,17 +5,17 @@
|
|
|
5
5
|
"""
|
|
6
6
|
Pulp 3 API
|
|
7
7
|
|
|
8
|
-
Fetch, Upload, Organize, and Distribute Software Packages
|
|
8
|
+
Fetch, Upload, Organize, and Distribute Software Packages
|
|
9
9
|
|
|
10
10
|
The version of the OpenAPI document: v3
|
|
11
11
|
Contact: pulp-list@redhat.com
|
|
12
|
-
Generated by
|
|
13
|
-
"""
|
|
12
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
14
13
|
|
|
14
|
+
Do not edit the class manually.
|
|
15
|
+
""" # noqa: E501
|
|
15
16
|
|
|
16
|
-
from __future__ import absolute_import
|
|
17
17
|
|
|
18
|
-
__version__ = "3.
|
|
18
|
+
__version__ = "3.13.0"
|
|
19
19
|
|
|
20
20
|
# import apis into sdk package
|
|
21
21
|
from pulpcore.client.pulp_python.api.content_packages_api import ContentPackagesApi
|
|
@@ -30,13 +30,16 @@ from pulpcore.client.pulp_python.api.repositories_python_api import Repositories
|
|
|
30
30
|
from pulpcore.client.pulp_python.api.repositories_python_versions_api import RepositoriesPythonVersionsApi
|
|
31
31
|
|
|
32
32
|
# import ApiClient
|
|
33
|
+
from pulpcore.client.pulp_python.api_response import ApiResponse
|
|
33
34
|
from pulpcore.client.pulp_python.api_client import ApiClient
|
|
34
35
|
from pulpcore.client.pulp_python.configuration import Configuration
|
|
35
36
|
from pulpcore.client.pulp_python.exceptions import OpenApiException
|
|
36
37
|
from pulpcore.client.pulp_python.exceptions import ApiTypeError
|
|
37
38
|
from pulpcore.client.pulp_python.exceptions import ApiValueError
|
|
38
39
|
from pulpcore.client.pulp_python.exceptions import ApiKeyError
|
|
40
|
+
from pulpcore.client.pulp_python.exceptions import ApiAttributeError
|
|
39
41
|
from pulpcore.client.pulp_python.exceptions import ApiException
|
|
42
|
+
|
|
40
43
|
# import models into sdk package
|
|
41
44
|
from pulpcore.client.pulp_python.models.async_operation_response import AsyncOperationResponse
|
|
42
45
|
from pulpcore.client.pulp_python.models.content_summary_response import ContentSummaryResponse
|
|
@@ -47,7 +50,6 @@ from pulpcore.client.pulp_python.models.nested_role_response import NestedRoleRe
|
|
|
47
50
|
from pulpcore.client.pulp_python.models.object_roles_response import ObjectRolesResponse
|
|
48
51
|
from pulpcore.client.pulp_python.models.package_metadata_response import PackageMetadataResponse
|
|
49
52
|
from pulpcore.client.pulp_python.models.package_types_enum import PackageTypesEnum
|
|
50
|
-
from pulpcore.client.pulp_python.models.package_upload import PackageUpload
|
|
51
53
|
from pulpcore.client.pulp_python.models.package_upload_task_response import PackageUploadTaskResponse
|
|
52
54
|
from pulpcore.client.pulp_python.models.paginated_repository_version_response_list import PaginatedRepositoryVersionResponseList
|
|
53
55
|
from pulpcore.client.pulp_python.models.paginatedpython_python_distribution_response_list import PaginatedpythonPythonDistributionResponseList
|
|
@@ -59,16 +61,14 @@ from pulpcore.client.pulp_python.models.patchedpython_python_distribution import
|
|
|
59
61
|
from pulpcore.client.pulp_python.models.patchedpython_python_remote import PatchedpythonPythonRemote
|
|
60
62
|
from pulpcore.client.pulp_python.models.patchedpython_python_repository import PatchedpythonPythonRepository
|
|
61
63
|
from pulpcore.client.pulp_python.models.policy_enum import PolicyEnum
|
|
62
|
-
from pulpcore.client.pulp_python.models.python_bander_remote import PythonBanderRemote
|
|
63
64
|
from pulpcore.client.pulp_python.models.python_python_distribution import PythonPythonDistribution
|
|
64
65
|
from pulpcore.client.pulp_python.models.python_python_distribution_response import PythonPythonDistributionResponse
|
|
65
|
-
from pulpcore.client.pulp_python.models.python_python_package_content import PythonPythonPackageContent
|
|
66
66
|
from pulpcore.client.pulp_python.models.python_python_package_content_response import PythonPythonPackageContentResponse
|
|
67
67
|
from pulpcore.client.pulp_python.models.python_python_publication import PythonPythonPublication
|
|
68
68
|
from pulpcore.client.pulp_python.models.python_python_publication_response import PythonPythonPublicationResponse
|
|
69
69
|
from pulpcore.client.pulp_python.models.python_python_remote import PythonPythonRemote
|
|
70
70
|
from pulpcore.client.pulp_python.models.python_python_remote_response import PythonPythonRemoteResponse
|
|
71
|
-
from pulpcore.client.pulp_python.models.
|
|
71
|
+
from pulpcore.client.pulp_python.models.python_python_remote_response_hidden_fields_inner import PythonPythonRemoteResponseHiddenFieldsInner
|
|
72
72
|
from pulpcore.client.pulp_python.models.python_python_repository import PythonPythonRepository
|
|
73
73
|
from pulpcore.client.pulp_python.models.python_python_repository_response import PythonPythonRepositoryResponse
|
|
74
74
|
from pulpcore.client.pulp_python.models.repair import Repair
|
|
@@ -80,4 +80,3 @@ from pulpcore.client.pulp_python.models.set_label_response import SetLabelRespon
|
|
|
80
80
|
from pulpcore.client.pulp_python.models.summary_response import SummaryResponse
|
|
81
81
|
from pulpcore.client.pulp_python.models.unset_label import UnsetLabel
|
|
82
82
|
from pulpcore.client.pulp_python.models.unset_label_response import UnsetLabelResponse
|
|
83
|
-
|
{pulp_python-client-3.12.5 → pulp_python-client-3.13.0}/pulpcore/client/pulp_python/api/__init__.py
RENAMED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
from __future__ import absolute_import
|
|
2
|
-
|
|
3
1
|
# flake8: noqa
|
|
4
2
|
|
|
5
3
|
# import apis into api package
|
|
@@ -13,3 +11,4 @@ from pulpcore.client.pulp_python.api.pypi_simple_api import PypiSimpleApi
|
|
|
13
11
|
from pulpcore.client.pulp_python.api.remotes_python_api import RemotesPythonApi
|
|
14
12
|
from pulpcore.client.pulp_python.api.repositories_python_api import RepositoriesPythonApi
|
|
15
13
|
from pulpcore.client.pulp_python.api.repositories_python_versions_api import RepositoriesPythonVersionsApi
|
|
14
|
+
|