# coding: utf-8 """ Pulp 3 API Fetch, Upload, Organize, and Distribute Software Packages # noqa: E501 The version of the OpenAPI document: v3 Contact: pulp-list@redhat.com Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import re # noqa: F401 # python 2 and python 3 compatibility library import six from pulpcore.client.pulp_python.api_client import ApiClient from pulpcore.client.pulp_python.exceptions import ( # noqa: F401 ApiTypeError, ApiValueError ) class ContentPackagesApi(object): """NOTE: This class is auto generated by OpenAPI Generator Ref: https://openapi-generator.tech Do not edit the class manually. """ def __init__(self, api_client=None): if api_client is None: api_client = ApiClient() self.api_client = api_client def create(self, relative_path, **kwargs): # noqa: E501 """Create a python package content # noqa: E501 Trigger an asynchronous task to create content,optionally create new repository version. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.create(relative_path, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str relative_path: Path where the artifact is located relative to distributions base_path (required) :param str artifact: Artifact file representing the physical content :param file file: An uploaded file that may be turned into the artifact of the content unit. :param str repository: A URI of a repository the new content unit should be associated with. :param str sha256: The SHA256 digest of this package. :param str summary: A one-line summary of what the package does. :param str description: A longer description of the package that can run to several paragraphs. :param str description_content_type: A string stating the markup syntax (if any) used in the distribution’s description, so that tools can intelligently render the description. :param str keywords: Additional keywords to be used to assist searching for the package in a larger catalog. :param str home_page: The URL for the package's home page. :param str download_url: Legacy field denoting the URL from which this package can be downloaded. :param str author: Text containing the author's name. Contact information can also be added, separated with newlines. :param str author_email: The author's e-mail address. :param str maintainer: The maintainer's name at a minimum; additional contact information may be provided. :param str maintainer_email: The maintainer's e-mail address. :param str license: Text indicating the license covering the distribution :param str requires_python: The Python version(s) that the distribution is guaranteed to be compatible with. :param str project_url: A browsable URL for the project and a label for it, separated by a comma. :param object project_urls: A dictionary of labels and URLs for the project. :param str platform: A comma-separated list of platform specifications, summarizing the operating systems supported by the package. :param str supported_platform: Field to specify the OS and CPU for which the binary package was compiled. :param object requires_dist: A JSON list containing names of some other distutils project required by this distribution. :param object provides_dist: A JSON list containing names of a Distutils project which is contained within this distribution. :param object obsoletes_dist: 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. :param object requires_external: A JSON list containing some dependency in the system that the distribution is to be used. :param object classifiers: A JSON list containing classification values for a Python package. :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: AsyncOperationResponse If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.create_with_http_info(relative_path, **kwargs) # noqa: E501 def create_with_http_info(self, relative_path, **kwargs): # noqa: E501 """Create a python package content # noqa: E501 Trigger an asynchronous task to create content,optionally create new repository version. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.create_with_http_info(relative_path, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str relative_path: Path where the artifact is located relative to distributions base_path (required) :param str artifact: Artifact file representing the physical content :param file file: An uploaded file that may be turned into the artifact of the content unit. :param str repository: A URI of a repository the new content unit should be associated with. :param str sha256: The SHA256 digest of this package. :param str summary: A one-line summary of what the package does. :param str description: A longer description of the package that can run to several paragraphs. :param str description_content_type: A string stating the markup syntax (if any) used in the distribution’s description, so that tools can intelligently render the description. :param str keywords: Additional keywords to be used to assist searching for the package in a larger catalog. :param str home_page: The URL for the package's home page. :param str download_url: Legacy field denoting the URL from which this package can be downloaded. :param str author: Text containing the author's name. Contact information can also be added, separated with newlines. :param str author_email: The author's e-mail address. :param str maintainer: The maintainer's name at a minimum; additional contact information may be provided. :param str maintainer_email: The maintainer's e-mail address. :param str license: Text indicating the license covering the distribution :param str requires_python: The Python version(s) that the distribution is guaranteed to be compatible with. :param str project_url: A browsable URL for the project and a label for it, separated by a comma. :param object project_urls: A dictionary of labels and URLs for the project. :param str platform: A comma-separated list of platform specifications, summarizing the operating systems supported by the package. :param str supported_platform: Field to specify the OS and CPU for which the binary package was compiled. :param object requires_dist: A JSON list containing names of some other distutils project required by this distribution. :param object provides_dist: A JSON list containing names of a Distutils project which is contained within this distribution. :param object obsoletes_dist: 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. :param object requires_external: A JSON list containing some dependency in the system that the distribution is to be used. :param object classifiers: A JSON list containing classification values for a Python package. :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(AsyncOperationResponse, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'relative_path', 'artifact', 'file', 'repository', 'sha256', 'summary', 'description', 'description_content_type', 'keywords', 'home_page', 'download_url', 'author', 'author_email', 'maintainer', 'maintainer_email', 'license', 'requires_python', 'project_url', 'project_urls', 'platform', 'supported_platform', 'requires_dist', 'provides_dist', 'obsoletes_dist', 'requires_external', 'classifiers' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method create" % key ) local_var_params[key] = val del local_var_params['kwargs'] # verify the required parameter 'relative_path' is set if self.api_client.client_side_validation and ('relative_path' not in local_var_params or # noqa: E501 local_var_params['relative_path'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `relative_path` when calling `create`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] header_params = {} form_params = [] local_var_files = {} if 'artifact' in local_var_params: form_params.append(('artifact', local_var_params['artifact'])) # noqa: E501 if 'relative_path' in local_var_params: form_params.append(('relative_path', local_var_params['relative_path'])) # noqa: E501 if 'file' in local_var_params: local_var_files['file'] = local_var_params['file'] # noqa: E501 if 'repository' in local_var_params: form_params.append(('repository', local_var_params['repository'])) # noqa: E501 if 'sha256' in local_var_params: form_params.append(('sha256', local_var_params['sha256'])) # noqa: E501 if 'summary' in local_var_params: form_params.append(('summary', local_var_params['summary'])) # noqa: E501 if 'description' in local_var_params: form_params.append(('description', local_var_params['description'])) # noqa: E501 if 'description_content_type' in local_var_params: form_params.append(('description_content_type', local_var_params['description_content_type'])) # noqa: E501 if 'keywords' in local_var_params: form_params.append(('keywords', local_var_params['keywords'])) # noqa: E501 if 'home_page' in local_var_params: form_params.append(('home_page', local_var_params['home_page'])) # noqa: E501 if 'download_url' in local_var_params: form_params.append(('download_url', local_var_params['download_url'])) # noqa: E501 if 'author' in local_var_params: form_params.append(('author', local_var_params['author'])) # noqa: E501 if 'author_email' in local_var_params: form_params.append(('author_email', local_var_params['author_email'])) # noqa: E501 if 'maintainer' in local_var_params: form_params.append(('maintainer', local_var_params['maintainer'])) # noqa: E501 if 'maintainer_email' in local_var_params: form_params.append(('maintainer_email', local_var_params['maintainer_email'])) # noqa: E501 if 'license' in local_var_params: form_params.append(('license', local_var_params['license'])) # noqa: E501 if 'requires_python' in local_var_params: form_params.append(('requires_python', local_var_params['requires_python'])) # noqa: E501 if 'project_url' in local_var_params: form_params.append(('project_url', local_var_params['project_url'])) # noqa: E501 if 'project_urls' in local_var_params: form_params.append(('project_urls', local_var_params['project_urls'])) # noqa: E501 if 'platform' in local_var_params: form_params.append(('platform', local_var_params['platform'])) # noqa: E501 if 'supported_platform' in local_var_params: form_params.append(('supported_platform', local_var_params['supported_platform'])) # noqa: E501 if 'requires_dist' in local_var_params: form_params.append(('requires_dist', local_var_params['requires_dist'])) # noqa: E501 if 'provides_dist' in local_var_params: form_params.append(('provides_dist', local_var_params['provides_dist'])) # noqa: E501 if 'obsoletes_dist' in local_var_params: form_params.append(('obsoletes_dist', local_var_params['obsoletes_dist'])) # noqa: E501 if 'requires_external' in local_var_params: form_params.append(('requires_external', local_var_params['requires_external'])) # noqa: E501 if 'classifiers' in local_var_params: form_params.append(('classifiers', local_var_params['classifiers'])) # noqa: E501 body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['multipart/form-data', 'application/x-www-form-urlencoded']) # noqa: E501 # Authentication setting auth_settings = ['basicAuth', 'cookieAuth'] # noqa: E501 return self.api_client.call_api( '/pulp/api/v3/content/python/packages/', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='AsyncOperationResponse', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats) def list(self, **kwargs): # noqa: E501 """List python package contents # noqa: E501 PythonPackageContent represents each individually installable Python package. In the Python ecosystem, this is called a Python Distribution, sometimes (ambiguously) refered to as a package. In Pulp Python, we refer to it as PythonPackageContent. Each PythonPackageContent corresponds to a single filename, for example `pulpcore-3.0.0rc1-py3-none-any.whl` or `pulpcore-3.0.0rc1.tar.gz`. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.list(async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str author: Filter results where author matches value :param list[str] author__in: Filter results where author is in a comma-separated list of values :param str filename: Filter results where filename matches value :param str filename__contains: Filter results where filename contains value :param list[str] filename__in: Filter results where filename is in a comma-separated list of values :param str keywords__contains: Filter results where keywords contains value :param list[str] keywords__in: Filter results where keywords is in a comma-separated list of values :param int limit: Number of results to return per page. :param str name: Filter results where name matches value :param list[str] name__in: Filter results where name is in a comma-separated list of values :param int offset: The initial index from which to return the results. :param str ordering: Which field to use when ordering the results. :param str packagetype: Filter results where packagetype matches value :param list[str] packagetype__in: Filter results where packagetype is in a comma-separated list of values :param str repository_version: Repository Version referenced by HREF :param str repository_version_added: Repository Version referenced by HREF :param str repository_version_removed: Repository Version referenced by HREF :param str requires_python: Filter results where requires_python matches value :param str requires_python__contains: Filter results where requires_python contains value :param list[str] requires_python__in: Filter results where requires_python is in a comma-separated list of values :param str fields: A list of fields to include in the response. :param str exclude_fields: A list of fields to exclude from the response. :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: PaginatedpythonPythonPackageContentResponseList If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.list_with_http_info(**kwargs) # noqa: E501 def list_with_http_info(self, **kwargs): # noqa: E501 """List python package contents # noqa: E501 PythonPackageContent represents each individually installable Python package. In the Python ecosystem, this is called a Python Distribution, sometimes (ambiguously) refered to as a package. In Pulp Python, we refer to it as PythonPackageContent. Each PythonPackageContent corresponds to a single filename, for example `pulpcore-3.0.0rc1-py3-none-any.whl` or `pulpcore-3.0.0rc1.tar.gz`. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.list_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str author: Filter results where author matches value :param list[str] author__in: Filter results where author is in a comma-separated list of values :param str filename: Filter results where filename matches value :param str filename__contains: Filter results where filename contains value :param list[str] filename__in: Filter results where filename is in a comma-separated list of values :param str keywords__contains: Filter results where keywords contains value :param list[str] keywords__in: Filter results where keywords is in a comma-separated list of values :param int limit: Number of results to return per page. :param str name: Filter results where name matches value :param list[str] name__in: Filter results where name is in a comma-separated list of values :param int offset: The initial index from which to return the results. :param str ordering: Which field to use when ordering the results. :param str packagetype: Filter results where packagetype matches value :param list[str] packagetype__in: Filter results where packagetype is in a comma-separated list of values :param str repository_version: Repository Version referenced by HREF :param str repository_version_added: Repository Version referenced by HREF :param str repository_version_removed: Repository Version referenced by HREF :param str requires_python: Filter results where requires_python matches value :param str requires_python__contains: Filter results where requires_python contains value :param list[str] requires_python__in: Filter results where requires_python is in a comma-separated list of values :param str fields: A list of fields to include in the response. :param str exclude_fields: A list of fields to exclude from the response. :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(PaginatedpythonPythonPackageContentResponseList, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'author', 'author__in', 'filename', 'filename__contains', 'filename__in', 'keywords__contains', 'keywords__in', 'limit', 'name', 'name__in', 'offset', 'ordering', 'packagetype', 'packagetype__in', 'repository_version', 'repository_version_added', 'repository_version_removed', 'requires_python', 'requires_python__contains', 'requires_python__in', 'fields', 'exclude_fields' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method list" % key ) local_var_params[key] = val del local_var_params['kwargs'] collection_formats = {} path_params = {} query_params = [] if 'author' in local_var_params and local_var_params['author'] is not None: # noqa: E501 query_params.append(('author', local_var_params['author'])) # noqa: E501 if 'author__in' in local_var_params and local_var_params['author__in'] is not None: # noqa: E501 query_params.append(('author__in', local_var_params['author__in'])) # noqa: E501 collection_formats['author__in'] = 'csv' # noqa: E501 if 'filename' in local_var_params and local_var_params['filename'] is not None: # noqa: E501 query_params.append(('filename', local_var_params['filename'])) # noqa: E501 if 'filename__contains' in local_var_params and local_var_params['filename__contains'] is not None: # noqa: E501 query_params.append(('filename__contains', local_var_params['filename__contains'])) # noqa: E501 if 'filename__in' in local_var_params and local_var_params['filename__in'] is not None: # noqa: E501 query_params.append(('filename__in', local_var_params['filename__in'])) # noqa: E501 collection_formats['filename__in'] = 'csv' # noqa: E501 if 'keywords__contains' in local_var_params and local_var_params['keywords__contains'] is not None: # noqa: E501 query_params.append(('keywords__contains', local_var_params['keywords__contains'])) # noqa: E501 if 'keywords__in' in local_var_params and local_var_params['keywords__in'] is not None: # noqa: E501 query_params.append(('keywords__in', local_var_params['keywords__in'])) # noqa: E501 collection_formats['keywords__in'] = 'csv' # noqa: E501 if 'limit' in local_var_params and local_var_params['limit'] is not None: # noqa: E501 query_params.append(('limit', local_var_params['limit'])) # noqa: E501 if 'name' in local_var_params and local_var_params['name'] is not None: # noqa: E501 query_params.append(('name', local_var_params['name'])) # noqa: E501 if 'name__in' in local_var_params and local_var_params['name__in'] is not None: # noqa: E501 query_params.append(('name__in', local_var_params['name__in'])) # noqa: E501 collection_formats['name__in'] = 'csv' # noqa: E501 if 'offset' in local_var_params and local_var_params['offset'] is not None: # noqa: E501 query_params.append(('offset', local_var_params['offset'])) # noqa: E501 if 'ordering' in local_var_params and local_var_params['ordering'] is not None: # noqa: E501 query_params.append(('ordering', local_var_params['ordering'])) # noqa: E501 if 'packagetype' in local_var_params and local_var_params['packagetype'] is not None: # noqa: E501 query_params.append(('packagetype', local_var_params['packagetype'])) # noqa: E501 if 'packagetype__in' in local_var_params and local_var_params['packagetype__in'] is not None: # noqa: E501 query_params.append(('packagetype__in', local_var_params['packagetype__in'])) # noqa: E501 collection_formats['packagetype__in'] = 'csv' # noqa: E501 if 'repository_version' in local_var_params and local_var_params['repository_version'] is not None: # noqa: E501 query_params.append(('repository_version', local_var_params['repository_version'])) # noqa: E501 if 'repository_version_added' in local_var_params and local_var_params['repository_version_added'] is not None: # noqa: E501 query_params.append(('repository_version_added', local_var_params['repository_version_added'])) # noqa: E501 if 'repository_version_removed' in local_var_params and local_var_params['repository_version_removed'] is not None: # noqa: E501 query_params.append(('repository_version_removed', local_var_params['repository_version_removed'])) # noqa: E501 if 'requires_python' in local_var_params and local_var_params['requires_python'] is not None: # noqa: E501 query_params.append(('requires_python', local_var_params['requires_python'])) # noqa: E501 if 'requires_python__contains' in local_var_params and local_var_params['requires_python__contains'] is not None: # noqa: E501 query_params.append(('requires_python__contains', local_var_params['requires_python__contains'])) # noqa: E501 if 'requires_python__in' in local_var_params and local_var_params['requires_python__in'] is not None: # noqa: E501 query_params.append(('requires_python__in', local_var_params['requires_python__in'])) # noqa: E501 collection_formats['requires_python__in'] = 'csv' # noqa: E501 if 'fields' in local_var_params and local_var_params['fields'] is not None: # noqa: E501 query_params.append(('fields', local_var_params['fields'])) # noqa: E501 if 'exclude_fields' in local_var_params and local_var_params['exclude_fields'] is not None: # noqa: E501 query_params.append(('exclude_fields', local_var_params['exclude_fields'])) # noqa: E501 header_params = {} form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 # Authentication setting auth_settings = ['basicAuth', 'cookieAuth'] # noqa: E501 return self.api_client.call_api( '/pulp/api/v3/content/python/packages/', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='PaginatedpythonPythonPackageContentResponseList', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats) def read(self, python_python_package_content_href, **kwargs): # noqa: E501 """Inspect a python package content # noqa: E501 PythonPackageContent represents each individually installable Python package. In the Python ecosystem, this is called a Python Distribution, sometimes (ambiguously) refered to as a package. In Pulp Python, we refer to it as PythonPackageContent. Each PythonPackageContent corresponds to a single filename, for example `pulpcore-3.0.0rc1-py3-none-any.whl` or `pulpcore-3.0.0rc1.tar.gz`. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.read(python_python_package_content_href, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str python_python_package_content_href: (required) :param str fields: A list of fields to include in the response. :param str exclude_fields: A list of fields to exclude from the response. :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: PythonPythonPackageContentResponse If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.read_with_http_info(python_python_package_content_href, **kwargs) # noqa: E501 def read_with_http_info(self, python_python_package_content_href, **kwargs): # noqa: E501 """Inspect a python package content # noqa: E501 PythonPackageContent represents each individually installable Python package. In the Python ecosystem, this is called a Python Distribution, sometimes (ambiguously) refered to as a package. In Pulp Python, we refer to it as PythonPackageContent. Each PythonPackageContent corresponds to a single filename, for example `pulpcore-3.0.0rc1-py3-none-any.whl` or `pulpcore-3.0.0rc1.tar.gz`. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.read_with_http_info(python_python_package_content_href, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str python_python_package_content_href: (required) :param str fields: A list of fields to include in the response. :param str exclude_fields: A list of fields to exclude from the response. :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(PythonPythonPackageContentResponse, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'python_python_package_content_href', 'fields', 'exclude_fields' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method read" % key ) local_var_params[key] = val del local_var_params['kwargs'] # verify the required parameter 'python_python_package_content_href' is set if self.api_client.client_side_validation and ('python_python_package_content_href' not in local_var_params or # noqa: E501 local_var_params['python_python_package_content_href'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `python_python_package_content_href` when calling `read`") # noqa: E501 collection_formats = {} path_params = {} if 'python_python_package_content_href' in local_var_params: path_params['python_python_package_content_href'] = local_var_params['python_python_package_content_href'] # noqa: E501 query_params = [] if 'fields' in local_var_params and local_var_params['fields'] is not None: # noqa: E501 query_params.append(('fields', local_var_params['fields'])) # noqa: E501 if 'exclude_fields' in local_var_params and local_var_params['exclude_fields'] is not None: # noqa: E501 query_params.append(('exclude_fields', local_var_params['exclude_fields'])) # noqa: E501 header_params = {} form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 # Authentication setting auth_settings = ['basicAuth', 'cookieAuth'] # noqa: E501 return self.api_client.call_api( '{python_python_package_content_href}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='PythonPythonPackageContentResponse', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats)