diff --git a/.gitignore b/.gitignore index 214d0badc28..fe842f9c2ea 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,7 @@ /src/*.egg-info *.egg-info !tests/packagedcode/data/pypi/source-package/pip-22.0.4/src/pip.egg-info +!tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/celery.egg-info /dist /build /bin diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b28287c2a85..ba7fba9b5ea 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -14,6 +14,23 @@ Package detection: - OpenWRT packages. - Yocto/BitBake .bb recipes. +- Update ``GemfileLockParser`` to track the gem which the Gemfile.lock is for, + which we assign to the new ``GemfileLockParser.primary_gem`` field. Update + ``GemfileLockHandler.parse()`` to handle the case where there is a primary gem + detected from a gemfile.lock. If there is a primary gem, a single ``Package`` + is created and the detected gem data within the gemfile.lock are assigned as + dependencies. If there is no primary gem, then all of the dependencies are + collected into Package with no name and yielded. + + https://github.com/nexB/scancode-toolkit/issues/3072 + +- Fix issue where dependencies were not reported when scanning an extracted + Python project by modifying ``BaseExtractedPythonLayout.assemble()`` to favor + using package data from a PKG-INFO file from an egg-info directory. Package + data from a PKG-INFO file from an egg-info directory contains the dependency + information collected from the requirements.txt file along side PKG-INFO. + + https://github.com/nexB/scancode-toolkit/issues/3083 License detection: ~~~~~~~~~~~~~~~~~~~ diff --git a/src/packagedcode/pypi.py b/src/packagedcode/pypi.py index 5ba37bf194d..e64cd490520 100644 --- a/src/packagedcode/pypi.py +++ b/src/packagedcode/pypi.py @@ -29,6 +29,7 @@ import pkginfo2 from commoncode import fileutils from commoncode.fileutils import as_posixpath +from commoncode.resource import Resource from packaging.specifiers import SpecifierSet from packageurl import PackageURL from packaging import markers @@ -133,6 +134,16 @@ def create_package_from_package_data(package_data, datafile_path): return package +def is_egg_info_directory(resource): + """ + Return True if `resource` is a Python .egg-info directory + """ + return ( + isinstance(resource, Resource) + and resource.path.endswith('.egg-info') + ) + + class BaseExtractedPythonLayout(BasePypiHandler): """ Base class for development repos, sdist tarballs and other related extracted @@ -152,7 +163,33 @@ def assemble(cls, package_data, resource, codebase, package_adder): package_resource = None if resource.name == 'PKG-INFO': + # Initially use current Resource as `package_resource`. + # We'll want update `package_resource` with the Resource of a + # PKG-INFO file that's in an .egg-info Directory. package_resource = resource + # We want to use the PKG-INFO file from an .egg-info directory, as + # the package info collected from a *.egg_info/PKG-INFO file has + # dependency information that a PKG-INFO from the root of a Python + # project lacks. + parent_resource = resource.parent(codebase) + if not is_egg_info_directory(parent_resource): + # If we are not in an .egg-info directory, we assume we are at + # the root of a Python codebase and we want to find the + # .egg_info dir + egg_info_dir = None + for sibling in resource.siblings(codebase): + if sibling.path.endswith('.egg-info'): + egg_info_dir = sibling + break + + # If we find the .egg_info dir, then we look for the PKG-INFO + # file in it and use that as our package_resource + if egg_info_dir: + for child in egg_info_dir.children(codebase): + if not child.name == 'PKG-INFO': + continue + package_resource = child + break elif resource.name in datafile_name_patterns: if resource.has_parent(): siblings = resource.siblings(codebase) @@ -221,7 +258,14 @@ def assemble(cls, package_data, resource, codebase, package_adder): package.license_expression = compute_normalized_license(package.declared_license) package_uid = package.package_uid - root = package_resource.parent(codebase) + package_resource_parent = package_resource.parent(codebase) + if is_egg_info_directory(package_resource_parent): + root = package_resource_parent.parent(codebase) + else: + # We're assuming that our package resource is already at the + # root + root = package_resource_parent + if root: for py_res in cls.walk_pypi(resource=root, codebase=codebase): if py_res.is_dir: @@ -724,14 +768,16 @@ def parse(cls, location): name="python", ) resolved_purl = get_resolved_purl(purl=purl, specifiers=SpecifierSet(python_requires_specifier)) - dependent_packages.append(models.DependentPackage( - purl=str(resolved_purl.purl), - scope=scope, - is_runtime=True, - is_optional=False, - is_resolved=resolved_purl.is_resolved, - extracted_requirement=f"python_requires{python_requires_specifier}", - )) + dependent_packages.append( + models.DependentPackage( + purl=str(resolved_purl.purl), + scope=scope, + is_runtime=True, + is_optional=False, + is_resolved=resolved_purl.is_resolved, + extracted_requirement=f"python_requires{python_requires_specifier}", + ) + ) if section.name == "options.extras_require": for sub_section in section: @@ -931,11 +977,7 @@ def get_requirements_txt_dependencies(location, include_nested=False): purl = None purl = purl and purl.to_string() or None - - if req.is_editable: - requirement = req.dumps() - else: - requirement = req.dumps(with_name=False) + requirement = req.dumps() if location.endswith( ( @@ -1311,15 +1353,16 @@ def get_requires_dependencies(requires, default_scope='install'): is_resolved = True purl = purl._replace(version=specifier.version) - # we use the extra as scope if avialble - scope = get_extra(req.marker) or default_scope + # we use the extra as scope if available + extra = get_extra(req.marker) + scope = extra or default_scope dependent_packages.append( models.DependentPackage( purl=purl.to_string(), scope=scope, is_runtime=True, - is_optional=False, + is_optional=True if bool(extra) else False, is_resolved=is_resolved, extracted_requirement=str(req), )) diff --git a/tests/cluecode/data/plugin_email_url/emails-threshold.expected.json b/tests/cluecode/data/plugin_email_url/emails-threshold.expected.json index 8835394f29d..c5b021e9eb1 100644 --- a/tests/cluecode/data/plugin_email_url/emails-threshold.expected.json +++ b/tests/cluecode/data/plugin_email_url/emails-threshold.expected.json @@ -1,32 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--email": true, - "--json": "", - "--max-email": "2", - "--strip-root": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 2 - } - } - ], "files": [ { "path": "3w-xxxx.c", diff --git a/tests/cluecode/data/plugin_email_url/emails.expected.json b/tests/cluecode/data/plugin_email_url/emails.expected.json index b96a27cd804..36b0033b788 100644 --- a/tests/cluecode/data/plugin_email_url/emails.expected.json +++ b/tests/cluecode/data/plugin_email_url/emails.expected.json @@ -1,31 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--email": true, - "--json": "", - "--strip-root": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 2 - } - } - ], "files": [ { "path": "3w-xxxx.c", diff --git a/tests/cluecode/data/plugin_email_url/urls-threshold.expected.json b/tests/cluecode/data/plugin_email_url/urls-threshold.expected.json index 33d2735b640..97de3048fff 100644 --- a/tests/cluecode/data/plugin_email_url/urls-threshold.expected.json +++ b/tests/cluecode/data/plugin_email_url/urls-threshold.expected.json @@ -1,32 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--json": "", - "--max-url": "2", - "--strip-root": true, - "--url": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 2 - } - } - ], "files": [ { "path": "3w-xxxx.c", diff --git a/tests/cluecode/data/plugin_email_url/urls.expected.json b/tests/cluecode/data/plugin_email_url/urls.expected.json index a45efb913d8..a729f46b21a 100644 --- a/tests/cluecode/data/plugin_email_url/urls.expected.json +++ b/tests/cluecode/data/plugin_email_url/urls.expected.json @@ -1,31 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--json": "", - "--strip-root": true, - "--url": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 2 - } - } - ], "files": [ { "path": "3w-xxxx.c", diff --git a/tests/cluecode/data/plugin_filter_clues/filtered-expected.json b/tests/cluecode/data/plugin_filter_clues/filtered-expected.json index 825bd70a9d6..96b86771344 100644 --- a/tests/cluecode/data/plugin_filter_clues/filtered-expected.json +++ b/tests/cluecode/data/plugin_filter_clues/filtered-expected.json @@ -1,35 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--copyright": true, - "--email": true, - "--filter-clues": true, - "--info": true, - "--json": "", - "--license": true, - "--url": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 1 - } - } - ], "files": [ { "path": "LICENSE", diff --git a/tests/cluecode/data/plugin_filter_clues/filtered-expected2.json b/tests/cluecode/data/plugin_filter_clues/filtered-expected2.json index a669463fca3..75a63a32e50 100644 --- a/tests/cluecode/data/plugin_filter_clues/filtered-expected2.json +++ b/tests/cluecode/data/plugin_filter_clues/filtered-expected2.json @@ -1,35 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--copyright": true, - "--email": true, - "--filter-clues": true, - "--info": true, - "--json": "", - "--license": true, - "--url": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 1 - } - } - ], "files": [ { "path": "LICENSE2", diff --git a/tests/cluecode/data/plugin_filter_clues/filtered-expected3.json b/tests/cluecode/data/plugin_filter_clues/filtered-expected3.json index cac76d43e13..c61dc0a5777 100644 --- a/tests/cluecode/data/plugin_filter_clues/filtered-expected3.json +++ b/tests/cluecode/data/plugin_filter_clues/filtered-expected3.json @@ -1,35 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--copyright": true, - "--email": true, - "--filter-clues": true, - "--info": true, - "--json": "", - "--license": true, - "--url": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 1 - } - } - ], "files": [ { "path": "LICENSE3", diff --git a/tests/cluecode/data/plugin_ignore_copyrights/authors.expected.json b/tests/cluecode/data/plugin_ignore_copyrights/authors.expected.json index ee56e378206..eece5f5db84 100644 --- a/tests/cluecode/data/plugin_ignore_copyrights/authors.expected.json +++ b/tests/cluecode/data/plugin_ignore_copyrights/authors.expected.json @@ -1,33 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--copyright": true, - "--ignore-author": [ - "Berkeley" - ], - "--json-pp": "" - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 5 - } - } - ], "files": [ { "path": "basic.tgz", diff --git a/tests/cluecode/data/plugin_ignore_copyrights/holders.expected.json b/tests/cluecode/data/plugin_ignore_copyrights/holders.expected.json index 765bd0c238e..eece5f5db84 100644 --- a/tests/cluecode/data/plugin_ignore_copyrights/holders.expected.json +++ b/tests/cluecode/data/plugin_ignore_copyrights/holders.expected.json @@ -1,33 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--copyright": true, - "--ignore-copyright-holder": [ - "Regents" - ], - "--json-pp": "" - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 5 - } - } - ], "files": [ { "path": "basic.tgz", diff --git a/tests/formattedcode/data/csv/livescan/expected.csv b/tests/formattedcode/data/csv/livescan/expected.csv index 8fdac21067a..8ca8626985c 100644 --- a/tests/formattedcode/data/csv/livescan/expected.csv +++ b/tests/formattedcode/data/csv/livescan/expected.csv @@ -1,5 +1,5 @@ path,type,name,base_name,extension,size,date,sha1,md5,sha256,mime_type,file_type,programming_language,is_binary,is_text,is_archive,is_media,is_source,is_script,percentage_of_license_text,files_count,dirs_count,size_count,scan_errors,license_expression,license__key,license__score,license__name,license__short_name,license__category,license__is_exception,license__is_unknown,license__owner,license__homepage_url,license__text_url,license__reference_url,license__scancode_text_url,license__scancode_data_url,license__spdx_license_key,license__spdx_url,start_line,end_line,matched_rule__identifier,matched_rule__license_expression,matched_rule__licenses,matched_rule__referenced_filenames,matched_rule__is_license_text,matched_rule__is_license_notice,matched_rule__is_license_reference,matched_rule__is_license_tag,matched_rule__is_license_intro,matched_rule__has_unknown,matched_rule__matcher,matched_rule__rule_length,matched_rule__matched_length,matched_rule__match_coverage,matched_rule__rule_relevance,copyright,holder,email,url,package__type,package__namespace,package__name,package__version,package__qualifiers,package__subpath,package__primary_language,package__description,package__release_date,package__homepage_url,package__download_url,package__size,package__sha1,package__md5,package__sha256,package__sha512,package__bug_tracking_url,package__code_view_url,package__vcs_url,package__copyright,package__license_expression,package__declared_license,package__notice_text,package__file_references,package__extra_data,package__repository_homepage_url,package__repository_download_url,package__api_data_url,package__datasource_id,package__purl -json2csv.rb,file,json2csv.rb,json2csv,.rb,912,2022-02-07,1236469a06a2bacbdd8e172ad718482af5b0a936,1307c281e0b153202e291b217eab85d5,12ba215313981dbe810d9ed696b7cc753d97adfcc26eba1e13f941dc7506aa4e,text/x-script.python,"Python script, ASCII text executable",Ruby,False,True,False,False,True,True,62.04,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +json2csv.rb,file,json2csv.rb,json2csv,.rb,912,2021-11-14,1236469a06a2bacbdd8e172ad718482af5b0a936,1307c281e0b153202e291b217eab85d5,12ba215313981dbe810d9ed696b7cc753d97adfcc26eba1e13f941dc7506aa4e,text/x-script.python,"Python script, ASCII text executable",Ruby,False,True,False,False,True,True,62.04,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, json2csv.rb,,,,,,,,,,,,,,,,,,,,,,,,apache-2.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, json2csv.rb,,,,,,,,,,,,,,,,,,,,,,,,,apache-2.0,100.00,Apache License 2.0,Apache 2.0,Permissive,False,False,Apache Software Foundation,http://www.apache.org/licenses/,http://www.apache.org/licenses/LICENSE-2.0,https://scancode-licensedb.aboutcode.org/apache-2.0,https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE,https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.yml,Apache-2.0,https://spdx.org/licenses/Apache-2.0,5,13,apache-2.0_7.RULE,apache-2.0,apache-2.0,,,True,,,,,2-aho,85,85,100.00,100.00,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, json2csv.rb,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,,,,,,,,,,,,,,,,Copyright (c) 2017 nexB Inc. and others,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, @@ -7,10 +7,10 @@ json2csv.rb,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,,,,,,,,,,,,,,,,,nexB Inc. json2csv.rb,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,,,,,,,,,,,,,,,,,,,http://nexb.com/,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, json2csv.rb,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,,,,,,,,,,,,,,,,,,,https://github.com/nexB/scancode-toolkit/,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, json2csv.rb,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,8,,,,,,,,,,,,,,,,,,,http://www.apache.org/licenses/LICENSE-2.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -license,file,license,license,,679,2022-02-07,75c5490a718ddd45e40e0cc7ce0c756abc373123,b965a762efb9421cf1bf4405f336e278,a34098a43e5677495f59dff825a3f9bc0f2b0261d75feb2356919f4c3ce049ab,text/plain,ASCII text,,False,True,False,False,False,False,100.0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +license,file,license,license,,679,2021-11-14,75c5490a718ddd45e40e0cc7ce0c756abc373123,b965a762efb9421cf1bf4405f336e278,a34098a43e5677495f59dff825a3f9bc0f2b0261d75feb2356919f4c3ce049ab,text/plain,ASCII text,,False,True,False,False,False,False,100.0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, license,,,,,,,,,,,,,,,,,,,,,,,,gpl-2.0-plus,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, license,,,,,,,,,,,,,,,,,,,,,,,,,gpl-2.0-plus,100.00,GNU General Public License 2.0 or later,GPL 2.0 or later,Copyleft,False,False,Free Software Foundation (FSF),http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html,http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html,https://scancode-licensedb.aboutcode.org/gpl-2.0-plus,https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/gpl-2.0-plus.LICENSE,https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/gpl-2.0-plus.yml,GPL-2.0-or-later,https://spdx.org/licenses/GPL-2.0-or-later,1,12,gpl-2.0-plus_420.RULE,gpl-2.0-plus,gpl-2.0-plus,,,True,,,,,1-hash,113,113,100.00,100.00,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -package.json,file,package.json,package,.json,2200,2022-02-07,918376afce796ef90eeda1d6695f2289c90491ac,1f66239a9b850c5e60a9382dbe2162d2,29f6068a1b6c7d06f115a5edc4ed8558edde42c6bbf0145ed77cf1108a0dd529,application/json,JSON data,,False,True,False,False,False,False,45.72,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +package.json,file,package.json,package,.json,2200,2021-11-14,918376afce796ef90eeda1d6695f2289c90491ac,1f66239a9b850c5e60a9382dbe2162d2,29f6068a1b6c7d06f115a5edc4ed8558edde42c6bbf0145ed77cf1108a0dd529,application/json,JSON data,,False,True,False,False,False,False,45.72,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, package.json,,,,,,,,,,,,,,,,,,,,,,,,mit,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, package.json,,,,,,,,,,,,,,,,,,,,,,,,mit,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, package.json,,,,,,,,,,,,,,,,,,,,,,,,,mit,100.00,MIT License,MIT License,Permissive,False,False,MIT,http://opensource.org/licenses/mit-license.php,http://opensource.org/licenses/mit-license.php,https://scancode-licensedb.aboutcode.org/mit,https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE,https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.yml,MIT,https://spdx.org/licenses/MIT,24,24,mit_27.RULE,mit,mit,,,,True,,,,2-aho,3,3,100.00,100.00,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/tests/formattedcode/data/cyclonedx/expected.xml b/tests/formattedcode/data/cyclonedx/expected.xml index 06b983a2751..b922553221b 100644 --- a/tests/formattedcode/data/cyclonedx/expected.xml +++ b/tests/formattedcode/data/cyclonedx/expected.xml @@ -1,12 +1,12 @@ - + - 2022-08-01T13:10:26Z + 2022-09-06T19:23:53Z AboutCode.org scancode-toolkit - 31.0.0rc3 + 31.1.1 diff --git a/tests/formattedcode/data/json/simple-expected.jsonlines b/tests/formattedcode/data/json/simple-expected.jsonlines index 503f0b063b4..8d7df0aa90f 100644 --- a/tests/formattedcode/data/json/simple-expected.jsonlines +++ b/tests/formattedcode/data/json/simple-expected.jsonlines @@ -17,9 +17,9 @@ "system_environment": { "operating_system": "linux", "cpu_architecture": "64", - "platform": "Linux-4.15.0-189-generic-x86_64-with-debian-stretch-sid", - "platform_version": "#200~16.04.1-Ubuntu SMP Fri Jun 24 05:32:48 UTC 2022", - "python_version": "3.7.9 (default, Dec 6 2020, 11:48:06) \n[GCC 5.4.0 20160609]" + "platform": "Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35", + "platform_version": "#1 SMP Wed Mar 2 00:30:59 UTC 2022", + "python_version": "3.10.5 (main, Jul 30 2022, 03:32:13) [GCC 11.2.0]" }, "spdx_license_list_version": "3.17", "files_count": 1 diff --git a/tests/formattedcode/data/yaml/simple-expected.yaml b/tests/formattedcode/data/yaml/simple-expected.yaml index c0143902620..25dcc57254c 100644 --- a/tests/formattedcode/data/yaml/simple-expected.yaml +++ b/tests/formattedcode/data/yaml/simple-expected.yaml @@ -22,9 +22,9 @@ headers: system_environment: operating_system: linux cpu_architecture: 64 - platform: Linux-4.15.0-189-generic-x86_64-with-debian-stretch-sid - platform_version: '#200~16.04.1-Ubuntu SMP Fri Jun 24 05:32:48 UTC 2022' - python_version: "3.7.9 (default, Dec 6 2020, 11:48:06) \n[GCC 5.4.0 20160609]" + platform: Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35 + platform_version: '#1 SMP Wed Mar 2 00:30:59 UTC 2022' + python_version: 3.10.5 (main, Jul 30 2022, 03:32:13) [GCC 11.2.0] spdx_license_list_version: '3.17' files_count: 1 dependencies: [] diff --git a/tests/formattedcode/data/yaml/tree/expected.yaml b/tests/formattedcode/data/yaml/tree/expected.yaml index 564643b7ab1..694f93ce975 100644 --- a/tests/formattedcode/data/yaml/tree/expected.yaml +++ b/tests/formattedcode/data/yaml/tree/expected.yaml @@ -23,9 +23,9 @@ headers: system_environment: operating_system: linux cpu_architecture: 64 - platform: Linux-4.15.0-189-generic-x86_64-with-debian-stretch-sid - platform_version: '#200~16.04.1-Ubuntu SMP Fri Jun 24 05:32:48 UTC 2022' - python_version: "3.7.9 (default, Dec 6 2020, 11:48:06) \n[GCC 5.4.0 20160609]" + platform: Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35 + platform_version: '#1 SMP Wed Mar 2 00:30:59 UTC 2022' + python_version: 3.10.5 (main, Jul 30 2022, 03:32:13) [GCC 11.2.0] spdx_license_list_version: '3.17' files_count: 7 dependencies: [] diff --git a/tests/licensedcode/data/plugin_license/license-expression/scan.expected.json b/tests/licensedcode/data/plugin_license/license-expression/scan.expected.json index ae899d2277d..3e7194b16b5 100644 --- a/tests/licensedcode/data/plugin_license/license-expression/scan.expected.json +++ b/tests/licensedcode/data/plugin_license/license-expression/scan.expected.json @@ -1,31 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--json": "", - "--license": true, - "--strip-root": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 2 - } - } - ], "files": [ { "path": "apache-1.0.txt", diff --git a/tests/licensedcode/data/plugin_license/license_reference/license-ref-see-copying.expected.json b/tests/licensedcode/data/plugin_license/license_reference/license-ref-see-copying.expected.json index 45e7ffc4e35..45491ebfd68 100644 --- a/tests/licensedcode/data/plugin_license/license_reference/license-ref-see-copying.expected.json +++ b/tests/licensedcode/data/plugin_license/license_reference/license-ref-see-copying.expected.json @@ -1,34 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--json": "", - "--license": true, - "--license-text": true, - "--license-text-diagnostics": true, - "--strip-root": true, - "--unknown-licenses": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 2 - } - } - ], "files": [ { "path": "COPYING", diff --git a/tests/licensedcode/data/plugin_license/license_reference/scan-ref.expected.json b/tests/licensedcode/data/plugin_license/license_reference/scan-ref.expected.json index 50de4bcece7..584192a1970 100644 --- a/tests/licensedcode/data/plugin_license/license_reference/scan-ref.expected.json +++ b/tests/licensedcode/data/plugin_license/license_reference/scan-ref.expected.json @@ -1,34 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--json": "", - "--license": true, - "--license-text": true, - "--license-text-diagnostics": true, - "--strip-root": true, - "--unknown-licenses": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 2 - } - } - ], "files": [ { "path": "LICENSE", diff --git a/tests/licensedcode/data/plugin_license/license_reference/scan-wref.expected.json b/tests/licensedcode/data/plugin_license/license_reference/scan-wref.expected.json index 7ef1a164933..518e35174ff 100644 --- a/tests/licensedcode/data/plugin_license/license_reference/scan-wref.expected.json +++ b/tests/licensedcode/data/plugin_license/license_reference/scan-wref.expected.json @@ -1,34 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--json": "", - "--license": true, - "--license-text": true, - "--license-text-diagnostics": true, - "--strip-root": true, - "--unknown-licenses": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 1 - } - } - ], "files": [ { "path": "license-notice.txt", diff --git a/tests/licensedcode/data/plugin_license/license_url.expected.json b/tests/licensedcode/data/plugin_license/license_url.expected.json index 23ad951f827..1440419832d 100644 --- a/tests/licensedcode/data/plugin_license/license_url.expected.json +++ b/tests/licensedcode/data/plugin_license/license_url.expected.json @@ -1,32 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--json-pp": "", - "--license": true, - "--license-url-template": "https://example.com/urn:{}", - "--unknown-licenses": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 1 - } - } - ], "files": [ { "path": "license_url", diff --git a/tests/licensedcode/data/plugin_license/sqlite/sqlite.expected.json b/tests/licensedcode/data/plugin_license/sqlite/sqlite.expected.json index a107b7a8a4e..4677e3319d1 100644 --- a/tests/licensedcode/data/plugin_license/sqlite/sqlite.expected.json +++ b/tests/licensedcode/data/plugin_license/sqlite/sqlite.expected.json @@ -1,31 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--json-pp": "", - "--license": true, - "--license-text": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 1 - } - } - ], "files": [ { "path": "sqlite.tgz", diff --git a/tests/licensedcode/data/plugin_license/text/scan-diag.expected.json b/tests/licensedcode/data/plugin_license/text/scan-diag.expected.json index 6a9ee5f3fb6..fe6ec0220d8 100644 --- a/tests/licensedcode/data/plugin_license/text/scan-diag.expected.json +++ b/tests/licensedcode/data/plugin_license/text/scan-diag.expected.json @@ -1,33 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--json": "", - "--license": true, - "--license-text": true, - "--license-text-diagnostics": true, - "--strip-root": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 2 - } - } - ], "files": [ { "path": "gpl-2.0_with_linux-syscall-note_or_linux-openib_SPDX.RULE", diff --git a/tests/licensedcode/data/plugin_license/text/scan.expected.json b/tests/licensedcode/data/plugin_license/text/scan.expected.json index 203c82ba390..bc0d7454980 100644 --- a/tests/licensedcode/data/plugin_license/text/scan.expected.json +++ b/tests/licensedcode/data/plugin_license/text/scan.expected.json @@ -1,32 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--json": "", - "--license": true, - "--license-text": true, - "--strip-root": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 2 - } - } - ], "files": [ { "path": "gpl-2.0_with_linux-syscall-note_or_linux-openib_SPDX.RULE", diff --git a/tests/licensedcode/data/plugin_license/text_long_lines/scan-diag.expected.json b/tests/licensedcode/data/plugin_license/text_long_lines/scan-diag.expected.json index 0ffb00ddd12..baab28de655 100644 --- a/tests/licensedcode/data/plugin_license/text_long_lines/scan-diag.expected.json +++ b/tests/licensedcode/data/plugin_license/text_long_lines/scan-diag.expected.json @@ -1,33 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--json": "", - "--license": true, - "--license-text": true, - "--license-text-diagnostics": true, - "--strip-root": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 2 - } - } - ], "files": [ { "path": "gpl-2.0_with_linux-syscall-note_or_linux-openib_SPDX.RULE", diff --git a/tests/licensedcode/data/plugin_license/text_long_lines/scan.expected.json b/tests/licensedcode/data/plugin_license/text_long_lines/scan.expected.json index cb82828093c..baab28de655 100644 --- a/tests/licensedcode/data/plugin_license/text_long_lines/scan.expected.json +++ b/tests/licensedcode/data/plugin_license/text_long_lines/scan.expected.json @@ -1,32 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--json": "", - "--license": true, - "--license-text": true, - "--strip-root": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 2 - } - } - ], "files": [ { "path": "gpl-2.0_with_linux-syscall-note_or_linux-openib_SPDX.RULE", diff --git a/tests/licensedcode/data/plugin_license_text/scan.expected.json b/tests/licensedcode/data/plugin_license_text/scan.expected.json index eae938b9db6..2c0c890494d 100644 --- a/tests/licensedcode/data/plugin_license_text/scan.expected.json +++ b/tests/licensedcode/data/plugin_license_text/scan.expected.json @@ -1,33 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--info": true, - "--is-license-text": true, - "--json-pp": "", - "--license": true, - "--license-text": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 5 - } - } - ], "files": [ { "path": "scan", diff --git a/tests/licensedcode/data/plugin_licenses_reference/scan.expected.json b/tests/licensedcode/data/plugin_licenses_reference/scan.expected.json index 909db5edcd2..566311e3c72 100644 --- a/tests/licensedcode/data/plugin_licenses_reference/scan.expected.json +++ b/tests/licensedcode/data/plugin_licenses_reference/scan.expected.json @@ -1,32 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--json-pp": "", - "--license": true, - "--licenses-reference": true, - "--package": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 2 - } - } - ], "dependencies": [], "packages": [ { diff --git a/tests/packagedcode/data/about/aboutfiles.expected.json b/tests/packagedcode/data/about/aboutfiles.expected.json index b8f09a7649c..044a93f76cc 100644 --- a/tests/packagedcode/data/about/aboutfiles.expected.json +++ b/tests/packagedcode/data/about/aboutfiles.expected.json @@ -1,30 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--json": "", - "--package": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 3 - } - } - ], "dependencies": [], "packages": [ { diff --git a/tests/packagedcode/data/build/bazel/end2end-expected.json b/tests/packagedcode/data/build/bazel/end2end-expected.json index bdf93441da2..725847a8567 100644 --- a/tests/packagedcode/data/build/bazel/end2end-expected.json +++ b/tests/packagedcode/data/build/bazel/end2end-expected.json @@ -1,30 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--json-pp": "", - "--package": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 6 - } - } - ], "dependencies": [], "packages": [ { diff --git a/tests/packagedcode/data/build/buck/end2end-expected.json b/tests/packagedcode/data/build/buck/end2end-expected.json index 648c86b4575..a8f951b65d8 100644 --- a/tests/packagedcode/data/build/buck/end2end-expected.json +++ b/tests/packagedcode/data/build/buck/end2end-expected.json @@ -1,30 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--json-pp": "", - "--package": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 7 - } - } - ], "dependencies": [], "packages": [ { diff --git a/tests/packagedcode/data/cocoapods/assemble/solo/Podfile-expected.json b/tests/packagedcode/data/cocoapods/assemble/solo/Podfile-expected.json index 41525d5fb88..760e512382a 100644 --- a/tests/packagedcode/data/cocoapods/assemble/solo/Podfile-expected.json +++ b/tests/packagedcode/data/cocoapods/assemble/solo/Podfile-expected.json @@ -1,30 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--json": "", - "--package": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 1 - } - } - ], "dependencies": [], "packages": [], "files": [ diff --git a/tests/packagedcode/data/cocoapods/assemble/solo/RxDataSources.podspec-expected.json b/tests/packagedcode/data/cocoapods/assemble/solo/RxDataSources.podspec-expected.json index 36222548722..89b50cd066c 100644 --- a/tests/packagedcode/data/cocoapods/assemble/solo/RxDataSources.podspec-expected.json +++ b/tests/packagedcode/data/cocoapods/assemble/solo/RxDataSources.podspec-expected.json @@ -1,30 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--json": "", - "--package": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 1 - } - } - ], "dependencies": [], "packages": [ { diff --git a/tests/packagedcode/data/instance/python-package-instance-expected-with-test-manifests.json b/tests/packagedcode/data/instance/python-package-instance-expected-with-test-manifests.json index 7f4fcf8f1c2..8c6080401d1 100644 --- a/tests/packagedcode/data/instance/python-package-instance-expected-with-test-manifests.json +++ b/tests/packagedcode/data/instance/python-package-instance-expected-with-test-manifests.json @@ -250,7 +250,323 @@ { "path": "setup.cfg", "type": "file", - "package_data": [], + "package_data": [ + { + "type": "pypi", + "namespace": null, + "name": "setuptools", + "version": "58.2.0", + "qualifiers": {}, + "subpath": null, + "primary_language": "Python", + "description": null, + "release_date": null, + "parties": [ + { + "type": "person", + "role": "author", + "name": "Python Packaging Authority", + "email": "distutils-sig@python.org", + "url": null + } + ], + "keywords": [], + "homepage_url": "https://github.com/pypa/setuptools", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "license_expression": null, + "declared_license": null, + "notice_text": null, + "source_packages": [], + "file_references": [], + "extra_data": {}, + "dependencies": [ + { + "purl": "pkg:generic/python", + "extracted_requirement": "python_requires>=3.6", + "scope": "python", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/pytest", + "extracted_requirement": "pytest>=4.6", + "scope": "testing", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/pytest-checkdocs", + "extracted_requirement": "pytest-checkdocs>=2.4", + "scope": "testing", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/pytest-flake8", + "extracted_requirement": "pytest-flake8", + "scope": "testing", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/pytest-black", + "extracted_requirement": "pytest-black>=0.3.7; platform_python_implementation != \"PyPy\"", + "scope": "testing", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/pytest-cov", + "extracted_requirement": "pytest-cov", + "scope": "testing", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/pytest-mypy", + "extracted_requirement": "pytest-mypy; platform_python_implementation != \"PyPy\"", + "scope": "testing", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/pytest-enabler", + "extracted_requirement": "pytest-enabler>=1.0.1", + "scope": "testing", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/mock", + "extracted_requirement": "mock", + "scope": "testing", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/flake8-2020", + "extracted_requirement": "flake8-2020", + "scope": "testing", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/virtualenv", + "extracted_requirement": "virtualenv>=13.0.0", + "scope": "testing", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/pytest-virtualenv", + "extracted_requirement": "pytest-virtualenv>=1.2.7", + "scope": "testing", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/wheel", + "extracted_requirement": "wheel", + "scope": "testing", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/paver", + "extracted_requirement": "paver", + "scope": "testing", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/pip", + "extracted_requirement": "pip>=19.1", + "scope": "testing", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/jaraco-envs", + "extracted_requirement": "jaraco.envs", + "scope": "testing", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/pytest-xdist", + "extracted_requirement": "pytest-xdist", + "scope": "testing", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/sphinx", + "extracted_requirement": "sphinx", + "scope": "testing", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/jaraco-path", + "extracted_requirement": "jaraco.path>=3.2.0", + "scope": "testing", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/sphinx", + "extracted_requirement": "sphinx", + "scope": "docs", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/jaraco-packaging", + "extracted_requirement": "jaraco.packaging>=8.2", + "scope": "docs", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/rst-linker", + "extracted_requirement": "rst.linker>=1.9", + "scope": "docs", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/jaraco-tidelift", + "extracted_requirement": "jaraco.tidelift>=1.4", + "scope": "docs", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/pygments-github-lexers@0.0.5", + "extracted_requirement": "pygments-github-lexers==0.0.5", + "scope": "docs", + "is_runtime": true, + "is_optional": false, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/sphinx-inline-tabs", + "extracted_requirement": "sphinx-inline-tabs", + "scope": "docs", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/sphinxcontrib-towncrier", + "extracted_requirement": "sphinxcontrib-towncrier", + "scope": "docs", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/furo", + "extracted_requirement": "furo", + "scope": "docs", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + } + ], + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null, + "datasource_id": "pypi_setup_cfg", + "purl": "pkg:pypi/setuptools@58.2.0" + } + ], "for_packages": [ "pkg:pypi/setuptools@58.2.0?uuid=fixed-uid-done-for-testing-5642512d1758" ], diff --git a/tests/packagedcode/data/npm/get_package_resources.scan.expected.json b/tests/packagedcode/data/npm/get_package_resources.scan.expected.json index 3d9baafeedb..a44dda233d6 100644 --- a/tests/packagedcode/data/npm/get_package_resources.scan.expected.json +++ b/tests/packagedcode/data/npm/get_package_resources.scan.expected.json @@ -1,30 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--json": "", - "--package": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 3 - } - } - ], "dependencies": [], "packages": [ { diff --git a/tests/packagedcode/data/plugin/python-package-expected.json b/tests/packagedcode/data/plugin/python-package-expected.json index 7c7186a46ec..6fcfa1313b2 100644 --- a/tests/packagedcode/data/plugin/python-package-expected.json +++ b/tests/packagedcode/data/plugin/python-package-expected.json @@ -240,7 +240,7 @@ }, { "purl": "pkg:pypi/setuptools", - "extracted_requirement": ">=32.0.0", + "extracted_requirement": "setuptools>=32.0.0", "scope": "install", "is_runtime": true, "is_optional": false, @@ -265,7 +265,7 @@ }, { "purl": "pkg:pypi/nose", - "extracted_requirement": ">=1.3.7", + "extracted_requirement": "nose>=1.3.7", "scope": "install", "is_runtime": true, "is_optional": false, @@ -290,7 +290,7 @@ }, { "purl": "pkg:pypi/chardet", - "extracted_requirement": ">=3.0.4", + "extracted_requirement": "chardet>=3.0.4", "scope": "install", "is_runtime": true, "is_optional": false, @@ -1213,7 +1213,7 @@ "dependencies": [ { "purl": "pkg:pypi/setuptools", - "extracted_requirement": ">=32.0.0", + "extracted_requirement": "setuptools>=32.0.0", "scope": "install", "is_runtime": true, "is_optional": false, @@ -1234,7 +1234,7 @@ }, { "purl": "pkg:pypi/nose", - "extracted_requirement": ">=1.3.7", + "extracted_requirement": "nose>=1.3.7", "scope": "install", "is_runtime": true, "is_optional": false, @@ -1255,7 +1255,7 @@ }, { "purl": "pkg:pypi/chardet", - "extracted_requirement": ">=3.0.4", + "extracted_requirement": "chardet>=3.0.4", "scope": "install", "is_runtime": true, "is_optional": false, diff --git a/tests/packagedcode/data/pypi/archive/commoncode-21.5.12-py3.9.egg-expected.json b/tests/packagedcode/data/pypi/archive/commoncode-21.5.12-py3.9.egg-expected.json index 4a1bc06c3e4..daa8386df72 100644 --- a/tests/packagedcode/data/pypi/archive/commoncode-21.5.12-py3.9.egg-expected.json +++ b/tests/packagedcode/data/pypi/archive/commoncode-21.5.12-py3.9.egg-expected.json @@ -152,7 +152,7 @@ "extracted_requirement": "Sphinx>=3.3.1; extra == \"docs\"", "scope": "docs", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -162,7 +162,7 @@ "extracted_requirement": "sphinx-rtd-theme>=0.5.0; extra == \"docs\"", "scope": "docs", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -172,7 +172,7 @@ "extracted_requirement": "doc8>=0.8.1; extra == \"docs\"", "scope": "docs", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -182,7 +182,7 @@ "extracted_requirement": "pytest>=6; extra == \"testing\"", "scope": "testing", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -192,7 +192,7 @@ "extracted_requirement": "pytest-xdist>=2; extra == \"testing\"", "scope": "testing", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} diff --git a/tests/packagedcode/data/pypi/develop/scancode_toolkit.egg-info-expected.json b/tests/packagedcode/data/pypi/develop/scancode_toolkit.egg-info-expected.json index 15fa836c183..66ee76e1f19 100644 --- a/tests/packagedcode/data/pypi/develop/scancode_toolkit.egg-info-expected.json +++ b/tests/packagedcode/data/pypi/develop/scancode_toolkit.egg-info-expected.json @@ -1532,7 +1532,7 @@ "extracted_requirement": "pytest; extra == \"dev\"", "scope": "dev", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -1542,7 +1542,7 @@ "extracted_requirement": "pytest-cov; extra == \"dev\"", "scope": "dev", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -1552,7 +1552,7 @@ "extracted_requirement": "pytest-xdist; extra == \"dev\"", "scope": "dev", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -1562,7 +1562,7 @@ "extracted_requirement": "pytest-rerunfailures; extra == \"dev\"", "scope": "dev", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -1572,7 +1572,7 @@ "extracted_requirement": "aboutcode-toolkit>=6.0.0; extra == \"dev\"", "scope": "dev", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -1582,7 +1582,7 @@ "extracted_requirement": "bump2version; extra == \"dev\"", "scope": "dev", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -1592,7 +1592,7 @@ "extracted_requirement": "codecov; extra == \"dev\"", "scope": "dev", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -1602,7 +1602,7 @@ "extracted_requirement": "coverage; extra == \"dev\"", "scope": "dev", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -1612,7 +1612,7 @@ "extracted_requirement": "rpm_inspector_rpm>=4.16.1.3; platform_system == \"Linux\" and extra == \"packages\"", "scope": "packages", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} diff --git a/tests/packagedcode/data/pypi/metadata/v20/PKG-INFO-expected.json b/tests/packagedcode/data/pypi/metadata/v20/PKG-INFO-expected.json index e697c932077..f84c0c10f1d 100644 --- a/tests/packagedcode/data/pypi/metadata/v20/PKG-INFO-expected.json +++ b/tests/packagedcode/data/pypi/metadata/v20/PKG-INFO-expected.json @@ -68,7 +68,7 @@ "extracted_requirement": "pykerberos; extra == \"gssapi\"", "scope": "gssapi", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -78,7 +78,7 @@ "extracted_requirement": "dnspython<2.0.0,>=1.8.0; extra == \"srv\"", "scope": "srv", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -88,7 +88,7 @@ "extracted_requirement": "ipaddress; extra == \"tls\"", "scope": "tls", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} diff --git a/tests/packagedcode/data/pypi/requirements_txt/basic/output.expected.json b/tests/packagedcode/data/pypi/requirements_txt/basic/output.expected.json index a4305e0b49e..4d688fbaf11 100644 --- a/tests/packagedcode/data/pypi/requirements_txt/basic/output.expected.json +++ b/tests/packagedcode/data/pypi/requirements_txt/basic/output.expected.json @@ -31,7 +31,7 @@ "dependencies": [ { "purl": "pkg:pypi/setuptools", - "extracted_requirement": ">=32.0.0", + "extracted_requirement": "setuptools>=32.0.0", "scope": "install", "is_runtime": true, "is_optional": false, @@ -52,7 +52,7 @@ }, { "purl": "pkg:pypi/nose", - "extracted_requirement": ">=1.3.7", + "extracted_requirement": "nose>=1.3.7", "scope": "install", "is_runtime": true, "is_optional": false, @@ -73,7 +73,7 @@ }, { "purl": "pkg:pypi/chardet", - "extracted_requirement": ">=3.0.4", + "extracted_requirement": "chardet>=3.0.4", "scope": "install", "is_runtime": true, "is_optional": false, diff --git a/tests/packagedcode/data/pypi/requirements_txt/comments_and_empties/output.expected.json b/tests/packagedcode/data/pypi/requirements_txt/comments_and_empties/output.expected.json index 37c4b612d6e..446dcba014b 100644 --- a/tests/packagedcode/data/pypi/requirements_txt/comments_and_empties/output.expected.json +++ b/tests/packagedcode/data/pypi/requirements_txt/comments_and_empties/output.expected.json @@ -31,7 +31,7 @@ "dependencies": [ { "purl": "pkg:pypi/distutils2@1.0a3", - "extracted_requirement": "==1.0a3", + "extracted_requirement": "Distutils2==1.0a3", "scope": "install", "is_runtime": true, "is_optional": false, diff --git a/tests/packagedcode/data/pypi/requirements_txt/complex/output.expected.json b/tests/packagedcode/data/pypi/requirements_txt/complex/output.expected.json index 142842d69f0..f59b799b676 100644 --- a/tests/packagedcode/data/pypi/requirements_txt/complex/output.expected.json +++ b/tests/packagedcode/data/pypi/requirements_txt/complex/output.expected.json @@ -35,7 +35,7 @@ "dependencies": [ { "purl": "pkg:pypi/babel@0.9.6", - "extracted_requirement": "==0.9.6", + "extracted_requirement": "Babel==0.9.6", "scope": "install", "is_runtime": true, "is_optional": false, @@ -77,7 +77,7 @@ }, { "purl": "pkg:pypi/django-uuidfield@0.2", - "extracted_requirement": "==0.2", + "extracted_requirement": "django-uuidfield==0.2", "scope": "install", "is_runtime": true, "is_optional": false, diff --git a/tests/packagedcode/data/pypi/requirements_txt/dev/output.expected.json b/tests/packagedcode/data/pypi/requirements_txt/dev/output.expected.json index 534a571196c..94187c8dc52 100644 --- a/tests/packagedcode/data/pypi/requirements_txt/dev/output.expected.json +++ b/tests/packagedcode/data/pypi/requirements_txt/dev/output.expected.json @@ -31,7 +31,7 @@ "dependencies": [ { "purl": "pkg:pypi/prompt-toolkit", - "extracted_requirement": ">=1.0.14", + "extracted_requirement": "prompt_toolkit>=1.0.14", "scope": "development", "is_runtime": false, "is_optional": true, @@ -52,7 +52,7 @@ }, { "purl": "pkg:pypi/pygments@2.2.0", - "extracted_requirement": "==2.2.0", + "extracted_requirement": "Pygments==2.2.0", "scope": "development", "is_runtime": false, "is_optional": true, @@ -73,7 +73,7 @@ }, { "purl": "pkg:pypi/regex", - "extracted_requirement": "", + "extracted_requirement": "regex", "scope": "development", "is_runtime": false, "is_optional": true, diff --git a/tests/packagedcode/data/pypi/requirements_txt/double_extras/output.expected.json b/tests/packagedcode/data/pypi/requirements_txt/double_extras/output.expected.json index 25e3122f246..85fec273a4f 100644 --- a/tests/packagedcode/data/pypi/requirements_txt/double_extras/output.expected.json +++ b/tests/packagedcode/data/pypi/requirements_txt/double_extras/output.expected.json @@ -31,7 +31,7 @@ "dependencies": [ { "purl": "pkg:pypi/mypackage@3.0", - "extracted_requirement": "[pdf]==3.0", + "extracted_requirement": "MyPackage[pdf]==3.0", "scope": "install", "is_runtime": true, "is_optional": false, @@ -52,7 +52,7 @@ }, { "purl": "pkg:pypi/fizzy", - "extracted_requirement": "[bar,foo]", + "extracted_requirement": "Fizzy[bar,foo]", "scope": "install", "is_runtime": true, "is_optional": false, diff --git a/tests/packagedcode/data/pypi/requirements_txt/eol_comment/output.expected.json b/tests/packagedcode/data/pypi/requirements_txt/eol_comment/output.expected.json index 7fc802d1a26..aced69a2e07 100644 --- a/tests/packagedcode/data/pypi/requirements_txt/eol_comment/output.expected.json +++ b/tests/packagedcode/data/pypi/requirements_txt/eol_comment/output.expected.json @@ -31,7 +31,7 @@ "dependencies": [ { "purl": "pkg:pypi/req@1.0", - "extracted_requirement": "==1.0", + "extracted_requirement": "req==1.0", "scope": "install", "is_runtime": true, "is_optional": false, diff --git a/tests/packagedcode/data/pypi/requirements_txt/invalid_spec/output.expected.json b/tests/packagedcode/data/pypi/requirements_txt/invalid_spec/output.expected.json index a94268d8284..9daeb298df0 100644 --- a/tests/packagedcode/data/pypi/requirements_txt/invalid_spec/output.expected.json +++ b/tests/packagedcode/data/pypi/requirements_txt/invalid_spec/output.expected.json @@ -31,7 +31,7 @@ "dependencies": [ { "purl": "pkg:pypi/test", - "extracted_requirement": ">>1.2.0", + "extracted_requirement": "test>>1.2.0", "scope": "install", "is_runtime": true, "is_optional": false, diff --git a/tests/packagedcode/data/pypi/requirements_txt/many_specs/output.expected.json b/tests/packagedcode/data/pypi/requirements_txt/many_specs/output.expected.json index 07e591e4369..7d44cdb702e 100644 --- a/tests/packagedcode/data/pypi/requirements_txt/many_specs/output.expected.json +++ b/tests/packagedcode/data/pypi/requirements_txt/many_specs/output.expected.json @@ -31,7 +31,7 @@ "dependencies": [ { "purl": "pkg:pypi/pickything", - "extracted_requirement": "<1.6,>1.9,!=1.9.6,<2.0a0,==2.4c1", + "extracted_requirement": "PickyThing<1.6,>1.9,!=1.9.6,<2.0a0,==2.4c1", "scope": "install", "is_runtime": true, "is_optional": false, diff --git a/tests/packagedcode/data/pypi/requirements_txt/mixed/output.expected.json b/tests/packagedcode/data/pypi/requirements_txt/mixed/output.expected.json index 092d832d289..0f1e4ff22bc 100644 --- a/tests/packagedcode/data/pypi/requirements_txt/mixed/output.expected.json +++ b/tests/packagedcode/data/pypi/requirements_txt/mixed/output.expected.json @@ -52,7 +52,7 @@ }, { "purl": "pkg:pypi/django", - "extracted_requirement": ">=1.5,<1.6", + "extracted_requirement": "Django>=1.5,<1.6", "scope": "install", "is_runtime": true, "is_optional": false, @@ -73,7 +73,7 @@ }, { "purl": "pkg:pypi/numpy", - "extracted_requirement": "", + "extracted_requirement": "numpy", "scope": "install", "is_runtime": true, "is_optional": false, @@ -94,7 +94,7 @@ }, { "purl": "pkg:pypi/docparser", - "extracted_requirement": "[pdf]", + "extracted_requirement": "DocParser[pdf]", "scope": "install", "is_runtime": true, "is_optional": false, diff --git a/tests/packagedcode/data/pypi/requirements_txt/pinned/output.expected.json b/tests/packagedcode/data/pypi/requirements_txt/pinned/output.expected.json index fc4c6c9bacb..2609ebf36e4 100644 --- a/tests/packagedcode/data/pypi/requirements_txt/pinned/output.expected.json +++ b/tests/packagedcode/data/pypi/requirements_txt/pinned/output.expected.json @@ -31,7 +31,7 @@ "dependencies": [ { "purl": "pkg:pypi/aiohttp@3.6.2", - "extracted_requirement": "==3.6.2", + "extracted_requirement": "aiohttp==3.6.2", "scope": "install", "is_runtime": true, "is_optional": false, @@ -52,7 +52,7 @@ }, { "purl": "pkg:pypi/async-timeout@3.0.1", - "extracted_requirement": "==3.0.1", + "extracted_requirement": "async-timeout==3.0.1", "scope": "install", "is_runtime": true, "is_optional": false, @@ -73,7 +73,7 @@ }, { "purl": "pkg:pypi/attrs@19.3.0", - "extracted_requirement": "==19.3.0", + "extracted_requirement": "attrs==19.3.0", "scope": "install", "is_runtime": true, "is_optional": false, diff --git a/tests/packagedcode/data/pypi/requirements_txt/repeated/output.expected.json b/tests/packagedcode/data/pypi/requirements_txt/repeated/output.expected.json index 6b9b98111bc..0a8d1d7a73f 100644 --- a/tests/packagedcode/data/pypi/requirements_txt/repeated/output.expected.json +++ b/tests/packagedcode/data/pypi/requirements_txt/repeated/output.expected.json @@ -31,7 +31,7 @@ "dependencies": [ { "purl": "pkg:pypi/test@1.2.0", - "extracted_requirement": "==1.2.0", + "extracted_requirement": "test==1.2.0", "scope": "install", "is_runtime": true, "is_optional": false, @@ -52,7 +52,7 @@ }, { "purl": "pkg:pypi/test", - "extracted_requirement": ">=1.2.0", + "extracted_requirement": "test>=1.2.0", "scope": "install", "is_runtime": true, "is_optional": false, diff --git a/tests/packagedcode/data/pypi/requirements_txt/requirements_in/output.expected.json b/tests/packagedcode/data/pypi/requirements_txt/requirements_in/output.expected.json index 343d60f5ea7..ea07c04a2aa 100644 --- a/tests/packagedcode/data/pypi/requirements_txt/requirements_in/output.expected.json +++ b/tests/packagedcode/data/pypi/requirements_txt/requirements_in/output.expected.json @@ -31,7 +31,7 @@ "dependencies": [ { "purl": "pkg:pypi/setuptools", - "extracted_requirement": "", + "extracted_requirement": "setuptools", "scope": "install", "is_runtime": true, "is_optional": false, @@ -52,7 +52,7 @@ }, { "purl": "pkg:pypi/nose", - "extracted_requirement": "", + "extracted_requirement": "nose", "scope": "install", "is_runtime": true, "is_optional": false, diff --git a/tests/packagedcode/data/pypi/requirements_txt/simple/output.expected.json b/tests/packagedcode/data/pypi/requirements_txt/simple/output.expected.json index 81127fb7c1d..c84868e9ae9 100644 --- a/tests/packagedcode/data/pypi/requirements_txt/simple/output.expected.json +++ b/tests/packagedcode/data/pypi/requirements_txt/simple/output.expected.json @@ -2,7 +2,7 @@ [ { "purl": "pkg:pypi/lxml@3.4.4", - "extracted_requirement": "==3.4.4", + "extracted_requirement": "lxml==3.4.4", "scope": "install", "is_runtime": true, "is_optional": false, @@ -23,7 +23,7 @@ }, { "purl": "pkg:pypi/requests@2.7.0", - "extracted_requirement": "==2.7.0", + "extracted_requirement": "requests==2.7.0", "scope": "install", "is_runtime": true, "is_optional": false, diff --git a/tests/packagedcode/data/pypi/source-package/pip-22.0.4-pypi-package-expected.json b/tests/packagedcode/data/pypi/source-package/pip-22.0.4-pypi-package-expected.json index fb4a4b1d527..802bc17e414 100644 --- a/tests/packagedcode/data/pypi/source-package/pip-22.0.4-pypi-package-expected.json +++ b/tests/packagedcode/data/pypi/source-package/pip-22.0.4-pypi-package-expected.json @@ -235,7 +235,7 @@ "dependencies": [ { "purl": "pkg:pypi/sphinx", - "extracted_requirement": "~=4.2,!=4.4.0", + "extracted_requirement": "sphinx~=4.2,!=4.4.0", "scope": "install", "is_runtime": true, "is_optional": false, @@ -256,7 +256,7 @@ }, { "purl": "pkg:pypi/towncrier", - "extracted_requirement": "", + "extracted_requirement": "towncrier", "scope": "install", "is_runtime": true, "is_optional": false, @@ -277,7 +277,7 @@ }, { "purl": "pkg:pypi/furo", - "extracted_requirement": "", + "extracted_requirement": "furo", "scope": "install", "is_runtime": true, "is_optional": false, @@ -298,7 +298,7 @@ }, { "purl": "pkg:pypi/myst-parser", - "extracted_requirement": "", + "extracted_requirement": "myst_parser", "scope": "install", "is_runtime": true, "is_optional": false, @@ -319,7 +319,7 @@ }, { "purl": "pkg:pypi/sphinx-copybutton", - "extracted_requirement": "", + "extracted_requirement": "sphinx-copybutton", "scope": "install", "is_runtime": true, "is_optional": false, @@ -340,7 +340,7 @@ }, { "purl": "pkg:pypi/sphinx-inline-tabs", - "extracted_requirement": "", + "extracted_requirement": "sphinx-inline-tabs", "scope": "install", "is_runtime": true, "is_optional": false, @@ -361,7 +361,7 @@ }, { "purl": "pkg:pypi/sphinxcontrib-towncrier", - "extracted_requirement": ">=0.2.0a0", + "extracted_requirement": "sphinxcontrib-towncrier>=0.2.0a0", "scope": "install", "is_runtime": true, "is_optional": false, diff --git a/tests/packagedcode/data/pypi/unpacked_sdist/metadata-1.0/PyJPString-0.0.3-subdir-expected.json b/tests/packagedcode/data/pypi/unpacked_sdist/metadata-1.0/PyJPString-0.0.3-subdir-expected.json index 45df3a66b26..080244a3089 100644 --- a/tests/packagedcode/data/pypi/unpacked_sdist/metadata-1.0/PyJPString-0.0.3-subdir-expected.json +++ b/tests/packagedcode/data/pypi/unpacked_sdist/metadata-1.0/PyJPString-0.0.3-subdir-expected.json @@ -194,7 +194,7 @@ "extracted_requirement": "django; extra == \"test\"", "scope": "test", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -204,7 +204,7 @@ "extracted_requirement": "pytest==2.9.1; extra == \"test\"", "scope": "test", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": true, "resolved_package": {}, "extra_data": {} diff --git a/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery-expected.json b/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery-expected.json new file mode 100644 index 00000000000..f0bbaf1fffa --- /dev/null +++ b/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery-expected.json @@ -0,0 +1,8105 @@ +{ + "dependencies": [ + { + "purl": "pkg:pypi/pytz", + "extracted_requirement": "pytz>=2021.3", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/pytz?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/billiard", + "extracted_requirement": "billiard<4.0,>=3.6.4.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/billiard?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/kombu", + "extracted_requirement": "kombu<6.0,>=5.2.3", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/kombu?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/vine", + "extracted_requirement": "vine<6.0,>=5.0.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/vine?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/click", + "extracted_requirement": "click<9.0,>=8.0.3", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/click?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/click-didyoumean", + "extracted_requirement": "click-didyoumean>=0.0.3", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/click-didyoumean?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/click-repl", + "extracted_requirement": "click-repl>=0.2.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/click-repl?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/click-plugins", + "extracted_requirement": "click-plugins>=1.1.1", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/click-plugins?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/importlib-metadata", + "extracted_requirement": "importlib-metadata>=1.4.0; python_version < \"3.8\"", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/importlib-metadata?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/pyarango", + "extracted_requirement": "pyArango>=1.3.2; extra == \"arangodb\"", + "scope": "arangodb", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/pyarango?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/cryptography", + "extracted_requirement": "cryptography; extra == \"auth\"", + "scope": "auth", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/cryptography?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/azure-storage-blob@12.9.0", + "extracted_requirement": "azure-storage-blob==12.9.0; extra == \"azureblockblob\"", + "scope": "azureblockblob", + "is_runtime": true, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/azure-storage-blob@12.9.0?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/brotli", + "extracted_requirement": "brotli>=1.0.0; platform_python_implementation == \"CPython\" and extra == \"brotli\"", + "scope": "brotli", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/brotli?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/brotlipy", + "extracted_requirement": "brotlipy>=0.7.0; platform_python_implementation == \"PyPy\" and extra == \"brotli\"", + "scope": "brotli", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/brotlipy?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/cassandra-driver", + "extracted_requirement": "cassandra-driver<3.21.0; extra == \"cassandra\"", + "scope": "cassandra", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/cassandra-driver?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/python-consul2", + "extracted_requirement": "python-consul2; extra == \"consul\"", + "scope": "consul", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/python-consul2?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/pydocumentdb@2.3.2", + "extracted_requirement": "pydocumentdb==2.3.2; extra == \"cosmosdbsql\"", + "scope": "cosmosdbsql", + "is_runtime": true, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/pydocumentdb@2.3.2?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/couchbase", + "extracted_requirement": "couchbase>=3.0.0; (platform_python_implementation != \"PyPy\" and (platform_system != \"Windows\" or python_version < \"3.10\")) and extra == \"couchbase\"", + "scope": "couchbase", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/couchbase?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/pycouchdb", + "extracted_requirement": "pycouchdb; extra == \"couchdb\"", + "scope": "couchdb", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/pycouchdb?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/django", + "extracted_requirement": "Django>=1.11; extra == \"django\"", + "scope": "django", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/django?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/boto3", + "extracted_requirement": "boto3>=1.9.178; extra == \"dynamodb\"", + "scope": "dynamodb", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/boto3?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/elasticsearch", + "extracted_requirement": "elasticsearch; extra == \"elasticsearch\"", + "scope": "elasticsearch", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/elasticsearch?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/eventlet", + "extracted_requirement": "eventlet>=0.32.0; python_version < \"3.10\" and extra == \"eventlet\"", + "scope": "eventlet", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/eventlet?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/gevent", + "extracted_requirement": "gevent>=1.5.0; extra == \"gevent\"", + "scope": "gevent", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/gevent?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/librabbitmq", + "extracted_requirement": "librabbitmq>=1.5.0; extra == \"librabbitmq\"", + "scope": "librabbitmq", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/librabbitmq?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/pylibmc", + "extracted_requirement": "pylibmc; platform_system != \"Windows\" and extra == \"memcache\"", + "scope": "memcache", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/pylibmc?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/pymongo", + "extracted_requirement": "pymongo[srv]>=3.11.1; extra == \"mongodb\"", + "scope": "mongodb", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/pymongo?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/msgpack", + "extracted_requirement": "msgpack; extra == \"msgpack\"", + "scope": "msgpack", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/msgpack?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/python-memcached", + "extracted_requirement": "python-memcached; extra == \"pymemcache\"", + "scope": "pymemcache", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/python-memcached?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/pyro4", + "extracted_requirement": "pyro4; extra == \"pyro\"", + "scope": "pyro", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/pyro4?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/pytest-celery", + "extracted_requirement": "pytest-celery; extra == \"pytest\"", + "scope": "pytest", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/pytest-celery?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/redis", + "extracted_requirement": "redis!=4.0.0,!=4.0.1,>=3.4.1; extra == \"redis\"", + "scope": "redis", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/redis?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/boto3", + "extracted_requirement": "boto3>=1.9.125; extra == \"s3\"", + "scope": "s3", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/boto3?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/softlayer-messaging", + "extracted_requirement": "softlayer_messaging>=1.0.3; extra == \"slmq\"", + "scope": "slmq", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/softlayer-messaging?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/ephem", + "extracted_requirement": "ephem; platform_python_implementation != \"PyPy\" and extra == \"solar\"", + "scope": "solar", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/ephem?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/sqlalchemy", + "extracted_requirement": "sqlalchemy; extra == \"sqlalchemy\"", + "scope": "sqlalchemy", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/sqlalchemy?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/kombu", + "extracted_requirement": "kombu[sqs]; extra == \"sqs\"", + "scope": "sqs", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/kombu?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/tblib", + "extracted_requirement": "tblib>=1.3.0; python_version < \"3.8.0\" and extra == \"tblib\"", + "scope": "tblib", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/tblib?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/tblib", + "extracted_requirement": "tblib>=1.5.0; python_version >= \"3.8.0\" and extra == \"tblib\"", + "scope": "tblib", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/tblib?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/pyyaml", + "extracted_requirement": "PyYAML>=3.10; extra == \"yaml\"", + "scope": "yaml", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/pyyaml?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/kazoo", + "extracted_requirement": "kazoo>=1.3.1; extra == \"zookeeper\"", + "scope": "zookeeper", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/kazoo?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + }, + { + "purl": "pkg:pypi/zstandard", + "extracted_requirement": "zstandard; extra == \"zstd\"", + "scope": "zstd", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/zstandard?uuid=fixed-uid-done-for-testing-5642512d1758", + "for_package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_path": "celery/celery.egg-info/PKG-INFO", + "datasource_id": "pypi_editable_egg_pkginfo" + } + ], + "packages": [ + { + "type": "pypi", + "namespace": null, + "name": "celery", + "version": "5.2.7", + "qualifiers": {}, + "subpath": null, + "primary_language": "Python", + "description": "Distributed Task Queue.\n.. image:: http://docs.celeryproject.org/en/latest/_images/celery-banner-small.png\n\n|build-status| |coverage| |license| |wheel| |pyversion| |pyimp| |ocbackerbadge| |ocsponsorbadge|\n\n:Version: 5.2.7 (dawn-chorus)\n:Web: https://docs.celeryproject.org/en/stable/index.html\n:Download: https://pypi.org/project/celery/\n:Source: https://github.com/celery/celery/\n:Keywords: task, queue, job, async, rabbitmq, amqp, redis,\n python, distributed, actors\n\nDonations\n=========\n\nThis project relies on your generous donations.\n\nIf you are using Celery to create a commercial product, please consider becoming our `backer`_ or our `sponsor`_ to ensure Celery's future.\n\n.. _`backer`: https://opencollective.com/celery#backer\n.. _`sponsor`: https://opencollective.com/celery#sponsor\n\nFor enterprise\n==============\n\nAvailable as part of the Tidelift Subscription.\n\nThe maintainers of ``celery`` and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. `Learn more. `_\n\nWhat's a Task Queue?\n====================\n\nTask queues are used as a mechanism to distribute work across threads or\nmachines.\n\nA task queue's input is a unit of work, called a task, dedicated worker\nprocesses then constantly monitor the queue for new work to perform.\n\nCelery communicates via messages, usually using a broker\nto mediate between clients and workers. To initiate a task a client puts a\nmessage on the queue, the broker then delivers the message to a worker.\n\nA Celery system can consist of multiple workers and brokers, giving way\nto high availability and horizontal scaling.\n\nCelery is written in Python, but the protocol can be implemented in any\nlanguage. In addition to Python there's node-celery_ for Node.js,\na `PHP client`_, `gocelery`_ for golang, and rusty-celery_ for Rust.\n\nLanguage interoperability can also be achieved by using webhooks\nin such a way that the client enqueues an URL to be requested by a worker.\n\n.. _node-celery: https://github.com/mher/node-celery\n.. _`PHP client`: https://github.com/gjedeer/celery-php\n.. _`gocelery`: https://github.com/gocelery/gocelery\n.. _rusty-celery: https://github.com/rusty-celery/rusty-celery\n\nWhat do I need?\n===============\n\nCelery version 5.2.0 runs on,\n\n- Python (3.7, 3.8, 3.9, 3.10)\n- PyPy3.7 (7.3.7+)\n\n\nThis is the version of celery which will support Python 3.7 or newer.\n\nIf you're running an older version of Python, you need to be running\nan older version of Celery:\n\n- Python 2.6: Celery series 3.1 or earlier.\n- Python 2.5: Celery series 3.0 or earlier.\n- Python 2.4: Celery series 2.2 or earlier.\n- Python 2.7: Celery 4.x series.\n- Python 3.6: Celery 5.1 or earlier.\n\nCelery is a project with minimal funding,\nso we don't support Microsoft Windows.\nPlease don't open any issues related to that platform.\n\n*Celery* is usually used with a message broker to send and receive messages.\nThe RabbitMQ, Redis transports are feature complete,\nbut there's also experimental support for a myriad of other solutions, including\nusing SQLite for local development.\n\n*Celery* can run on a single machine, on multiple machines, or even\nacross datacenters.\n\nGet Started\n===========\n\nIf this is the first time you're trying to use Celery, or you're\nnew to Celery v5.2.0 coming from previous versions then you should read our\ngetting started tutorials:\n\n- `First steps with Celery`_\n\n Tutorial teaching you the bare minimum needed to get started with Celery.\n\n- `Next steps`_\n\n A more complete overview, showing more features.\n\n.. _`First steps with Celery`:\n http://docs.celeryproject.org/en/latest/getting-started/first-steps-with-celery.html\n\n.. _`Next steps`:\n http://docs.celeryproject.org/en/latest/getting-started/next-steps.html\n\n You can also get started with Celery by using a hosted broker transport CloudAMQP. The largest hosting provider of RabbitMQ is a proud sponsor of Celery.\n\nCelery is...\n=============\n\n- **Simple**\n\n Celery is easy to use and maintain, and does *not need configuration files*.\n\n It has an active, friendly community you can talk to for support,\n like at our `mailing-list`_, or the IRC channel.\n\n Here's one of the simplest applications you can make:\n\n .. code-block:: python\n\n from celery import Celery\n\n app = Celery('hello', broker='amqp://guest@localhost//')\n\n @app.task\n def hello():\n return 'hello world'\n\n- **Highly Available**\n\n Workers and clients will automatically retry in the event\n of connection loss or failure, and some brokers support\n HA in way of *Primary/Primary* or *Primary/Replica* replication.\n\n- **Fast**\n\n A single Celery process can process millions of tasks a minute,\n with sub-millisecond round-trip latency (using RabbitMQ,\n py-librabbitmq, and optimized settings).\n\n- **Flexible**\n\n Almost every part of *Celery* can be extended or used on its own,\n Custom pool implementations, serializers, compression schemes, logging,\n schedulers, consumers, producers, broker transports, and much more.\n\nIt supports...\n================\n\n - **Message Transports**\n\n - RabbitMQ_, Redis_, Amazon SQS\n\n - **Concurrency**\n\n - Prefork, Eventlet_, gevent_, single threaded (``solo``)\n\n - **Result Stores**\n\n - AMQP, Redis\n - memcached\n - SQLAlchemy, Django ORM\n - Apache Cassandra, IronCache, Elasticsearch\n\n - **Serialization**\n\n - *pickle*, *json*, *yaml*, *msgpack*.\n - *zlib*, *bzip2* compression.\n - Cryptographic message signing.\n\n.. _`Eventlet`: http://eventlet.net/\n.. _`gevent`: http://gevent.org/\n\n.. _RabbitMQ: https://rabbitmq.com\n.. _Redis: https://redis.io\n.. _SQLAlchemy: http://sqlalchemy.org\n\nFramework Integration\n=====================\n\nCelery is easy to integrate with web frameworks, some of which even have\nintegration packages:\n\n +--------------------+------------------------+\n | `Django`_ | not needed |\n +--------------------+------------------------+\n | `Pyramid`_ | `pyramid_celery`_ |\n +--------------------+------------------------+\n | `Pylons`_ | `celery-pylons`_ |\n +--------------------+------------------------+\n | `Flask`_ | not needed |\n +--------------------+------------------------+\n | `web2py`_ | `web2py-celery`_ |\n +--------------------+------------------------+\n | `Tornado`_ | `tornado-celery`_ |\n +--------------------+------------------------+\n\nThe integration packages aren't strictly necessary, but they can make\ndevelopment easier, and sometimes they add important hooks like closing\ndatabase connections at ``fork``.\n\n.. _`Django`: https://djangoproject.com/\n.. _`Pylons`: http://pylonsproject.org/\n.. _`Flask`: http://flask.pocoo.org/\n.. _`web2py`: http://web2py.com/\n.. _`Bottle`: https://bottlepy.org/\n.. _`Pyramid`: http://docs.pylonsproject.org/en/latest/docs/pyramid.html\n.. _`pyramid_celery`: https://pypi.org/project/pyramid_celery/\n.. _`celery-pylons`: https://pypi.org/project/celery-pylons/\n.. _`web2py-celery`: https://code.google.com/p/web2py-celery/\n.. _`Tornado`: http://www.tornadoweb.org/\n.. _`tornado-celery`: https://github.com/mher/tornado-celery/\n\n.. _celery-documentation:\n\nDocumentation\n=============\n\nThe `latest documentation`_ is hosted at Read The Docs, containing user guides,\ntutorials, and an API reference.\n\n\u6700\u65b0\u7684\u4e2d\u6587\u6587\u6863\u6258\u7ba1\u5728 https://www.celerycn.io/ \u4e2d\uff0c\u5305\u542b\u7528\u6237\u6307\u5357\u3001\u6559\u7a0b\u3001API\u63a5\u53e3\u7b49\u3002\n\n.. _`latest documentation`: http://docs.celeryproject.org/en/latest/\n\n.. _celery-installation:\n\nInstallation\n============\n\nYou can install Celery either via the Python Package Index (PyPI)\nor from source.\n\nTo install using ``pip``:\n\n::\n\n\n $ pip install -U Celery\n\n.. _bundles:\n\nBundles\n-------\n\nCelery also defines a group of bundles that can be used\nto install Celery and the dependencies for a given feature.\n\nYou can specify these in your requirements or on the ``pip``\ncommand-line by using brackets. Multiple bundles can be specified by\nseparating them by commas.\n\n::\n\n\n $ pip install \"celery[amqp]\"\n\n $ pip install \"celery[amqp,redis,auth,msgpack]\"\n\nThe following bundles are available:\n\nSerializers\n~~~~~~~~~~~\n\n:``celery[auth]``:\n for using the ``auth`` security serializer.\n\n:``celery[msgpack]``:\n for using the msgpack serializer.\n\n:``celery[yaml]``:\n for using the yaml serializer.\n\nConcurrency\n~~~~~~~~~~~\n\n:``celery[eventlet]``:\n for using the ``eventlet`` pool.\n\n:``celery[gevent]``:\n for using the ``gevent`` pool.\n\nTransports and Backends\n~~~~~~~~~~~~~~~~~~~~~~~\n\n:``celery[amqp]``:\n for using the RabbitMQ amqp python library.\n\n:``celery[redis]``:\n for using Redis as a message transport or as a result backend.\n\n:``celery[sqs]``:\n for using Amazon SQS as a message transport.\n\n:``celery[tblib``]:\n for using the ``task_remote_tracebacks`` feature.\n\n:``celery[memcache]``:\n for using Memcached as a result backend (using ``pylibmc``)\n\n:``celery[pymemcache]``:\n for using Memcached as a result backend (pure-Python implementation).\n\n:``celery[cassandra]``:\n for using Apache Cassandra as a result backend with DataStax driver.\n\n:``celery[azureblockblob]``:\n for using Azure Storage as a result backend (using ``azure-storage``)\n\n:``celery[s3]``:\n for using S3 Storage as a result backend.\n\n:``celery[couchbase]``:\n for using Couchbase as a result backend.\n\n:``celery[arangodb]``:\n for using ArangoDB as a result backend.\n\n:``celery[elasticsearch]``:\n for using Elasticsearch as a result backend.\n\n:``celery[riak]``:\n for using Riak as a result backend.\n\n:``celery[cosmosdbsql]``:\n for using Azure Cosmos DB as a result backend (using ``pydocumentdb``)\n\n:``celery[zookeeper]``:\n for using Zookeeper as a message transport.\n\n:``celery[sqlalchemy]``:\n for using SQLAlchemy as a result backend (*supported*).\n\n:``celery[pyro]``:\n for using the Pyro4 message transport (*experimental*).\n\n:``celery[slmq]``:\n for using the SoftLayer Message Queue transport (*experimental*).\n\n:``celery[consul]``:\n for using the Consul.io Key/Value store as a message transport or result backend (*experimental*).\n\n:``celery[django]``:\n specifies the lowest version possible for Django support.\n\n You should probably not use this in your requirements, it's here\n for informational purposes only.\n\n\n.. _celery-installing-from-source:\n\nDownloading and installing from source\n--------------------------------------\n\nDownload the latest version of Celery from PyPI:\n\nhttps://pypi.org/project/celery/\n\nYou can install it by doing the following,:\n\n::\n\n\n $ tar xvfz celery-0.0.0.tar.gz\n $ cd celery-0.0.0\n $ python setup.py build\n # python setup.py install\n\nThe last command must be executed as a privileged user if\nyou aren't currently using a virtualenv.\n\n.. _celery-installing-from-git:\n\nUsing the development version\n-----------------------------\n\nWith pip\n~~~~~~~~\n\nThe Celery development version also requires the development\nversions of ``kombu``, ``amqp``, ``billiard``, and ``vine``.\n\nYou can install the latest snapshot of these using the following\npip commands:\n\n::\n\n\n $ pip install https://github.com/celery/celery/zipball/master#egg=celery\n $ pip install https://github.com/celery/billiard/zipball/master#egg=billiard\n $ pip install https://github.com/celery/py-amqp/zipball/master#egg=amqp\n $ pip install https://github.com/celery/kombu/zipball/master#egg=kombu\n $ pip install https://github.com/celery/vine/zipball/master#egg=vine\n\nWith git\n~~~~~~~~\n\nPlease see the Contributing section.\n\n.. _getting-help:\n\nGetting Help\n============\n\n.. _mailing-list:\n\nMailing list\n------------\n\nFor discussions about the usage, development, and future of Celery,\nplease join the `celery-users`_ mailing list.\n\n.. _`celery-users`: https://groups.google.com/group/celery-users/\n\n.. _irc-channel:\n\nIRC\n---\n\nCome chat with us on IRC. The **#celery** channel is located at the\n`Libera Chat`_ network.\n\n.. _`Libera Chat`: https://libera.chat/\n\n.. _bug-tracker:\n\nBug tracker\n===========\n\nIf you have any suggestions, bug reports, or annoyances please report them\nto our issue tracker at https://github.com/celery/celery/issues/\n\n.. _wiki:\n\nWiki\n====\n\nhttps://github.com/celery/celery/wiki\n\nCredits\n=======\n\n.. _contributing-short:\n\nContributors\n------------\n\nThis project exists thanks to all the people who contribute. Development of\n`celery` happens at GitHub: https://github.com/celery/celery\n\nYou're highly encouraged to participate in the development\nof `celery`. If you don't like GitHub (for some reason) you're welcome\nto send regular patches.\n\nBe sure to also read the `Contributing to Celery`_ section in the\ndocumentation.\n\n.. _`Contributing to Celery`:\n http://docs.celeryproject.org/en/master/contributing.html\n\n|oc-contributors|\n\n.. |oc-contributors| image:: https://opencollective.com/celery/contributors.svg?width=890&button=false\n :target: https://github.com/celery/celery/graphs/contributors\n\nBackers\n-------\n\nThank you to all our backers! \ud83d\ude4f [`Become a backer`_]\n\n.. _`Become a backer`: https://opencollective.com/celery#backer\n\n|oc-backers|\n\n.. |oc-backers| image:: https://opencollective.com/celery/backers.svg?width=890\n :target: https://opencollective.com/celery#backers\n\nSponsors\n--------\n\nSupport this project by becoming a sponsor. Your logo will show up here with a\nlink to your website. [`Become a sponsor`_]\n\n.. _`Become a sponsor`: https://opencollective.com/celery#sponsor\n\n|oc-sponsors|\n\n.. |oc-sponsors| image:: https://opencollective.com/celery/sponsor/0/avatar.svg\n :target: https://opencollective.com/celery/sponsor/0/website\n\n.. _license:\n\nLicense\n=======\n\nThis software is licensed under the `New BSD License`. See the ``LICENSE``\nfile in the top distribution directory for the full license text.\n\n.. # vim: syntax=rst expandtab tabstop=4 shiftwidth=4 shiftround\n\n.. |build-status| image:: https://github.com/celery/celery/actions/workflows/python-package.yml/badge.svg\n :alt: Build status\n :target: https://github.com/celery/celery/actions/workflows/python-package.yml\n\n.. |coverage| image:: https://codecov.io/github/celery/celery/coverage.svg?branch=master\n :target: https://codecov.io/github/celery/celery?branch=master\n\n.. |license| image:: https://img.shields.io/pypi/l/celery.svg\n :alt: BSD License\n :target: https://opensource.org/licenses/BSD-3-Clause\n\n.. |wheel| image:: https://img.shields.io/pypi/wheel/celery.svg\n :alt: Celery can be installed via wheel\n :target: https://pypi.org/project/celery/\n\n.. |pyversion| image:: https://img.shields.io/pypi/pyversions/celery.svg\n :alt: Supported Python versions.\n :target: https://pypi.org/project/celery/\n\n.. |pyimp| image:: https://img.shields.io/pypi/implementation/celery.svg\n :alt: Supported Python implementations.\n :target: https://pypi.org/project/celery/\n\n.. |ocbackerbadge| image:: https://opencollective.com/celery/backers/badge.svg\n :alt: Backers on Open Collective\n :target: #backers\n\n.. |ocsponsorbadge| image:: https://opencollective.com/celery/sponsors/badge.svg\n :alt: Sponsors on Open Collective\n :target: #sponsors\n\n.. |downloads| image:: https://pepy.tech/badge/celery\n :alt: Downloads\n :target: https://pepy.tech/project/celery", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "author", + "name": "Ask Solem", + "email": "auvipy@gmail.com", + "url": null + } + ], + "keywords": [ + "task job queue distributed messaging actor", + "Development Status :: 5 - Production/Stable", + "Topic :: System :: Distributed Computing", + "Topic :: Software Development :: Object Brokering", + "Framework :: Celery", + "Programming Language :: Python", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: Implementation :: CPython", + "Programming Language :: Python :: Implementation :: PyPy", + "Operating System :: OS Independent" + ], + "homepage_url": "http://celeryproject.org", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/celery/celery/issues", + "code_view_url": "https://github.com/celery/celery", + "vcs_url": null, + "copyright": null, + "license_expression": "bsd-new AND bsd-new", + "declared_license": { + "license": "BSD", + "classifiers": [ + "License :: OSI Approved :: BSD License" + ] + }, + "notice_text": null, + "source_packages": [], + "extra_data": { + "Documentation": "https://docs.celeryproject.org/en/latest/index.html", + "Changelog": "https://docs.celeryproject.org/en/stable/changelog.html", + "Funding": "https://opencollective.com/celery" + }, + "repository_homepage_url": "https://pypi.org/project/celery", + "repository_download_url": "https://pypi.org/packages/source/c/celery/celery-5.2.7.tar.gz", + "api_data_url": "https://pypi.org/pypi/celery/5.2.7/json", + "package_uid": "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758", + "datafile_paths": [ + "celery/celery.egg-info/PKG-INFO" + ], + "datasource_ids": [ + "pypi_editable_egg_pkginfo" + ], + "purl": "pkg:pypi/celery@5.2.7" + } + ], + "files": [ + { + "path": "celery", + "type": "directory", + "package_data": [], + "for_packages": [], + "scan_errors": [] + }, + { + "path": "celery/PKG-INFO", + "type": "file", + "package_data": [ + { + "type": "pypi", + "namespace": null, + "name": "celery", + "version": "5.2.7", + "qualifiers": {}, + "subpath": null, + "primary_language": "Python", + "description": "Distributed Task Queue.\n.. image:: http://docs.celeryproject.org/en/latest/_images/celery-banner-small.png\n\n|build-status| |coverage| |license| |wheel| |pyversion| |pyimp| |ocbackerbadge| |ocsponsorbadge|\n\n:Version: 5.2.7 (dawn-chorus)\n:Web: https://docs.celeryproject.org/en/stable/index.html\n:Download: https://pypi.org/project/celery/\n:Source: https://github.com/celery/celery/\n:Keywords: task, queue, job, async, rabbitmq, amqp, redis,\n python, distributed, actors\n\nDonations\n=========\n\nThis project relies on your generous donations.\n\nIf you are using Celery to create a commercial product, please consider becoming our `backer`_ or our `sponsor`_ to ensure Celery's future.\n\n.. _`backer`: https://opencollective.com/celery#backer\n.. _`sponsor`: https://opencollective.com/celery#sponsor\n\nFor enterprise\n==============\n\nAvailable as part of the Tidelift Subscription.\n\nThe maintainers of ``celery`` and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. `Learn more. `_\n\nWhat's a Task Queue?\n====================\n\nTask queues are used as a mechanism to distribute work across threads or\nmachines.\n\nA task queue's input is a unit of work, called a task, dedicated worker\nprocesses then constantly monitor the queue for new work to perform.\n\nCelery communicates via messages, usually using a broker\nto mediate between clients and workers. To initiate a task a client puts a\nmessage on the queue, the broker then delivers the message to a worker.\n\nA Celery system can consist of multiple workers and brokers, giving way\nto high availability and horizontal scaling.\n\nCelery is written in Python, but the protocol can be implemented in any\nlanguage. In addition to Python there's node-celery_ for Node.js,\na `PHP client`_, `gocelery`_ for golang, and rusty-celery_ for Rust.\n\nLanguage interoperability can also be achieved by using webhooks\nin such a way that the client enqueues an URL to be requested by a worker.\n\n.. _node-celery: https://github.com/mher/node-celery\n.. _`PHP client`: https://github.com/gjedeer/celery-php\n.. _`gocelery`: https://github.com/gocelery/gocelery\n.. _rusty-celery: https://github.com/rusty-celery/rusty-celery\n\nWhat do I need?\n===============\n\nCelery version 5.2.0 runs on,\n\n- Python (3.7, 3.8, 3.9, 3.10)\n- PyPy3.7 (7.3.7+)\n\n\nThis is the version of celery which will support Python 3.7 or newer.\n\nIf you're running an older version of Python, you need to be running\nan older version of Celery:\n\n- Python 2.6: Celery series 3.1 or earlier.\n- Python 2.5: Celery series 3.0 or earlier.\n- Python 2.4: Celery series 2.2 or earlier.\n- Python 2.7: Celery 4.x series.\n- Python 3.6: Celery 5.1 or earlier.\n\nCelery is a project with minimal funding,\nso we don't support Microsoft Windows.\nPlease don't open any issues related to that platform.\n\n*Celery* is usually used with a message broker to send and receive messages.\nThe RabbitMQ, Redis transports are feature complete,\nbut there's also experimental support for a myriad of other solutions, including\nusing SQLite for local development.\n\n*Celery* can run on a single machine, on multiple machines, or even\nacross datacenters.\n\nGet Started\n===========\n\nIf this is the first time you're trying to use Celery, or you're\nnew to Celery v5.2.0 coming from previous versions then you should read our\ngetting started tutorials:\n\n- `First steps with Celery`_\n\n Tutorial teaching you the bare minimum needed to get started with Celery.\n\n- `Next steps`_\n\n A more complete overview, showing more features.\n\n.. _`First steps with Celery`:\n http://docs.celeryproject.org/en/latest/getting-started/first-steps-with-celery.html\n\n.. _`Next steps`:\n http://docs.celeryproject.org/en/latest/getting-started/next-steps.html\n\n You can also get started with Celery by using a hosted broker transport CloudAMQP. The largest hosting provider of RabbitMQ is a proud sponsor of Celery.\n\nCelery is...\n=============\n\n- **Simple**\n\n Celery is easy to use and maintain, and does *not need configuration files*.\n\n It has an active, friendly community you can talk to for support,\n like at our `mailing-list`_, or the IRC channel.\n\n Here's one of the simplest applications you can make:\n\n .. code-block:: python\n\n from celery import Celery\n\n app = Celery('hello', broker='amqp://guest@localhost//')\n\n @app.task\n def hello():\n return 'hello world'\n\n- **Highly Available**\n\n Workers and clients will automatically retry in the event\n of connection loss or failure, and some brokers support\n HA in way of *Primary/Primary* or *Primary/Replica* replication.\n\n- **Fast**\n\n A single Celery process can process millions of tasks a minute,\n with sub-millisecond round-trip latency (using RabbitMQ,\n py-librabbitmq, and optimized settings).\n\n- **Flexible**\n\n Almost every part of *Celery* can be extended or used on its own,\n Custom pool implementations, serializers, compression schemes, logging,\n schedulers, consumers, producers, broker transports, and much more.\n\nIt supports...\n================\n\n - **Message Transports**\n\n - RabbitMQ_, Redis_, Amazon SQS\n\n - **Concurrency**\n\n - Prefork, Eventlet_, gevent_, single threaded (``solo``)\n\n - **Result Stores**\n\n - AMQP, Redis\n - memcached\n - SQLAlchemy, Django ORM\n - Apache Cassandra, IronCache, Elasticsearch\n\n - **Serialization**\n\n - *pickle*, *json*, *yaml*, *msgpack*.\n - *zlib*, *bzip2* compression.\n - Cryptographic message signing.\n\n.. _`Eventlet`: http://eventlet.net/\n.. _`gevent`: http://gevent.org/\n\n.. _RabbitMQ: https://rabbitmq.com\n.. _Redis: https://redis.io\n.. _SQLAlchemy: http://sqlalchemy.org\n\nFramework Integration\n=====================\n\nCelery is easy to integrate with web frameworks, some of which even have\nintegration packages:\n\n +--------------------+------------------------+\n | `Django`_ | not needed |\n +--------------------+------------------------+\n | `Pyramid`_ | `pyramid_celery`_ |\n +--------------------+------------------------+\n | `Pylons`_ | `celery-pylons`_ |\n +--------------------+------------------------+\n | `Flask`_ | not needed |\n +--------------------+------------------------+\n | `web2py`_ | `web2py-celery`_ |\n +--------------------+------------------------+\n | `Tornado`_ | `tornado-celery`_ |\n +--------------------+------------------------+\n\nThe integration packages aren't strictly necessary, but they can make\ndevelopment easier, and sometimes they add important hooks like closing\ndatabase connections at ``fork``.\n\n.. _`Django`: https://djangoproject.com/\n.. _`Pylons`: http://pylonsproject.org/\n.. _`Flask`: http://flask.pocoo.org/\n.. _`web2py`: http://web2py.com/\n.. _`Bottle`: https://bottlepy.org/\n.. _`Pyramid`: http://docs.pylonsproject.org/en/latest/docs/pyramid.html\n.. _`pyramid_celery`: https://pypi.org/project/pyramid_celery/\n.. _`celery-pylons`: https://pypi.org/project/celery-pylons/\n.. _`web2py-celery`: https://code.google.com/p/web2py-celery/\n.. _`Tornado`: http://www.tornadoweb.org/\n.. _`tornado-celery`: https://github.com/mher/tornado-celery/\n\n.. _celery-documentation:\n\nDocumentation\n=============\n\nThe `latest documentation`_ is hosted at Read The Docs, containing user guides,\ntutorials, and an API reference.\n\n\u6700\u65b0\u7684\u4e2d\u6587\u6587\u6863\u6258\u7ba1\u5728 https://www.celerycn.io/ \u4e2d\uff0c\u5305\u542b\u7528\u6237\u6307\u5357\u3001\u6559\u7a0b\u3001API\u63a5\u53e3\u7b49\u3002\n\n.. _`latest documentation`: http://docs.celeryproject.org/en/latest/\n\n.. _celery-installation:\n\nInstallation\n============\n\nYou can install Celery either via the Python Package Index (PyPI)\nor from source.\n\nTo install using ``pip``:\n\n::\n\n\n $ pip install -U Celery\n\n.. _bundles:\n\nBundles\n-------\n\nCelery also defines a group of bundles that can be used\nto install Celery and the dependencies for a given feature.\n\nYou can specify these in your requirements or on the ``pip``\ncommand-line by using brackets. Multiple bundles can be specified by\nseparating them by commas.\n\n::\n\n\n $ pip install \"celery[amqp]\"\n\n $ pip install \"celery[amqp,redis,auth,msgpack]\"\n\nThe following bundles are available:\n\nSerializers\n~~~~~~~~~~~\n\n:``celery[auth]``:\n for using the ``auth`` security serializer.\n\n:``celery[msgpack]``:\n for using the msgpack serializer.\n\n:``celery[yaml]``:\n for using the yaml serializer.\n\nConcurrency\n~~~~~~~~~~~\n\n:``celery[eventlet]``:\n for using the ``eventlet`` pool.\n\n:``celery[gevent]``:\n for using the ``gevent`` pool.\n\nTransports and Backends\n~~~~~~~~~~~~~~~~~~~~~~~\n\n:``celery[amqp]``:\n for using the RabbitMQ amqp python library.\n\n:``celery[redis]``:\n for using Redis as a message transport or as a result backend.\n\n:``celery[sqs]``:\n for using Amazon SQS as a message transport.\n\n:``celery[tblib``]:\n for using the ``task_remote_tracebacks`` feature.\n\n:``celery[memcache]``:\n for using Memcached as a result backend (using ``pylibmc``)\n\n:``celery[pymemcache]``:\n for using Memcached as a result backend (pure-Python implementation).\n\n:``celery[cassandra]``:\n for using Apache Cassandra as a result backend with DataStax driver.\n\n:``celery[azureblockblob]``:\n for using Azure Storage as a result backend (using ``azure-storage``)\n\n:``celery[s3]``:\n for using S3 Storage as a result backend.\n\n:``celery[couchbase]``:\n for using Couchbase as a result backend.\n\n:``celery[arangodb]``:\n for using ArangoDB as a result backend.\n\n:``celery[elasticsearch]``:\n for using Elasticsearch as a result backend.\n\n:``celery[riak]``:\n for using Riak as a result backend.\n\n:``celery[cosmosdbsql]``:\n for using Azure Cosmos DB as a result backend (using ``pydocumentdb``)\n\n:``celery[zookeeper]``:\n for using Zookeeper as a message transport.\n\n:``celery[sqlalchemy]``:\n for using SQLAlchemy as a result backend (*supported*).\n\n:``celery[pyro]``:\n for using the Pyro4 message transport (*experimental*).\n\n:``celery[slmq]``:\n for using the SoftLayer Message Queue transport (*experimental*).\n\n:``celery[consul]``:\n for using the Consul.io Key/Value store as a message transport or result backend (*experimental*).\n\n:``celery[django]``:\n specifies the lowest version possible for Django support.\n\n You should probably not use this in your requirements, it's here\n for informational purposes only.\n\n\n.. _celery-installing-from-source:\n\nDownloading and installing from source\n--------------------------------------\n\nDownload the latest version of Celery from PyPI:\n\nhttps://pypi.org/project/celery/\n\nYou can install it by doing the following,:\n\n::\n\n\n $ tar xvfz celery-0.0.0.tar.gz\n $ cd celery-0.0.0\n $ python setup.py build\n # python setup.py install\n\nThe last command must be executed as a privileged user if\nyou aren't currently using a virtualenv.\n\n.. _celery-installing-from-git:\n\nUsing the development version\n-----------------------------\n\nWith pip\n~~~~~~~~\n\nThe Celery development version also requires the development\nversions of ``kombu``, ``amqp``, ``billiard``, and ``vine``.\n\nYou can install the latest snapshot of these using the following\npip commands:\n\n::\n\n\n $ pip install https://github.com/celery/celery/zipball/master#egg=celery\n $ pip install https://github.com/celery/billiard/zipball/master#egg=billiard\n $ pip install https://github.com/celery/py-amqp/zipball/master#egg=amqp\n $ pip install https://github.com/celery/kombu/zipball/master#egg=kombu\n $ pip install https://github.com/celery/vine/zipball/master#egg=vine\n\nWith git\n~~~~~~~~\n\nPlease see the Contributing section.\n\n.. _getting-help:\n\nGetting Help\n============\n\n.. _mailing-list:\n\nMailing list\n------------\n\nFor discussions about the usage, development, and future of Celery,\nplease join the `celery-users`_ mailing list.\n\n.. _`celery-users`: https://groups.google.com/group/celery-users/\n\n.. _irc-channel:\n\nIRC\n---\n\nCome chat with us on IRC. The **#celery** channel is located at the\n`Libera Chat`_ network.\n\n.. _`Libera Chat`: https://libera.chat/\n\n.. _bug-tracker:\n\nBug tracker\n===========\n\nIf you have any suggestions, bug reports, or annoyances please report them\nto our issue tracker at https://github.com/celery/celery/issues/\n\n.. _wiki:\n\nWiki\n====\n\nhttps://github.com/celery/celery/wiki\n\nCredits\n=======\n\n.. _contributing-short:\n\nContributors\n------------\n\nThis project exists thanks to all the people who contribute. Development of\n`celery` happens at GitHub: https://github.com/celery/celery\n\nYou're highly encouraged to participate in the development\nof `celery`. If you don't like GitHub (for some reason) you're welcome\nto send regular patches.\n\nBe sure to also read the `Contributing to Celery`_ section in the\ndocumentation.\n\n.. _`Contributing to Celery`:\n http://docs.celeryproject.org/en/master/contributing.html\n\n|oc-contributors|\n\n.. |oc-contributors| image:: https://opencollective.com/celery/contributors.svg?width=890&button=false\n :target: https://github.com/celery/celery/graphs/contributors\n\nBackers\n-------\n\nThank you to all our backers! \ud83d\ude4f [`Become a backer`_]\n\n.. _`Become a backer`: https://opencollective.com/celery#backer\n\n|oc-backers|\n\n.. |oc-backers| image:: https://opencollective.com/celery/backers.svg?width=890\n :target: https://opencollective.com/celery#backers\n\nSponsors\n--------\n\nSupport this project by becoming a sponsor. Your logo will show up here with a\nlink to your website. [`Become a sponsor`_]\n\n.. _`Become a sponsor`: https://opencollective.com/celery#sponsor\n\n|oc-sponsors|\n\n.. |oc-sponsors| image:: https://opencollective.com/celery/sponsor/0/avatar.svg\n :target: https://opencollective.com/celery/sponsor/0/website\n\n.. _license:\n\nLicense\n=======\n\nThis software is licensed under the `New BSD License`. See the ``LICENSE``\nfile in the top distribution directory for the full license text.\n\n.. # vim: syntax=rst expandtab tabstop=4 shiftwidth=4 shiftround\n\n.. |build-status| image:: https://github.com/celery/celery/actions/workflows/python-package.yml/badge.svg\n :alt: Build status\n :target: https://github.com/celery/celery/actions/workflows/python-package.yml\n\n.. |coverage| image:: https://codecov.io/github/celery/celery/coverage.svg?branch=master\n :target: https://codecov.io/github/celery/celery?branch=master\n\n.. |license| image:: https://img.shields.io/pypi/l/celery.svg\n :alt: BSD License\n :target: https://opensource.org/licenses/BSD-3-Clause\n\n.. |wheel| image:: https://img.shields.io/pypi/wheel/celery.svg\n :alt: Celery can be installed via wheel\n :target: https://pypi.org/project/celery/\n\n.. |pyversion| image:: https://img.shields.io/pypi/pyversions/celery.svg\n :alt: Supported Python versions.\n :target: https://pypi.org/project/celery/\n\n.. |pyimp| image:: https://img.shields.io/pypi/implementation/celery.svg\n :alt: Supported Python implementations.\n :target: https://pypi.org/project/celery/\n\n.. |ocbackerbadge| image:: https://opencollective.com/celery/backers/badge.svg\n :alt: Backers on Open Collective\n :target: #backers\n\n.. |ocsponsorbadge| image:: https://opencollective.com/celery/sponsors/badge.svg\n :alt: Sponsors on Open Collective\n :target: #sponsors\n\n.. |downloads| image:: https://pepy.tech/badge/celery\n :alt: Downloads\n :target: https://pepy.tech/project/celery", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "author", + "name": "Ask Solem", + "email": "auvipy@gmail.com", + "url": null + } + ], + "keywords": [ + "task job queue distributed messaging actor", + "Development Status :: 5 - Production/Stable", + "Topic :: System :: Distributed Computing", + "Topic :: Software Development :: Object Brokering", + "Framework :: Celery", + "Programming Language :: Python", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: Implementation :: CPython", + "Programming Language :: Python :: Implementation :: PyPy", + "Operating System :: OS Independent" + ], + "homepage_url": "http://celeryproject.org", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/celery/celery/issues", + "code_view_url": "https://github.com/celery/celery", + "vcs_url": null, + "copyright": null, + "license_expression": "bsd-new AND bsd-new", + "declared_license": { + "license": "BSD", + "classifiers": [ + "License :: OSI Approved :: BSD License" + ] + }, + "notice_text": null, + "source_packages": [], + "file_references": [], + "extra_data": { + "Documentation": "https://docs.celeryproject.org/en/latest/index.html", + "Changelog": "https://docs.celeryproject.org/en/stable/changelog.html", + "Funding": "https://opencollective.com/celery" + }, + "dependencies": [], + "repository_homepage_url": "https://pypi.org/project/celery", + "repository_download_url": "https://pypi.org/packages/source/c/celery/celery-5.2.7.tar.gz", + "api_data_url": "https://pypi.org/pypi/celery/5.2.7/json", + "datasource_id": "pypi_sdist_pkginfo", + "purl": "pkg:pypi/celery@5.2.7" + } + ], + "for_packages": [ + "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758" + ], + "scan_errors": [] + }, + { + "path": "celery/celery.egg-info", + "type": "directory", + "package_data": [], + "for_packages": [], + "scan_errors": [] + }, + { + "path": "celery/celery.egg-info/PKG-INFO", + "type": "file", + "package_data": [ + { + "type": "pypi", + "namespace": null, + "name": "celery", + "version": "5.2.7", + "qualifiers": {}, + "subpath": null, + "primary_language": "Python", + "description": "Distributed Task Queue.\n.. image:: http://docs.celeryproject.org/en/latest/_images/celery-banner-small.png\n\n|build-status| |coverage| |license| |wheel| |pyversion| |pyimp| |ocbackerbadge| |ocsponsorbadge|\n\n:Version: 5.2.7 (dawn-chorus)\n:Web: https://docs.celeryproject.org/en/stable/index.html\n:Download: https://pypi.org/project/celery/\n:Source: https://github.com/celery/celery/\n:Keywords: task, queue, job, async, rabbitmq, amqp, redis,\n python, distributed, actors\n\nDonations\n=========\n\nThis project relies on your generous donations.\n\nIf you are using Celery to create a commercial product, please consider becoming our `backer`_ or our `sponsor`_ to ensure Celery's future.\n\n.. _`backer`: https://opencollective.com/celery#backer\n.. _`sponsor`: https://opencollective.com/celery#sponsor\n\nFor enterprise\n==============\n\nAvailable as part of the Tidelift Subscription.\n\nThe maintainers of ``celery`` and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. `Learn more. `_\n\nWhat's a Task Queue?\n====================\n\nTask queues are used as a mechanism to distribute work across threads or\nmachines.\n\nA task queue's input is a unit of work, called a task, dedicated worker\nprocesses then constantly monitor the queue for new work to perform.\n\nCelery communicates via messages, usually using a broker\nto mediate between clients and workers. To initiate a task a client puts a\nmessage on the queue, the broker then delivers the message to a worker.\n\nA Celery system can consist of multiple workers and brokers, giving way\nto high availability and horizontal scaling.\n\nCelery is written in Python, but the protocol can be implemented in any\nlanguage. In addition to Python there's node-celery_ for Node.js,\na `PHP client`_, `gocelery`_ for golang, and rusty-celery_ for Rust.\n\nLanguage interoperability can also be achieved by using webhooks\nin such a way that the client enqueues an URL to be requested by a worker.\n\n.. _node-celery: https://github.com/mher/node-celery\n.. _`PHP client`: https://github.com/gjedeer/celery-php\n.. _`gocelery`: https://github.com/gocelery/gocelery\n.. _rusty-celery: https://github.com/rusty-celery/rusty-celery\n\nWhat do I need?\n===============\n\nCelery version 5.2.0 runs on,\n\n- Python (3.7, 3.8, 3.9, 3.10)\n- PyPy3.7 (7.3.7+)\n\n\nThis is the version of celery which will support Python 3.7 or newer.\n\nIf you're running an older version of Python, you need to be running\nan older version of Celery:\n\n- Python 2.6: Celery series 3.1 or earlier.\n- Python 2.5: Celery series 3.0 or earlier.\n- Python 2.4: Celery series 2.2 or earlier.\n- Python 2.7: Celery 4.x series.\n- Python 3.6: Celery 5.1 or earlier.\n\nCelery is a project with minimal funding,\nso we don't support Microsoft Windows.\nPlease don't open any issues related to that platform.\n\n*Celery* is usually used with a message broker to send and receive messages.\nThe RabbitMQ, Redis transports are feature complete,\nbut there's also experimental support for a myriad of other solutions, including\nusing SQLite for local development.\n\n*Celery* can run on a single machine, on multiple machines, or even\nacross datacenters.\n\nGet Started\n===========\n\nIf this is the first time you're trying to use Celery, or you're\nnew to Celery v5.2.0 coming from previous versions then you should read our\ngetting started tutorials:\n\n- `First steps with Celery`_\n\n Tutorial teaching you the bare minimum needed to get started with Celery.\n\n- `Next steps`_\n\n A more complete overview, showing more features.\n\n.. _`First steps with Celery`:\n http://docs.celeryproject.org/en/latest/getting-started/first-steps-with-celery.html\n\n.. _`Next steps`:\n http://docs.celeryproject.org/en/latest/getting-started/next-steps.html\n\n You can also get started with Celery by using a hosted broker transport CloudAMQP. The largest hosting provider of RabbitMQ is a proud sponsor of Celery.\n\nCelery is...\n=============\n\n- **Simple**\n\n Celery is easy to use and maintain, and does *not need configuration files*.\n\n It has an active, friendly community you can talk to for support,\n like at our `mailing-list`_, or the IRC channel.\n\n Here's one of the simplest applications you can make:\n\n .. code-block:: python\n\n from celery import Celery\n\n app = Celery('hello', broker='amqp://guest@localhost//')\n\n @app.task\n def hello():\n return 'hello world'\n\n- **Highly Available**\n\n Workers and clients will automatically retry in the event\n of connection loss or failure, and some brokers support\n HA in way of *Primary/Primary* or *Primary/Replica* replication.\n\n- **Fast**\n\n A single Celery process can process millions of tasks a minute,\n with sub-millisecond round-trip latency (using RabbitMQ,\n py-librabbitmq, and optimized settings).\n\n- **Flexible**\n\n Almost every part of *Celery* can be extended or used on its own,\n Custom pool implementations, serializers, compression schemes, logging,\n schedulers, consumers, producers, broker transports, and much more.\n\nIt supports...\n================\n\n - **Message Transports**\n\n - RabbitMQ_, Redis_, Amazon SQS\n\n - **Concurrency**\n\n - Prefork, Eventlet_, gevent_, single threaded (``solo``)\n\n - **Result Stores**\n\n - AMQP, Redis\n - memcached\n - SQLAlchemy, Django ORM\n - Apache Cassandra, IronCache, Elasticsearch\n\n - **Serialization**\n\n - *pickle*, *json*, *yaml*, *msgpack*.\n - *zlib*, *bzip2* compression.\n - Cryptographic message signing.\n\n.. _`Eventlet`: http://eventlet.net/\n.. _`gevent`: http://gevent.org/\n\n.. _RabbitMQ: https://rabbitmq.com\n.. _Redis: https://redis.io\n.. _SQLAlchemy: http://sqlalchemy.org\n\nFramework Integration\n=====================\n\nCelery is easy to integrate with web frameworks, some of which even have\nintegration packages:\n\n +--------------------+------------------------+\n | `Django`_ | not needed |\n +--------------------+------------------------+\n | `Pyramid`_ | `pyramid_celery`_ |\n +--------------------+------------------------+\n | `Pylons`_ | `celery-pylons`_ |\n +--------------------+------------------------+\n | `Flask`_ | not needed |\n +--------------------+------------------------+\n | `web2py`_ | `web2py-celery`_ |\n +--------------------+------------------------+\n | `Tornado`_ | `tornado-celery`_ |\n +--------------------+------------------------+\n\nThe integration packages aren't strictly necessary, but they can make\ndevelopment easier, and sometimes they add important hooks like closing\ndatabase connections at ``fork``.\n\n.. _`Django`: https://djangoproject.com/\n.. _`Pylons`: http://pylonsproject.org/\n.. _`Flask`: http://flask.pocoo.org/\n.. _`web2py`: http://web2py.com/\n.. _`Bottle`: https://bottlepy.org/\n.. _`Pyramid`: http://docs.pylonsproject.org/en/latest/docs/pyramid.html\n.. _`pyramid_celery`: https://pypi.org/project/pyramid_celery/\n.. _`celery-pylons`: https://pypi.org/project/celery-pylons/\n.. _`web2py-celery`: https://code.google.com/p/web2py-celery/\n.. _`Tornado`: http://www.tornadoweb.org/\n.. _`tornado-celery`: https://github.com/mher/tornado-celery/\n\n.. _celery-documentation:\n\nDocumentation\n=============\n\nThe `latest documentation`_ is hosted at Read The Docs, containing user guides,\ntutorials, and an API reference.\n\n\u6700\u65b0\u7684\u4e2d\u6587\u6587\u6863\u6258\u7ba1\u5728 https://www.celerycn.io/ \u4e2d\uff0c\u5305\u542b\u7528\u6237\u6307\u5357\u3001\u6559\u7a0b\u3001API\u63a5\u53e3\u7b49\u3002\n\n.. _`latest documentation`: http://docs.celeryproject.org/en/latest/\n\n.. _celery-installation:\n\nInstallation\n============\n\nYou can install Celery either via the Python Package Index (PyPI)\nor from source.\n\nTo install using ``pip``:\n\n::\n\n\n $ pip install -U Celery\n\n.. _bundles:\n\nBundles\n-------\n\nCelery also defines a group of bundles that can be used\nto install Celery and the dependencies for a given feature.\n\nYou can specify these in your requirements or on the ``pip``\ncommand-line by using brackets. Multiple bundles can be specified by\nseparating them by commas.\n\n::\n\n\n $ pip install \"celery[amqp]\"\n\n $ pip install \"celery[amqp,redis,auth,msgpack]\"\n\nThe following bundles are available:\n\nSerializers\n~~~~~~~~~~~\n\n:``celery[auth]``:\n for using the ``auth`` security serializer.\n\n:``celery[msgpack]``:\n for using the msgpack serializer.\n\n:``celery[yaml]``:\n for using the yaml serializer.\n\nConcurrency\n~~~~~~~~~~~\n\n:``celery[eventlet]``:\n for using the ``eventlet`` pool.\n\n:``celery[gevent]``:\n for using the ``gevent`` pool.\n\nTransports and Backends\n~~~~~~~~~~~~~~~~~~~~~~~\n\n:``celery[amqp]``:\n for using the RabbitMQ amqp python library.\n\n:``celery[redis]``:\n for using Redis as a message transport or as a result backend.\n\n:``celery[sqs]``:\n for using Amazon SQS as a message transport.\n\n:``celery[tblib``]:\n for using the ``task_remote_tracebacks`` feature.\n\n:``celery[memcache]``:\n for using Memcached as a result backend (using ``pylibmc``)\n\n:``celery[pymemcache]``:\n for using Memcached as a result backend (pure-Python implementation).\n\n:``celery[cassandra]``:\n for using Apache Cassandra as a result backend with DataStax driver.\n\n:``celery[azureblockblob]``:\n for using Azure Storage as a result backend (using ``azure-storage``)\n\n:``celery[s3]``:\n for using S3 Storage as a result backend.\n\n:``celery[couchbase]``:\n for using Couchbase as a result backend.\n\n:``celery[arangodb]``:\n for using ArangoDB as a result backend.\n\n:``celery[elasticsearch]``:\n for using Elasticsearch as a result backend.\n\n:``celery[riak]``:\n for using Riak as a result backend.\n\n:``celery[cosmosdbsql]``:\n for using Azure Cosmos DB as a result backend (using ``pydocumentdb``)\n\n:``celery[zookeeper]``:\n for using Zookeeper as a message transport.\n\n:``celery[sqlalchemy]``:\n for using SQLAlchemy as a result backend (*supported*).\n\n:``celery[pyro]``:\n for using the Pyro4 message transport (*experimental*).\n\n:``celery[slmq]``:\n for using the SoftLayer Message Queue transport (*experimental*).\n\n:``celery[consul]``:\n for using the Consul.io Key/Value store as a message transport or result backend (*experimental*).\n\n:``celery[django]``:\n specifies the lowest version possible for Django support.\n\n You should probably not use this in your requirements, it's here\n for informational purposes only.\n\n\n.. _celery-installing-from-source:\n\nDownloading and installing from source\n--------------------------------------\n\nDownload the latest version of Celery from PyPI:\n\nhttps://pypi.org/project/celery/\n\nYou can install it by doing the following,:\n\n::\n\n\n $ tar xvfz celery-0.0.0.tar.gz\n $ cd celery-0.0.0\n $ python setup.py build\n # python setup.py install\n\nThe last command must be executed as a privileged user if\nyou aren't currently using a virtualenv.\n\n.. _celery-installing-from-git:\n\nUsing the development version\n-----------------------------\n\nWith pip\n~~~~~~~~\n\nThe Celery development version also requires the development\nversions of ``kombu``, ``amqp``, ``billiard``, and ``vine``.\n\nYou can install the latest snapshot of these using the following\npip commands:\n\n::\n\n\n $ pip install https://github.com/celery/celery/zipball/master#egg=celery\n $ pip install https://github.com/celery/billiard/zipball/master#egg=billiard\n $ pip install https://github.com/celery/py-amqp/zipball/master#egg=amqp\n $ pip install https://github.com/celery/kombu/zipball/master#egg=kombu\n $ pip install https://github.com/celery/vine/zipball/master#egg=vine\n\nWith git\n~~~~~~~~\n\nPlease see the Contributing section.\n\n.. _getting-help:\n\nGetting Help\n============\n\n.. _mailing-list:\n\nMailing list\n------------\n\nFor discussions about the usage, development, and future of Celery,\nplease join the `celery-users`_ mailing list.\n\n.. _`celery-users`: https://groups.google.com/group/celery-users/\n\n.. _irc-channel:\n\nIRC\n---\n\nCome chat with us on IRC. The **#celery** channel is located at the\n`Libera Chat`_ network.\n\n.. _`Libera Chat`: https://libera.chat/\n\n.. _bug-tracker:\n\nBug tracker\n===========\n\nIf you have any suggestions, bug reports, or annoyances please report them\nto our issue tracker at https://github.com/celery/celery/issues/\n\n.. _wiki:\n\nWiki\n====\n\nhttps://github.com/celery/celery/wiki\n\nCredits\n=======\n\n.. _contributing-short:\n\nContributors\n------------\n\nThis project exists thanks to all the people who contribute. Development of\n`celery` happens at GitHub: https://github.com/celery/celery\n\nYou're highly encouraged to participate in the development\nof `celery`. If you don't like GitHub (for some reason) you're welcome\nto send regular patches.\n\nBe sure to also read the `Contributing to Celery`_ section in the\ndocumentation.\n\n.. _`Contributing to Celery`:\n http://docs.celeryproject.org/en/master/contributing.html\n\n|oc-contributors|\n\n.. |oc-contributors| image:: https://opencollective.com/celery/contributors.svg?width=890&button=false\n :target: https://github.com/celery/celery/graphs/contributors\n\nBackers\n-------\n\nThank you to all our backers! \ud83d\ude4f [`Become a backer`_]\n\n.. _`Become a backer`: https://opencollective.com/celery#backer\n\n|oc-backers|\n\n.. |oc-backers| image:: https://opencollective.com/celery/backers.svg?width=890\n :target: https://opencollective.com/celery#backers\n\nSponsors\n--------\n\nSupport this project by becoming a sponsor. Your logo will show up here with a\nlink to your website. [`Become a sponsor`_]\n\n.. _`Become a sponsor`: https://opencollective.com/celery#sponsor\n\n|oc-sponsors|\n\n.. |oc-sponsors| image:: https://opencollective.com/celery/sponsor/0/avatar.svg\n :target: https://opencollective.com/celery/sponsor/0/website\n\n.. _license:\n\nLicense\n=======\n\nThis software is licensed under the `New BSD License`. See the ``LICENSE``\nfile in the top distribution directory for the full license text.\n\n.. # vim: syntax=rst expandtab tabstop=4 shiftwidth=4 shiftround\n\n.. |build-status| image:: https://github.com/celery/celery/actions/workflows/python-package.yml/badge.svg\n :alt: Build status\n :target: https://github.com/celery/celery/actions/workflows/python-package.yml\n\n.. |coverage| image:: https://codecov.io/github/celery/celery/coverage.svg?branch=master\n :target: https://codecov.io/github/celery/celery?branch=master\n\n.. |license| image:: https://img.shields.io/pypi/l/celery.svg\n :alt: BSD License\n :target: https://opensource.org/licenses/BSD-3-Clause\n\n.. |wheel| image:: https://img.shields.io/pypi/wheel/celery.svg\n :alt: Celery can be installed via wheel\n :target: https://pypi.org/project/celery/\n\n.. |pyversion| image:: https://img.shields.io/pypi/pyversions/celery.svg\n :alt: Supported Python versions.\n :target: https://pypi.org/project/celery/\n\n.. |pyimp| image:: https://img.shields.io/pypi/implementation/celery.svg\n :alt: Supported Python implementations.\n :target: https://pypi.org/project/celery/\n\n.. |ocbackerbadge| image:: https://opencollective.com/celery/backers/badge.svg\n :alt: Backers on Open Collective\n :target: #backers\n\n.. |ocsponsorbadge| image:: https://opencollective.com/celery/sponsors/badge.svg\n :alt: Sponsors on Open Collective\n :target: #sponsors\n\n.. |downloads| image:: https://pepy.tech/badge/celery\n :alt: Downloads\n :target: https://pepy.tech/project/celery", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "author", + "name": "Ask Solem", + "email": "auvipy@gmail.com", + "url": null + } + ], + "keywords": [ + "task job queue distributed messaging actor", + "Development Status :: 5 - Production/Stable", + "Topic :: System :: Distributed Computing", + "Topic :: Software Development :: Object Brokering", + "Framework :: Celery", + "Programming Language :: Python", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: Implementation :: CPython", + "Programming Language :: Python :: Implementation :: PyPy", + "Operating System :: OS Independent" + ], + "homepage_url": "http://celeryproject.org", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/celery/celery/issues", + "code_view_url": "https://github.com/celery/celery", + "vcs_url": null, + "copyright": null, + "license_expression": "bsd-new AND bsd-new", + "declared_license": { + "license": "BSD", + "classifiers": [ + "License :: OSI Approved :: BSD License" + ] + }, + "notice_text": null, + "source_packages": [], + "file_references": [ + { + "path": "CONTRIBUTORS.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "Changelog.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "LICENSE", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "MANIFEST.in", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "README.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "TODO", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "pyproject.toml", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "setup.cfg", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "setup.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/__main__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/_state.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/beat.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/bootsteps.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/canvas.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/exceptions.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/local.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/platforms.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/result.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/schedules.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/signals.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/states.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery.egg-info/PKG-INFO", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery.egg-info/SOURCES.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery.egg-info/dependency_links.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery.egg-info/entry_points.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery.egg-info/not-zip-safe", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery.egg-info/requires.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery.egg-info/top_level.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/app/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/app/amqp.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/app/annotations.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/app/autoretry.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/app/backends.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/app/base.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/app/builtins.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/app/control.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/app/defaults.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/app/events.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/app/log.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/app/registry.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/app/routes.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/app/task.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/app/trace.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/app/utils.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/apps/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/apps/beat.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/apps/multi.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/apps/worker.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/backends/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/backends/arangodb.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/backends/asynchronous.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/backends/azureblockblob.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/backends/base.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/backends/cache.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/backends/cassandra.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/backends/consul.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/backends/cosmosdbsql.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/backends/couchbase.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/backends/couchdb.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/backends/dynamodb.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/backends/elasticsearch.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/backends/filesystem.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/backends/mongodb.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/backends/redis.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/backends/rpc.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/backends/s3.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/backends/database/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/backends/database/models.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/backends/database/session.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/bin/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/bin/amqp.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/bin/base.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/bin/beat.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/bin/call.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/bin/celery.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/bin/control.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/bin/events.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/bin/graph.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/bin/list.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/bin/logtool.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/bin/migrate.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/bin/multi.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/bin/purge.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/bin/result.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/bin/shell.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/bin/upgrade.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/bin/worker.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/concurrency/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/concurrency/asynpool.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/concurrency/base.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/concurrency/eventlet.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/concurrency/gevent.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/concurrency/prefork.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/concurrency/solo.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/concurrency/thread.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/contrib/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/contrib/abortable.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/contrib/migrate.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/contrib/pytest.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/contrib/rdb.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/contrib/sphinx.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/contrib/testing/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/contrib/testing/app.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/contrib/testing/manager.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/contrib/testing/mocks.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/contrib/testing/tasks.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/contrib/testing/worker.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/events/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/events/cursesmon.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/events/dispatcher.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/events/dumper.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/events/event.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/events/receiver.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/events/snapshot.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/events/state.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/fixups/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/fixups/django.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/loaders/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/loaders/app.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/loaders/base.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/loaders/default.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/security/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/security/certificate.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/security/key.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/security/serialization.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/security/utils.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/utils/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/utils/abstract.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/utils/collections.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/utils/debug.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/utils/deprecated.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/utils/functional.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/utils/graph.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/utils/imports.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/utils/iso8601.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/utils/log.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/utils/nodenames.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/utils/objects.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/utils/saferepr.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/utils/serialization.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/utils/sysinfo.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/utils/term.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/utils/text.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/utils/threads.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/utils/time.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/utils/timer2.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/utils/dispatch/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/utils/dispatch/signal.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/utils/static/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/utils/static/celery_128.png", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/worker/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/worker/autoscale.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/worker/components.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/worker/control.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/worker/heartbeat.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/worker/loops.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/worker/pidbox.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/worker/request.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/worker/state.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/worker/strategy.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/worker/worker.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/worker/consumer/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/worker/consumer/agent.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/worker/consumer/connection.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/worker/consumer/consumer.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/worker/consumer/control.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/worker/consumer/events.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/worker/consumer/gossip.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/worker/consumer/heart.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/worker/consumer/mingle.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "celery/worker/consumer/tasks.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/AUTHORS.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/Makefile", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/THANKS", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/changelog.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/community.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/conf.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/configuration.html", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/contributing.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/copyright.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/faq.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/glossary.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/index.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/make.bat", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/spelling_wordlist.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/whatsnew-5.2.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/_ext/celerydocs.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/_static/.keep", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/_templates/sidebardonations.html", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/django/first-steps-with-django.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/django/index.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/getting-started/first-steps-with-celery.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/getting-started/index.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/getting-started/introduction.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/getting-started/next-steps.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/getting-started/resources.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/getting-started/backends-and-brokers/index.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/getting-started/backends-and-brokers/rabbitmq.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/getting-started/backends-and-brokers/redis.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/getting-started/backends-and-brokers/sqs.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/changelog-1.0.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/changelog-2.0.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/changelog-2.1.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/changelog-2.2.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/changelog-2.3.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/changelog-2.4.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/changelog-2.5.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/changelog-3.0.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/changelog-3.1.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/changelog-4.0.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/changelog-4.1.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/changelog-4.2.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/changelog-4.3.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/changelog-4.4.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/changelog-5.0.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/changelog-5.1.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/index.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/whatsnew-2.5.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/whatsnew-3.0.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/whatsnew-3.1.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/whatsnew-4.0.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/whatsnew-4.1.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/whatsnew-4.2.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/whatsnew-4.3.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/whatsnew-4.4.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/whatsnew-5.0.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/history/whatsnew-5.1.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/images/celery-banner-small.png", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/images/celery-banner.png", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/images/celery_128.png", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/images/celery_512.png", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/images/celeryevshotsm.jpg", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/images/dashboard.png", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/images/favicon.ico", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/images/monitor.png", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/images/result_graph.png", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/images/worker_graph_full.png", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/includes/installation.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/includes/introduction.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/includes/resources.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/app-overview.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/deprecation.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/guide.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/index.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/protocol.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/worker.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery._state.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.app.annotations.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.app.routes.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.app.trace.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.backends.arangodb.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.backends.asynchronous.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.backends.azureblockblob.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.backends.base.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.backends.cache.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.backends.cassandra.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.backends.consul.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.backends.cosmosdbsql.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.backends.couchbase.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.backends.couchdb.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.backends.database.models.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.backends.database.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.backends.database.session.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.backends.dynamodb.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.backends.elasticsearch.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.backends.filesystem.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.backends.mongodb.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.backends.redis.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.backends.rpc.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.backends.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.backends.s3.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.concurrency.base.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.concurrency.eventlet.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.concurrency.gevent.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.concurrency.prefork.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.concurrency.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.concurrency.solo.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.concurrency.thread.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.events.cursesmon.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.events.dumper.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.events.snapshot.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.platforms.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.security.certificate.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.security.key.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.security.serialization.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.security.utils.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.utils.abstract.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.utils.collections.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.utils.deprecated.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.utils.dispatch.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.utils.dispatch.signal.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.utils.functional.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.utils.graph.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.utils.imports.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.utils.iso8601.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.utils.log.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.utils.nodenames.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.utils.objects.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.utils.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.utils.saferepr.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.utils.serialization.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.utils.sysinfo.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.utils.term.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.utils.text.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.utils.threads.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.utils.time.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.utils.timer2.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.worker.autoscale.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.worker.components.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.worker.control.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.worker.heartbeat.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.worker.loops.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/celery.worker.pidbox.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/internals/reference/index.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.app.amqp.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.app.autoretry.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.app.backends.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.app.builtins.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.app.control.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.app.defaults.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.app.events.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.app.log.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.app.registry.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.app.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.app.task.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.app.utils.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.apps.beat.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.apps.multi.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.apps.worker.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.beat.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.bin.base.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.bin.beat.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.bin.call.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.bin.celery.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.bin.control.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.bin.events.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.bin.graph.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.bin.list.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.bin.logtool.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.bin.migrate.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.bin.multi.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.bin.purge.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.bin.result.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.bin.shell.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.bin.upgrade.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.bin.worker.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.bootsteps.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.contrib.abortable.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.contrib.migrate.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.contrib.pytest.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.contrib.rdb.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.contrib.sphinx.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.contrib.testing.app.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.contrib.testing.manager.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.contrib.testing.mocks.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.contrib.testing.worker.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.events.dispatcher.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.events.event.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.events.receiver.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.events.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.events.state.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.exceptions.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.loaders.app.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.loaders.base.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.loaders.default.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.loaders.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.result.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.schedules.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.security.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.signals.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.states.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.utils.debug.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.worker.consumer.agent.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.worker.consumer.connection.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.worker.consumer.consumer.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.worker.consumer.control.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.worker.consumer.events.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.worker.consumer.gossip.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.worker.consumer.heart.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.worker.consumer.mingle.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.worker.consumer.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.worker.consumer.tasks.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.worker.request.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.worker.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.worker.state.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.worker.strategy.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/celery.worker.worker.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/cli.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/reference/index.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/sec/CELERYSA-0001.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/sec/CELERYSA-0002.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/sec/CELERYSA-0003.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/templates/readme.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/tutorials/daemonizing.html", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/tutorials/debugging.html", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/tutorials/index.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/tutorials/task-cookbook.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/userguide/application.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/userguide/calling.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/userguide/canvas.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/userguide/configuration.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/userguide/daemonizing.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/userguide/debugging.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/userguide/extending.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/userguide/index.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/userguide/monitoring.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/userguide/optimizing.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/userguide/periodic-tasks.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/userguide/routing.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/userguide/security.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/userguide/signals.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/userguide/sphinx.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/userguide/tasks.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/userguide/testing.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/userguide/workers.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/userguide/concurrency/eventlet.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "docs/userguide/concurrency/index.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/README.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/app/myapp.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/celery_http_gateway/README.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/celery_http_gateway/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/celery_http_gateway/manage.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/celery_http_gateway/settings.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/celery_http_gateway/tasks.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/celery_http_gateway/urls.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/django/README.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/django/manage.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/django/requirements.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/django/demoapp/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/django/demoapp/models.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/django/demoapp/tasks.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/django/demoapp/views.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/django/demoapp/migrations/0001_initial.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/django/demoapp/migrations/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/django/proj/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/django/proj/celery.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/django/proj/settings.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/django/proj/urls.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/django/proj/wsgi.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/eventlet/README.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/eventlet/bulk_task_producer.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/eventlet/celeryconfig.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/eventlet/tasks.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/eventlet/webcrawler.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/gevent/celeryconfig.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/gevent/tasks.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/next-steps/setup.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/next-steps/proj/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/next-steps/proj/celery.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/next-steps/proj/tasks.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/periodic-tasks/myapp.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/resultgraph/tasks.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/security/mysecureapp.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/security/ssl/worker.key", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/security/ssl/worker.pem", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "examples/tutorial/tasks.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "extra/bash-completion/celery.bash", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "extra/generic-init.d/celerybeat", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "extra/generic-init.d/celeryd", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "extra/macOS/org.celeryq.beat.plist", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "extra/macOS/org.celeryq.worker.plist", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "extra/supervisord/celery.sh", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "extra/supervisord/celerybeat.conf", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "extra/supervisord/celeryd.conf", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "extra/supervisord/supervisord.conf", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "extra/systemd/celery.conf", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "extra/systemd/celery.service", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "extra/systemd/celery.tmpfiles", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "extra/systemd/celerybeat.service", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "extra/zsh-completion/celery.zsh", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/README.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/default.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/dev.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/docs.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/pkgutils.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/security.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/test-ci-base.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/test-ci-default.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/test-integration.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/test-pypy3.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/test.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/deps/mock.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/arangodb.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/auth.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/azureblockblob.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/brotli.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/cassandra.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/consul.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/cosmosdbsql.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/couchbase.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/couchdb.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/django.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/dynamodb.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/elasticsearch.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/eventlet.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/gevent.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/librabbitmq.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/memcache.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/mongodb.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/msgpack.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/pymemcache.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/pyro.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/pytest.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/redis.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/s3.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/slmq.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/solar.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/sphinxautobuild.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/sqlalchemy.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/sqs.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/tblib.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/thread.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/yaml.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/zeromq.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/zookeeper.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "requirements/extras/zstd.txt", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/skip.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/benchmarks/bench_worker.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/integration/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/integration/conftest.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/integration/tasks.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/integration/test_backend.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/integration/test_canvas.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/integration/test_inspect.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/integration/test_security.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/integration/test_tasks.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/conftest.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/test_canvas.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/app/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/app/test_amqp.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/app/test_annotations.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/app/test_app.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/app/test_backends.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/app/test_beat.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/app/test_builtins.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/app/test_celery.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/app/test_control.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/app/test_defaults.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/app/test_exceptions.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/app/test_loaders.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/app/test_log.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/app/test_registry.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/app/test_routes.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/app/test_schedules.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/app/test_utils.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/apps/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/apps/test_multi.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/backends/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/backends/test_arangodb.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/backends/test_asynchronous.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/backends/test_azureblockblob.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/backends/test_base.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/backends/test_cache.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/backends/test_cassandra.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/backends/test_consul.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/backends/test_cosmosdbsql.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/backends/test_couchbase.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/backends/test_couchdb.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/backends/test_database.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/backends/test_dynamodb.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/backends/test_elasticsearch.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/backends/test_filesystem.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/backends/test_mongodb.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/backends/test_redis.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/backends/test_rpc.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/backends/test_s3.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/bin/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/bin/celery.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/bin/test_multi.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/bin/proj/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/bin/proj/app.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/bin/proj/app2.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/concurrency/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/concurrency/test_concurrency.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/concurrency/test_eventlet.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/concurrency/test_gevent.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/concurrency/test_pool.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/concurrency/test_prefork.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/concurrency/test_solo.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/concurrency/test_thread.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/contrib/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/contrib/test_abortable.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/contrib/test_migrate.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/contrib/test_pytest.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/contrib/test_rdb.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/contrib/test_sphinx.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/contrib/proj/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/contrib/proj/conf.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/contrib/proj/contents.rst", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/contrib/proj/foo.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/contrib/proj/xyzzy.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/events/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/events/test_cursesmon.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/events/test_events.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/events/test_snapshot.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/events/test_state.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/fixups/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/fixups/test_django.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/security/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/security/case.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/security/test_certificate.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/security/test_key.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/security/test_security.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/security/test_serialization.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/tasks/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/tasks/test_canvas.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/tasks/test_chord.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/tasks/test_context.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/tasks/test_result.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/tasks/test_states.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/tasks/test_tasks.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/tasks/test_trace.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/tasks/unit_tasks.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/utils/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/utils/test_collections.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/utils/test_debug.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/utils/test_deprecated.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/utils/test_dispatcher.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/utils/test_functional.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/utils/test_graph.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/utils/test_imports.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/utils/test_local.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/utils/test_nodenames.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/utils/test_objects.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/utils/test_pickle.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/utils/test_platforms.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/utils/test_saferepr.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/utils/test_serialization.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/utils/test_sysinfo.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/utils/test_term.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/utils/test_text.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/utils/test_threads.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/utils/test_time.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/utils/test_timer2.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/utils/test_utils.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/worker/__init__.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/worker/test_autoscale.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/worker/test_bootsteps.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/worker/test_components.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/worker/test_consumer.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/worker/test_control.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/worker/test_heartbeat.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/worker/test_loops.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/worker/test_request.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/worker/test_revoke.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/worker/test_state.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/worker/test_strategy.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + }, + { + "path": "t/unit/worker/test_worker.py", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + } + ], + "extra_data": { + "Documentation": "https://docs.celeryproject.org/en/latest/index.html", + "Changelog": "https://docs.celeryproject.org/en/stable/changelog.html", + "Funding": "https://opencollective.com/celery" + }, + "dependencies": [ + { + "purl": "pkg:pypi/pytz", + "extracted_requirement": "pytz>=2021.3", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/billiard", + "extracted_requirement": "billiard<4.0,>=3.6.4.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/kombu", + "extracted_requirement": "kombu<6.0,>=5.2.3", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/vine", + "extracted_requirement": "vine<6.0,>=5.0.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/click", + "extracted_requirement": "click<9.0,>=8.0.3", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/click-didyoumean", + "extracted_requirement": "click-didyoumean>=0.0.3", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/click-repl", + "extracted_requirement": "click-repl>=0.2.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/click-plugins", + "extracted_requirement": "click-plugins>=1.1.1", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/importlib-metadata", + "extracted_requirement": "importlib-metadata>=1.4.0; python_version < \"3.8\"", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/pyarango", + "extracted_requirement": "pyArango>=1.3.2; extra == \"arangodb\"", + "scope": "arangodb", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/cryptography", + "extracted_requirement": "cryptography; extra == \"auth\"", + "scope": "auth", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/azure-storage-blob@12.9.0", + "extracted_requirement": "azure-storage-blob==12.9.0; extra == \"azureblockblob\"", + "scope": "azureblockblob", + "is_runtime": true, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/brotli", + "extracted_requirement": "brotli>=1.0.0; platform_python_implementation == \"CPython\" and extra == \"brotli\"", + "scope": "brotli", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/brotlipy", + "extracted_requirement": "brotlipy>=0.7.0; platform_python_implementation == \"PyPy\" and extra == \"brotli\"", + "scope": "brotli", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/cassandra-driver", + "extracted_requirement": "cassandra-driver<3.21.0; extra == \"cassandra\"", + "scope": "cassandra", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/python-consul2", + "extracted_requirement": "python-consul2; extra == \"consul\"", + "scope": "consul", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/pydocumentdb@2.3.2", + "extracted_requirement": "pydocumentdb==2.3.2; extra == \"cosmosdbsql\"", + "scope": "cosmosdbsql", + "is_runtime": true, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/couchbase", + "extracted_requirement": "couchbase>=3.0.0; (platform_python_implementation != \"PyPy\" and (platform_system != \"Windows\" or python_version < \"3.10\")) and extra == \"couchbase\"", + "scope": "couchbase", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/pycouchdb", + "extracted_requirement": "pycouchdb; extra == \"couchdb\"", + "scope": "couchdb", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/django", + "extracted_requirement": "Django>=1.11; extra == \"django\"", + "scope": "django", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/boto3", + "extracted_requirement": "boto3>=1.9.178; extra == \"dynamodb\"", + "scope": "dynamodb", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/elasticsearch", + "extracted_requirement": "elasticsearch; extra == \"elasticsearch\"", + "scope": "elasticsearch", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/eventlet", + "extracted_requirement": "eventlet>=0.32.0; python_version < \"3.10\" and extra == \"eventlet\"", + "scope": "eventlet", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/gevent", + "extracted_requirement": "gevent>=1.5.0; extra == \"gevent\"", + "scope": "gevent", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/librabbitmq", + "extracted_requirement": "librabbitmq>=1.5.0; extra == \"librabbitmq\"", + "scope": "librabbitmq", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/pylibmc", + "extracted_requirement": "pylibmc; platform_system != \"Windows\" and extra == \"memcache\"", + "scope": "memcache", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/pymongo", + "extracted_requirement": "pymongo[srv]>=3.11.1; extra == \"mongodb\"", + "scope": "mongodb", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/msgpack", + "extracted_requirement": "msgpack; extra == \"msgpack\"", + "scope": "msgpack", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/python-memcached", + "extracted_requirement": "python-memcached; extra == \"pymemcache\"", + "scope": "pymemcache", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/pyro4", + "extracted_requirement": "pyro4; extra == \"pyro\"", + "scope": "pyro", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/pytest-celery", + "extracted_requirement": "pytest-celery; extra == \"pytest\"", + "scope": "pytest", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/redis", + "extracted_requirement": "redis!=4.0.0,!=4.0.1,>=3.4.1; extra == \"redis\"", + "scope": "redis", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/boto3", + "extracted_requirement": "boto3>=1.9.125; extra == \"s3\"", + "scope": "s3", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/softlayer-messaging", + "extracted_requirement": "softlayer_messaging>=1.0.3; extra == \"slmq\"", + "scope": "slmq", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/ephem", + "extracted_requirement": "ephem; platform_python_implementation != \"PyPy\" and extra == \"solar\"", + "scope": "solar", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/sqlalchemy", + "extracted_requirement": "sqlalchemy; extra == \"sqlalchemy\"", + "scope": "sqlalchemy", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/kombu", + "extracted_requirement": "kombu[sqs]; extra == \"sqs\"", + "scope": "sqs", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/tblib", + "extracted_requirement": "tblib>=1.3.0; python_version < \"3.8.0\" and extra == \"tblib\"", + "scope": "tblib", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/tblib", + "extracted_requirement": "tblib>=1.5.0; python_version >= \"3.8.0\" and extra == \"tblib\"", + "scope": "tblib", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/pyyaml", + "extracted_requirement": "PyYAML>=3.10; extra == \"yaml\"", + "scope": "yaml", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/kazoo", + "extracted_requirement": "kazoo>=1.3.1; extra == \"zookeeper\"", + "scope": "zookeeper", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/zstandard", + "extracted_requirement": "zstandard; extra == \"zstd\"", + "scope": "zstd", + "is_runtime": true, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + } + ], + "repository_homepage_url": "https://pypi.org/project/celery", + "repository_download_url": "https://pypi.org/packages/source/c/celery/celery-5.2.7.tar.gz", + "api_data_url": "https://pypi.org/pypi/celery/5.2.7/json", + "datasource_id": "pypi_editable_egg_pkginfo", + "purl": "pkg:pypi/celery@5.2.7" + } + ], + "for_packages": [ + "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758" + ], + "scan_errors": [] + }, + { + "path": "celery/celery.egg-info/SOURCES.txt", + "type": "file", + "package_data": [], + "for_packages": [ + "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758" + ], + "scan_errors": [] + }, + { + "path": "celery/celery.egg-info/dependency_links.txt", + "type": "file", + "package_data": [], + "for_packages": [ + "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758" + ], + "scan_errors": [] + }, + { + "path": "celery/celery.egg-info/entry_points.txt", + "type": "file", + "package_data": [], + "for_packages": [ + "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758" + ], + "scan_errors": [] + }, + { + "path": "celery/celery.egg-info/not-zip-safe", + "type": "file", + "package_data": [], + "for_packages": [ + "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758" + ], + "scan_errors": [] + }, + { + "path": "celery/celery.egg-info/requires.txt", + "type": "file", + "package_data": [ + { + "type": "pypi", + "namespace": null, + "name": null, + "version": null, + "qualifiers": {}, + "subpath": null, + "primary_language": "Python", + "description": null, + "release_date": null, + "parties": [], + "keywords": [], + "homepage_url": null, + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "license_expression": null, + "declared_license": null, + "notice_text": null, + "source_packages": [], + "file_references": [], + "extra_data": {}, + "dependencies": [ + { + "purl": "pkg:pypi/pytz", + "extracted_requirement": "pytz>=2021.3", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/billiard", + "extracted_requirement": "billiard>=3.6.4.0,<4.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/kombu", + "extracted_requirement": "kombu>=5.2.3,<6.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/vine", + "extracted_requirement": "vine>=5.0.0,<6.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/click", + "extracted_requirement": "click>=8.0.3,<9.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/click-didyoumean", + "extracted_requirement": "click-didyoumean>=0.0.3", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/click-repl", + "extracted_requirement": "click-repl>=0.2.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/click-plugins", + "extracted_requirement": "click-plugins>=1.1.1", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/importlib-metadata", + "extracted_requirement": "importlib-metadata>=1.4.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/pyarango", + "extracted_requirement": "pyArango>=1.3.2", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/cryptography", + "extracted_requirement": "cryptography", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/azure-storage-blob@12.9.0", + "extracted_requirement": "azure-storage-blob==12.9.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/brotli", + "extracted_requirement": "brotli>=1.0.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/brotlipy", + "extracted_requirement": "brotlipy>=0.7.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/cassandra-driver", + "extracted_requirement": "cassandra-driver<3.21.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/python-consul2", + "extracted_requirement": "python-consul2", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/pydocumentdb@2.3.2", + "extracted_requirement": "pydocumentdb==2.3.2", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/couchbase", + "extracted_requirement": "couchbase>=3.0.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/pycouchdb", + "extracted_requirement": "pycouchdb", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/django", + "extracted_requirement": "Django>=1.11", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/boto3", + "extracted_requirement": "boto3>=1.9.178", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/elasticsearch", + "extracted_requirement": "elasticsearch", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/eventlet", + "extracted_requirement": "eventlet>=0.32.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/gevent", + "extracted_requirement": "gevent>=1.5.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/librabbitmq", + "extracted_requirement": "librabbitmq>=1.5.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/pylibmc", + "extracted_requirement": "pylibmc", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/pymongo", + "extracted_requirement": "pymongo[srv]>=3.11.1", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/msgpack", + "extracted_requirement": "msgpack", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/python-memcached", + "extracted_requirement": "python-memcached", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/pyro4", + "extracted_requirement": "pyro4", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/pytest-celery", + "extracted_requirement": "pytest-celery", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/redis", + "extracted_requirement": "redis>=3.4.1,!=4.0.0,!=4.0.1", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/boto3", + "extracted_requirement": "boto3>=1.9.125", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/softlayer-messaging", + "extracted_requirement": "softlayer_messaging>=1.0.3", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/ephem", + "extracted_requirement": "ephem", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/sqlalchemy", + "extracted_requirement": "sqlalchemy", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/kombu", + "extracted_requirement": "kombu[sqs]", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/tblib", + "extracted_requirement": "tblib>=1.3.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/tblib", + "extracted_requirement": "tblib>=1.5.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/pyyaml", + "extracted_requirement": "PyYAML>=3.10", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/kazoo", + "extracted_requirement": "kazoo>=1.3.1", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/zstandard", + "extracted_requirement": "zstandard", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + } + ], + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null, + "datasource_id": "pip_requirements", + "purl": null + } + ], + "for_packages": [ + "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758" + ], + "scan_errors": [] + }, + { + "path": "celery/celery.egg-info/top_level.txt", + "type": "file", + "package_data": [], + "for_packages": [ + "pkg:pypi/celery@5.2.7?uuid=fixed-uid-done-for-testing-5642512d1758" + ], + "scan_errors": [] + } + ] +} \ No newline at end of file diff --git a/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/PKG-INFO b/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/PKG-INFO new file mode 100644 index 00000000000..972c75dfa00 --- /dev/null +++ b/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/PKG-INFO @@ -0,0 +1,605 @@ +Metadata-Version: 2.1 +Name: celery +Version: 5.2.7 +Summary: Distributed Task Queue. +Home-page: http://celeryproject.org +Author: Ask Solem +Author-email: auvipy@gmail.com +License: BSD +Project-URL: Documentation, https://docs.celeryproject.org/en/latest/index.html +Project-URL: Changelog, https://docs.celeryproject.org/en/stable/changelog.html +Project-URL: Code, https://github.com/celery/celery +Project-URL: Tracker, https://github.com/celery/celery/issues +Project-URL: Funding, https://opencollective.com/celery +Keywords: task job queue distributed messaging actor +Platform: any +Classifier: Development Status :: 5 - Production/Stable +Classifier: License :: OSI Approved :: BSD License +Classifier: Topic :: System :: Distributed Computing +Classifier: Topic :: Software Development :: Object Brokering +Classifier: Framework :: Celery +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Classifier: Operating System :: OS Independent +Requires-Python: >=3.7 +Provides-Extra: sqs +Provides-Extra: librabbitmq +Provides-Extra: django +Provides-Extra: cosmosdbsql +Provides-Extra: s3 +Provides-Extra: couchbase +Provides-Extra: redis +Provides-Extra: zookeeper +Provides-Extra: eventlet +Provides-Extra: dynamodb +Provides-Extra: zstd +Provides-Extra: couchdb +Provides-Extra: pymemcache +Provides-Extra: slmq +Provides-Extra: sqlalchemy +Provides-Extra: solar +Provides-Extra: elasticsearch +Provides-Extra: arangodb +Provides-Extra: tblib +Provides-Extra: cassandra +Provides-Extra: brotli +Provides-Extra: pytest +Provides-Extra: mongodb +Provides-Extra: yaml +Provides-Extra: pyro +Provides-Extra: gevent +Provides-Extra: auth +Provides-Extra: azureblockblob +Provides-Extra: msgpack +Provides-Extra: consul +Provides-Extra: memcache +License-File: LICENSE + +.. image:: http://docs.celeryproject.org/en/latest/_images/celery-banner-small.png + +|build-status| |coverage| |license| |wheel| |pyversion| |pyimp| |ocbackerbadge| |ocsponsorbadge| + +:Version: 5.2.7 (dawn-chorus) +:Web: https://docs.celeryproject.org/en/stable/index.html +:Download: https://pypi.org/project/celery/ +:Source: https://github.com/celery/celery/ +:Keywords: task, queue, job, async, rabbitmq, amqp, redis, + python, distributed, actors + +Donations +========= + +This project relies on your generous donations. + +If you are using Celery to create a commercial product, please consider becoming our `backer`_ or our `sponsor`_ to ensure Celery's future. + +.. _`backer`: https://opencollective.com/celery#backer +.. _`sponsor`: https://opencollective.com/celery#sponsor + +For enterprise +============== + +Available as part of the Tidelift Subscription. + +The maintainers of ``celery`` and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. `Learn more. `_ + +What's a Task Queue? +==================== + +Task queues are used as a mechanism to distribute work across threads or +machines. + +A task queue's input is a unit of work, called a task, dedicated worker +processes then constantly monitor the queue for new work to perform. + +Celery communicates via messages, usually using a broker +to mediate between clients and workers. To initiate a task a client puts a +message on the queue, the broker then delivers the message to a worker. + +A Celery system can consist of multiple workers and brokers, giving way +to high availability and horizontal scaling. + +Celery is written in Python, but the protocol can be implemented in any +language. In addition to Python there's node-celery_ for Node.js, +a `PHP client`_, `gocelery`_ for golang, and rusty-celery_ for Rust. + +Language interoperability can also be achieved by using webhooks +in such a way that the client enqueues an URL to be requested by a worker. + +.. _node-celery: https://github.com/mher/node-celery +.. _`PHP client`: https://github.com/gjedeer/celery-php +.. _`gocelery`: https://github.com/gocelery/gocelery +.. _rusty-celery: https://github.com/rusty-celery/rusty-celery + +What do I need? +=============== + +Celery version 5.2.0 runs on, + +- Python (3.7, 3.8, 3.9, 3.10) +- PyPy3.7 (7.3.7+) + + +This is the version of celery which will support Python 3.7 or newer. + +If you're running an older version of Python, you need to be running +an older version of Celery: + +- Python 2.6: Celery series 3.1 or earlier. +- Python 2.5: Celery series 3.0 or earlier. +- Python 2.4: Celery series 2.2 or earlier. +- Python 2.7: Celery 4.x series. +- Python 3.6: Celery 5.1 or earlier. + +Celery is a project with minimal funding, +so we don't support Microsoft Windows. +Please don't open any issues related to that platform. + +*Celery* is usually used with a message broker to send and receive messages. +The RabbitMQ, Redis transports are feature complete, +but there's also experimental support for a myriad of other solutions, including +using SQLite for local development. + +*Celery* can run on a single machine, on multiple machines, or even +across datacenters. + +Get Started +=========== + +If this is the first time you're trying to use Celery, or you're +new to Celery v5.2.0 coming from previous versions then you should read our +getting started tutorials: + +- `First steps with Celery`_ + + Tutorial teaching you the bare minimum needed to get started with Celery. + +- `Next steps`_ + + A more complete overview, showing more features. + +.. _`First steps with Celery`: + http://docs.celeryproject.org/en/latest/getting-started/first-steps-with-celery.html + +.. _`Next steps`: + http://docs.celeryproject.org/en/latest/getting-started/next-steps.html + + You can also get started with Celery by using a hosted broker transport CloudAMQP. The largest hosting provider of RabbitMQ is a proud sponsor of Celery. + +Celery is... +============= + +- **Simple** + + Celery is easy to use and maintain, and does *not need configuration files*. + + It has an active, friendly community you can talk to for support, + like at our `mailing-list`_, or the IRC channel. + + Here's one of the simplest applications you can make: + + .. code-block:: python + + from celery import Celery + + app = Celery('hello', broker='amqp://guest@localhost//') + + @app.task + def hello(): + return 'hello world' + +- **Highly Available** + + Workers and clients will automatically retry in the event + of connection loss or failure, and some brokers support + HA in way of *Primary/Primary* or *Primary/Replica* replication. + +- **Fast** + + A single Celery process can process millions of tasks a minute, + with sub-millisecond round-trip latency (using RabbitMQ, + py-librabbitmq, and optimized settings). + +- **Flexible** + + Almost every part of *Celery* can be extended or used on its own, + Custom pool implementations, serializers, compression schemes, logging, + schedulers, consumers, producers, broker transports, and much more. + +It supports... +================ + + - **Message Transports** + + - RabbitMQ_, Redis_, Amazon SQS + + - **Concurrency** + + - Prefork, Eventlet_, gevent_, single threaded (``solo``) + + - **Result Stores** + + - AMQP, Redis + - memcached + - SQLAlchemy, Django ORM + - Apache Cassandra, IronCache, Elasticsearch + + - **Serialization** + + - *pickle*, *json*, *yaml*, *msgpack*. + - *zlib*, *bzip2* compression. + - Cryptographic message signing. + +.. _`Eventlet`: http://eventlet.net/ +.. _`gevent`: http://gevent.org/ + +.. _RabbitMQ: https://rabbitmq.com +.. _Redis: https://redis.io +.. _SQLAlchemy: http://sqlalchemy.org + +Framework Integration +===================== + +Celery is easy to integrate with web frameworks, some of which even have +integration packages: + + +--------------------+------------------------+ + | `Django`_ | not needed | + +--------------------+------------------------+ + | `Pyramid`_ | `pyramid_celery`_ | + +--------------------+------------------------+ + | `Pylons`_ | `celery-pylons`_ | + +--------------------+------------------------+ + | `Flask`_ | not needed | + +--------------------+------------------------+ + | `web2py`_ | `web2py-celery`_ | + +--------------------+------------------------+ + | `Tornado`_ | `tornado-celery`_ | + +--------------------+------------------------+ + +The integration packages aren't strictly necessary, but they can make +development easier, and sometimes they add important hooks like closing +database connections at ``fork``. + +.. _`Django`: https://djangoproject.com/ +.. _`Pylons`: http://pylonsproject.org/ +.. _`Flask`: http://flask.pocoo.org/ +.. _`web2py`: http://web2py.com/ +.. _`Bottle`: https://bottlepy.org/ +.. _`Pyramid`: http://docs.pylonsproject.org/en/latest/docs/pyramid.html +.. _`pyramid_celery`: https://pypi.org/project/pyramid_celery/ +.. _`celery-pylons`: https://pypi.org/project/celery-pylons/ +.. _`web2py-celery`: https://code.google.com/p/web2py-celery/ +.. _`Tornado`: http://www.tornadoweb.org/ +.. _`tornado-celery`: https://github.com/mher/tornado-celery/ + +.. _celery-documentation: + +Documentation +============= + +The `latest documentation`_ is hosted at Read The Docs, containing user guides, +tutorials, and an API reference. + +最新的中文文档托管在 https://www.celerycn.io/ 中,包含用户指南、教程、API接口等。 + +.. _`latest documentation`: http://docs.celeryproject.org/en/latest/ + +.. _celery-installation: + +Installation +============ + +You can install Celery either via the Python Package Index (PyPI) +or from source. + +To install using ``pip``: + +:: + + + $ pip install -U Celery + +.. _bundles: + +Bundles +------- + +Celery also defines a group of bundles that can be used +to install Celery and the dependencies for a given feature. + +You can specify these in your requirements or on the ``pip`` +command-line by using brackets. Multiple bundles can be specified by +separating them by commas. + +:: + + + $ pip install "celery[amqp]" + + $ pip install "celery[amqp,redis,auth,msgpack]" + +The following bundles are available: + +Serializers +~~~~~~~~~~~ + +:``celery[auth]``: + for using the ``auth`` security serializer. + +:``celery[msgpack]``: + for using the msgpack serializer. + +:``celery[yaml]``: + for using the yaml serializer. + +Concurrency +~~~~~~~~~~~ + +:``celery[eventlet]``: + for using the ``eventlet`` pool. + +:``celery[gevent]``: + for using the ``gevent`` pool. + +Transports and Backends +~~~~~~~~~~~~~~~~~~~~~~~ + +:``celery[amqp]``: + for using the RabbitMQ amqp python library. + +:``celery[redis]``: + for using Redis as a message transport or as a result backend. + +:``celery[sqs]``: + for using Amazon SQS as a message transport. + +:``celery[tblib``]: + for using the ``task_remote_tracebacks`` feature. + +:``celery[memcache]``: + for using Memcached as a result backend (using ``pylibmc``) + +:``celery[pymemcache]``: + for using Memcached as a result backend (pure-Python implementation). + +:``celery[cassandra]``: + for using Apache Cassandra as a result backend with DataStax driver. + +:``celery[azureblockblob]``: + for using Azure Storage as a result backend (using ``azure-storage``) + +:``celery[s3]``: + for using S3 Storage as a result backend. + +:``celery[couchbase]``: + for using Couchbase as a result backend. + +:``celery[arangodb]``: + for using ArangoDB as a result backend. + +:``celery[elasticsearch]``: + for using Elasticsearch as a result backend. + +:``celery[riak]``: + for using Riak as a result backend. + +:``celery[cosmosdbsql]``: + for using Azure Cosmos DB as a result backend (using ``pydocumentdb``) + +:``celery[zookeeper]``: + for using Zookeeper as a message transport. + +:``celery[sqlalchemy]``: + for using SQLAlchemy as a result backend (*supported*). + +:``celery[pyro]``: + for using the Pyro4 message transport (*experimental*). + +:``celery[slmq]``: + for using the SoftLayer Message Queue transport (*experimental*). + +:``celery[consul]``: + for using the Consul.io Key/Value store as a message transport or result backend (*experimental*). + +:``celery[django]``: + specifies the lowest version possible for Django support. + + You should probably not use this in your requirements, it's here + for informational purposes only. + + +.. _celery-installing-from-source: + +Downloading and installing from source +-------------------------------------- + +Download the latest version of Celery from PyPI: + +https://pypi.org/project/celery/ + +You can install it by doing the following,: + +:: + + + $ tar xvfz celery-0.0.0.tar.gz + $ cd celery-0.0.0 + $ python setup.py build + # python setup.py install + +The last command must be executed as a privileged user if +you aren't currently using a virtualenv. + +.. _celery-installing-from-git: + +Using the development version +----------------------------- + +With pip +~~~~~~~~ + +The Celery development version also requires the development +versions of ``kombu``, ``amqp``, ``billiard``, and ``vine``. + +You can install the latest snapshot of these using the following +pip commands: + +:: + + + $ pip install https://github.com/celery/celery/zipball/master#egg=celery + $ pip install https://github.com/celery/billiard/zipball/master#egg=billiard + $ pip install https://github.com/celery/py-amqp/zipball/master#egg=amqp + $ pip install https://github.com/celery/kombu/zipball/master#egg=kombu + $ pip install https://github.com/celery/vine/zipball/master#egg=vine + +With git +~~~~~~~~ + +Please see the Contributing section. + +.. _getting-help: + +Getting Help +============ + +.. _mailing-list: + +Mailing list +------------ + +For discussions about the usage, development, and future of Celery, +please join the `celery-users`_ mailing list. + +.. _`celery-users`: https://groups.google.com/group/celery-users/ + +.. _irc-channel: + +IRC +--- + +Come chat with us on IRC. The **#celery** channel is located at the +`Libera Chat`_ network. + +.. _`Libera Chat`: https://libera.chat/ + +.. _bug-tracker: + +Bug tracker +=========== + +If you have any suggestions, bug reports, or annoyances please report them +to our issue tracker at https://github.com/celery/celery/issues/ + +.. _wiki: + +Wiki +==== + +https://github.com/celery/celery/wiki + +Credits +======= + +.. _contributing-short: + +Contributors +------------ + +This project exists thanks to all the people who contribute. Development of +`celery` happens at GitHub: https://github.com/celery/celery + +You're highly encouraged to participate in the development +of `celery`. If you don't like GitHub (for some reason) you're welcome +to send regular patches. + +Be sure to also read the `Contributing to Celery`_ section in the +documentation. + +.. _`Contributing to Celery`: + http://docs.celeryproject.org/en/master/contributing.html + +|oc-contributors| + +.. |oc-contributors| image:: https://opencollective.com/celery/contributors.svg?width=890&button=false + :target: https://github.com/celery/celery/graphs/contributors + +Backers +------- + +Thank you to all our backers! 🙏 [`Become a backer`_] + +.. _`Become a backer`: https://opencollective.com/celery#backer + +|oc-backers| + +.. |oc-backers| image:: https://opencollective.com/celery/backers.svg?width=890 + :target: https://opencollective.com/celery#backers + +Sponsors +-------- + +Support this project by becoming a sponsor. Your logo will show up here with a +link to your website. [`Become a sponsor`_] + +.. _`Become a sponsor`: https://opencollective.com/celery#sponsor + +|oc-sponsors| + +.. |oc-sponsors| image:: https://opencollective.com/celery/sponsor/0/avatar.svg + :target: https://opencollective.com/celery/sponsor/0/website + +.. _license: + +License +======= + +This software is licensed under the `New BSD License`. See the ``LICENSE`` +file in the top distribution directory for the full license text. + +.. # vim: syntax=rst expandtab tabstop=4 shiftwidth=4 shiftround + +.. |build-status| image:: https://github.com/celery/celery/actions/workflows/python-package.yml/badge.svg + :alt: Build status + :target: https://github.com/celery/celery/actions/workflows/python-package.yml + +.. |coverage| image:: https://codecov.io/github/celery/celery/coverage.svg?branch=master + :target: https://codecov.io/github/celery/celery?branch=master + +.. |license| image:: https://img.shields.io/pypi/l/celery.svg + :alt: BSD License + :target: https://opensource.org/licenses/BSD-3-Clause + +.. |wheel| image:: https://img.shields.io/pypi/wheel/celery.svg + :alt: Celery can be installed via wheel + :target: https://pypi.org/project/celery/ + +.. |pyversion| image:: https://img.shields.io/pypi/pyversions/celery.svg + :alt: Supported Python versions. + :target: https://pypi.org/project/celery/ + +.. |pyimp| image:: https://img.shields.io/pypi/implementation/celery.svg + :alt: Supported Python implementations. + :target: https://pypi.org/project/celery/ + +.. |ocbackerbadge| image:: https://opencollective.com/celery/backers/badge.svg + :alt: Backers on Open Collective + :target: #backers + +.. |ocsponsorbadge| image:: https://opencollective.com/celery/sponsors/badge.svg + :alt: Sponsors on Open Collective + :target: #sponsors + +.. |downloads| image:: https://pepy.tech/badge/celery + :alt: Downloads + :target: https://pepy.tech/project/celery + + diff --git a/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/celery.egg-info/PKG-INFO b/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/celery.egg-info/PKG-INFO new file mode 100644 index 00000000000..972c75dfa00 --- /dev/null +++ b/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/celery.egg-info/PKG-INFO @@ -0,0 +1,605 @@ +Metadata-Version: 2.1 +Name: celery +Version: 5.2.7 +Summary: Distributed Task Queue. +Home-page: http://celeryproject.org +Author: Ask Solem +Author-email: auvipy@gmail.com +License: BSD +Project-URL: Documentation, https://docs.celeryproject.org/en/latest/index.html +Project-URL: Changelog, https://docs.celeryproject.org/en/stable/changelog.html +Project-URL: Code, https://github.com/celery/celery +Project-URL: Tracker, https://github.com/celery/celery/issues +Project-URL: Funding, https://opencollective.com/celery +Keywords: task job queue distributed messaging actor +Platform: any +Classifier: Development Status :: 5 - Production/Stable +Classifier: License :: OSI Approved :: BSD License +Classifier: Topic :: System :: Distributed Computing +Classifier: Topic :: Software Development :: Object Brokering +Classifier: Framework :: Celery +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Classifier: Operating System :: OS Independent +Requires-Python: >=3.7 +Provides-Extra: sqs +Provides-Extra: librabbitmq +Provides-Extra: django +Provides-Extra: cosmosdbsql +Provides-Extra: s3 +Provides-Extra: couchbase +Provides-Extra: redis +Provides-Extra: zookeeper +Provides-Extra: eventlet +Provides-Extra: dynamodb +Provides-Extra: zstd +Provides-Extra: couchdb +Provides-Extra: pymemcache +Provides-Extra: slmq +Provides-Extra: sqlalchemy +Provides-Extra: solar +Provides-Extra: elasticsearch +Provides-Extra: arangodb +Provides-Extra: tblib +Provides-Extra: cassandra +Provides-Extra: brotli +Provides-Extra: pytest +Provides-Extra: mongodb +Provides-Extra: yaml +Provides-Extra: pyro +Provides-Extra: gevent +Provides-Extra: auth +Provides-Extra: azureblockblob +Provides-Extra: msgpack +Provides-Extra: consul +Provides-Extra: memcache +License-File: LICENSE + +.. image:: http://docs.celeryproject.org/en/latest/_images/celery-banner-small.png + +|build-status| |coverage| |license| |wheel| |pyversion| |pyimp| |ocbackerbadge| |ocsponsorbadge| + +:Version: 5.2.7 (dawn-chorus) +:Web: https://docs.celeryproject.org/en/stable/index.html +:Download: https://pypi.org/project/celery/ +:Source: https://github.com/celery/celery/ +:Keywords: task, queue, job, async, rabbitmq, amqp, redis, + python, distributed, actors + +Donations +========= + +This project relies on your generous donations. + +If you are using Celery to create a commercial product, please consider becoming our `backer`_ or our `sponsor`_ to ensure Celery's future. + +.. _`backer`: https://opencollective.com/celery#backer +.. _`sponsor`: https://opencollective.com/celery#sponsor + +For enterprise +============== + +Available as part of the Tidelift Subscription. + +The maintainers of ``celery`` and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. `Learn more. `_ + +What's a Task Queue? +==================== + +Task queues are used as a mechanism to distribute work across threads or +machines. + +A task queue's input is a unit of work, called a task, dedicated worker +processes then constantly monitor the queue for new work to perform. + +Celery communicates via messages, usually using a broker +to mediate between clients and workers. To initiate a task a client puts a +message on the queue, the broker then delivers the message to a worker. + +A Celery system can consist of multiple workers and brokers, giving way +to high availability and horizontal scaling. + +Celery is written in Python, but the protocol can be implemented in any +language. In addition to Python there's node-celery_ for Node.js, +a `PHP client`_, `gocelery`_ for golang, and rusty-celery_ for Rust. + +Language interoperability can also be achieved by using webhooks +in such a way that the client enqueues an URL to be requested by a worker. + +.. _node-celery: https://github.com/mher/node-celery +.. _`PHP client`: https://github.com/gjedeer/celery-php +.. _`gocelery`: https://github.com/gocelery/gocelery +.. _rusty-celery: https://github.com/rusty-celery/rusty-celery + +What do I need? +=============== + +Celery version 5.2.0 runs on, + +- Python (3.7, 3.8, 3.9, 3.10) +- PyPy3.7 (7.3.7+) + + +This is the version of celery which will support Python 3.7 or newer. + +If you're running an older version of Python, you need to be running +an older version of Celery: + +- Python 2.6: Celery series 3.1 or earlier. +- Python 2.5: Celery series 3.0 or earlier. +- Python 2.4: Celery series 2.2 or earlier. +- Python 2.7: Celery 4.x series. +- Python 3.6: Celery 5.1 or earlier. + +Celery is a project with minimal funding, +so we don't support Microsoft Windows. +Please don't open any issues related to that platform. + +*Celery* is usually used with a message broker to send and receive messages. +The RabbitMQ, Redis transports are feature complete, +but there's also experimental support for a myriad of other solutions, including +using SQLite for local development. + +*Celery* can run on a single machine, on multiple machines, or even +across datacenters. + +Get Started +=========== + +If this is the first time you're trying to use Celery, or you're +new to Celery v5.2.0 coming from previous versions then you should read our +getting started tutorials: + +- `First steps with Celery`_ + + Tutorial teaching you the bare minimum needed to get started with Celery. + +- `Next steps`_ + + A more complete overview, showing more features. + +.. _`First steps with Celery`: + http://docs.celeryproject.org/en/latest/getting-started/first-steps-with-celery.html + +.. _`Next steps`: + http://docs.celeryproject.org/en/latest/getting-started/next-steps.html + + You can also get started with Celery by using a hosted broker transport CloudAMQP. The largest hosting provider of RabbitMQ is a proud sponsor of Celery. + +Celery is... +============= + +- **Simple** + + Celery is easy to use and maintain, and does *not need configuration files*. + + It has an active, friendly community you can talk to for support, + like at our `mailing-list`_, or the IRC channel. + + Here's one of the simplest applications you can make: + + .. code-block:: python + + from celery import Celery + + app = Celery('hello', broker='amqp://guest@localhost//') + + @app.task + def hello(): + return 'hello world' + +- **Highly Available** + + Workers and clients will automatically retry in the event + of connection loss or failure, and some brokers support + HA in way of *Primary/Primary* or *Primary/Replica* replication. + +- **Fast** + + A single Celery process can process millions of tasks a minute, + with sub-millisecond round-trip latency (using RabbitMQ, + py-librabbitmq, and optimized settings). + +- **Flexible** + + Almost every part of *Celery* can be extended or used on its own, + Custom pool implementations, serializers, compression schemes, logging, + schedulers, consumers, producers, broker transports, and much more. + +It supports... +================ + + - **Message Transports** + + - RabbitMQ_, Redis_, Amazon SQS + + - **Concurrency** + + - Prefork, Eventlet_, gevent_, single threaded (``solo``) + + - **Result Stores** + + - AMQP, Redis + - memcached + - SQLAlchemy, Django ORM + - Apache Cassandra, IronCache, Elasticsearch + + - **Serialization** + + - *pickle*, *json*, *yaml*, *msgpack*. + - *zlib*, *bzip2* compression. + - Cryptographic message signing. + +.. _`Eventlet`: http://eventlet.net/ +.. _`gevent`: http://gevent.org/ + +.. _RabbitMQ: https://rabbitmq.com +.. _Redis: https://redis.io +.. _SQLAlchemy: http://sqlalchemy.org + +Framework Integration +===================== + +Celery is easy to integrate with web frameworks, some of which even have +integration packages: + + +--------------------+------------------------+ + | `Django`_ | not needed | + +--------------------+------------------------+ + | `Pyramid`_ | `pyramid_celery`_ | + +--------------------+------------------------+ + | `Pylons`_ | `celery-pylons`_ | + +--------------------+------------------------+ + | `Flask`_ | not needed | + +--------------------+------------------------+ + | `web2py`_ | `web2py-celery`_ | + +--------------------+------------------------+ + | `Tornado`_ | `tornado-celery`_ | + +--------------------+------------------------+ + +The integration packages aren't strictly necessary, but they can make +development easier, and sometimes they add important hooks like closing +database connections at ``fork``. + +.. _`Django`: https://djangoproject.com/ +.. _`Pylons`: http://pylonsproject.org/ +.. _`Flask`: http://flask.pocoo.org/ +.. _`web2py`: http://web2py.com/ +.. _`Bottle`: https://bottlepy.org/ +.. _`Pyramid`: http://docs.pylonsproject.org/en/latest/docs/pyramid.html +.. _`pyramid_celery`: https://pypi.org/project/pyramid_celery/ +.. _`celery-pylons`: https://pypi.org/project/celery-pylons/ +.. _`web2py-celery`: https://code.google.com/p/web2py-celery/ +.. _`Tornado`: http://www.tornadoweb.org/ +.. _`tornado-celery`: https://github.com/mher/tornado-celery/ + +.. _celery-documentation: + +Documentation +============= + +The `latest documentation`_ is hosted at Read The Docs, containing user guides, +tutorials, and an API reference. + +最新的中文文档托管在 https://www.celerycn.io/ 中,包含用户指南、教程、API接口等。 + +.. _`latest documentation`: http://docs.celeryproject.org/en/latest/ + +.. _celery-installation: + +Installation +============ + +You can install Celery either via the Python Package Index (PyPI) +or from source. + +To install using ``pip``: + +:: + + + $ pip install -U Celery + +.. _bundles: + +Bundles +------- + +Celery also defines a group of bundles that can be used +to install Celery and the dependencies for a given feature. + +You can specify these in your requirements or on the ``pip`` +command-line by using brackets. Multiple bundles can be specified by +separating them by commas. + +:: + + + $ pip install "celery[amqp]" + + $ pip install "celery[amqp,redis,auth,msgpack]" + +The following bundles are available: + +Serializers +~~~~~~~~~~~ + +:``celery[auth]``: + for using the ``auth`` security serializer. + +:``celery[msgpack]``: + for using the msgpack serializer. + +:``celery[yaml]``: + for using the yaml serializer. + +Concurrency +~~~~~~~~~~~ + +:``celery[eventlet]``: + for using the ``eventlet`` pool. + +:``celery[gevent]``: + for using the ``gevent`` pool. + +Transports and Backends +~~~~~~~~~~~~~~~~~~~~~~~ + +:``celery[amqp]``: + for using the RabbitMQ amqp python library. + +:``celery[redis]``: + for using Redis as a message transport or as a result backend. + +:``celery[sqs]``: + for using Amazon SQS as a message transport. + +:``celery[tblib``]: + for using the ``task_remote_tracebacks`` feature. + +:``celery[memcache]``: + for using Memcached as a result backend (using ``pylibmc``) + +:``celery[pymemcache]``: + for using Memcached as a result backend (pure-Python implementation). + +:``celery[cassandra]``: + for using Apache Cassandra as a result backend with DataStax driver. + +:``celery[azureblockblob]``: + for using Azure Storage as a result backend (using ``azure-storage``) + +:``celery[s3]``: + for using S3 Storage as a result backend. + +:``celery[couchbase]``: + for using Couchbase as a result backend. + +:``celery[arangodb]``: + for using ArangoDB as a result backend. + +:``celery[elasticsearch]``: + for using Elasticsearch as a result backend. + +:``celery[riak]``: + for using Riak as a result backend. + +:``celery[cosmosdbsql]``: + for using Azure Cosmos DB as a result backend (using ``pydocumentdb``) + +:``celery[zookeeper]``: + for using Zookeeper as a message transport. + +:``celery[sqlalchemy]``: + for using SQLAlchemy as a result backend (*supported*). + +:``celery[pyro]``: + for using the Pyro4 message transport (*experimental*). + +:``celery[slmq]``: + for using the SoftLayer Message Queue transport (*experimental*). + +:``celery[consul]``: + for using the Consul.io Key/Value store as a message transport or result backend (*experimental*). + +:``celery[django]``: + specifies the lowest version possible for Django support. + + You should probably not use this in your requirements, it's here + for informational purposes only. + + +.. _celery-installing-from-source: + +Downloading and installing from source +-------------------------------------- + +Download the latest version of Celery from PyPI: + +https://pypi.org/project/celery/ + +You can install it by doing the following,: + +:: + + + $ tar xvfz celery-0.0.0.tar.gz + $ cd celery-0.0.0 + $ python setup.py build + # python setup.py install + +The last command must be executed as a privileged user if +you aren't currently using a virtualenv. + +.. _celery-installing-from-git: + +Using the development version +----------------------------- + +With pip +~~~~~~~~ + +The Celery development version also requires the development +versions of ``kombu``, ``amqp``, ``billiard``, and ``vine``. + +You can install the latest snapshot of these using the following +pip commands: + +:: + + + $ pip install https://github.com/celery/celery/zipball/master#egg=celery + $ pip install https://github.com/celery/billiard/zipball/master#egg=billiard + $ pip install https://github.com/celery/py-amqp/zipball/master#egg=amqp + $ pip install https://github.com/celery/kombu/zipball/master#egg=kombu + $ pip install https://github.com/celery/vine/zipball/master#egg=vine + +With git +~~~~~~~~ + +Please see the Contributing section. + +.. _getting-help: + +Getting Help +============ + +.. _mailing-list: + +Mailing list +------------ + +For discussions about the usage, development, and future of Celery, +please join the `celery-users`_ mailing list. + +.. _`celery-users`: https://groups.google.com/group/celery-users/ + +.. _irc-channel: + +IRC +--- + +Come chat with us on IRC. The **#celery** channel is located at the +`Libera Chat`_ network. + +.. _`Libera Chat`: https://libera.chat/ + +.. _bug-tracker: + +Bug tracker +=========== + +If you have any suggestions, bug reports, or annoyances please report them +to our issue tracker at https://github.com/celery/celery/issues/ + +.. _wiki: + +Wiki +==== + +https://github.com/celery/celery/wiki + +Credits +======= + +.. _contributing-short: + +Contributors +------------ + +This project exists thanks to all the people who contribute. Development of +`celery` happens at GitHub: https://github.com/celery/celery + +You're highly encouraged to participate in the development +of `celery`. If you don't like GitHub (for some reason) you're welcome +to send regular patches. + +Be sure to also read the `Contributing to Celery`_ section in the +documentation. + +.. _`Contributing to Celery`: + http://docs.celeryproject.org/en/master/contributing.html + +|oc-contributors| + +.. |oc-contributors| image:: https://opencollective.com/celery/contributors.svg?width=890&button=false + :target: https://github.com/celery/celery/graphs/contributors + +Backers +------- + +Thank you to all our backers! 🙏 [`Become a backer`_] + +.. _`Become a backer`: https://opencollective.com/celery#backer + +|oc-backers| + +.. |oc-backers| image:: https://opencollective.com/celery/backers.svg?width=890 + :target: https://opencollective.com/celery#backers + +Sponsors +-------- + +Support this project by becoming a sponsor. Your logo will show up here with a +link to your website. [`Become a sponsor`_] + +.. _`Become a sponsor`: https://opencollective.com/celery#sponsor + +|oc-sponsors| + +.. |oc-sponsors| image:: https://opencollective.com/celery/sponsor/0/avatar.svg + :target: https://opencollective.com/celery/sponsor/0/website + +.. _license: + +License +======= + +This software is licensed under the `New BSD License`. See the ``LICENSE`` +file in the top distribution directory for the full license text. + +.. # vim: syntax=rst expandtab tabstop=4 shiftwidth=4 shiftround + +.. |build-status| image:: https://github.com/celery/celery/actions/workflows/python-package.yml/badge.svg + :alt: Build status + :target: https://github.com/celery/celery/actions/workflows/python-package.yml + +.. |coverage| image:: https://codecov.io/github/celery/celery/coverage.svg?branch=master + :target: https://codecov.io/github/celery/celery?branch=master + +.. |license| image:: https://img.shields.io/pypi/l/celery.svg + :alt: BSD License + :target: https://opensource.org/licenses/BSD-3-Clause + +.. |wheel| image:: https://img.shields.io/pypi/wheel/celery.svg + :alt: Celery can be installed via wheel + :target: https://pypi.org/project/celery/ + +.. |pyversion| image:: https://img.shields.io/pypi/pyversions/celery.svg + :alt: Supported Python versions. + :target: https://pypi.org/project/celery/ + +.. |pyimp| image:: https://img.shields.io/pypi/implementation/celery.svg + :alt: Supported Python implementations. + :target: https://pypi.org/project/celery/ + +.. |ocbackerbadge| image:: https://opencollective.com/celery/backers/badge.svg + :alt: Backers on Open Collective + :target: #backers + +.. |ocsponsorbadge| image:: https://opencollective.com/celery/sponsors/badge.svg + :alt: Sponsors on Open Collective + :target: #sponsors + +.. |downloads| image:: https://pepy.tech/badge/celery + :alt: Downloads + :target: https://pepy.tech/project/celery + + diff --git a/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/celery.egg-info/SOURCES.txt b/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/celery.egg-info/SOURCES.txt new file mode 100644 index 00000000000..6d8ea66caee --- /dev/null +++ b/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/celery.egg-info/SOURCES.txt @@ -0,0 +1,652 @@ +CONTRIBUTORS.txt +Changelog.rst +LICENSE +MANIFEST.in +README.rst +TODO +pyproject.toml +setup.cfg +setup.py +celery/__init__.py +celery/__main__.py +celery/_state.py +celery/beat.py +celery/bootsteps.py +celery/canvas.py +celery/exceptions.py +celery/local.py +celery/platforms.py +celery/result.py +celery/schedules.py +celery/signals.py +celery/states.py +celery.egg-info/PKG-INFO +celery.egg-info/SOURCES.txt +celery.egg-info/dependency_links.txt +celery.egg-info/entry_points.txt +celery.egg-info/not-zip-safe +celery.egg-info/requires.txt +celery.egg-info/top_level.txt +celery/app/__init__.py +celery/app/amqp.py +celery/app/annotations.py +celery/app/autoretry.py +celery/app/backends.py +celery/app/base.py +celery/app/builtins.py +celery/app/control.py +celery/app/defaults.py +celery/app/events.py +celery/app/log.py +celery/app/registry.py +celery/app/routes.py +celery/app/task.py +celery/app/trace.py +celery/app/utils.py +celery/apps/__init__.py +celery/apps/beat.py +celery/apps/multi.py +celery/apps/worker.py +celery/backends/__init__.py +celery/backends/arangodb.py +celery/backends/asynchronous.py +celery/backends/azureblockblob.py +celery/backends/base.py +celery/backends/cache.py +celery/backends/cassandra.py +celery/backends/consul.py +celery/backends/cosmosdbsql.py +celery/backends/couchbase.py +celery/backends/couchdb.py +celery/backends/dynamodb.py +celery/backends/elasticsearch.py +celery/backends/filesystem.py +celery/backends/mongodb.py +celery/backends/redis.py +celery/backends/rpc.py +celery/backends/s3.py +celery/backends/database/__init__.py +celery/backends/database/models.py +celery/backends/database/session.py +celery/bin/__init__.py +celery/bin/amqp.py +celery/bin/base.py +celery/bin/beat.py +celery/bin/call.py +celery/bin/celery.py +celery/bin/control.py +celery/bin/events.py +celery/bin/graph.py +celery/bin/list.py +celery/bin/logtool.py +celery/bin/migrate.py +celery/bin/multi.py +celery/bin/purge.py +celery/bin/result.py +celery/bin/shell.py +celery/bin/upgrade.py +celery/bin/worker.py +celery/concurrency/__init__.py +celery/concurrency/asynpool.py +celery/concurrency/base.py +celery/concurrency/eventlet.py +celery/concurrency/gevent.py +celery/concurrency/prefork.py +celery/concurrency/solo.py +celery/concurrency/thread.py +celery/contrib/__init__.py +celery/contrib/abortable.py +celery/contrib/migrate.py +celery/contrib/pytest.py +celery/contrib/rdb.py +celery/contrib/sphinx.py +celery/contrib/testing/__init__.py +celery/contrib/testing/app.py +celery/contrib/testing/manager.py +celery/contrib/testing/mocks.py +celery/contrib/testing/tasks.py +celery/contrib/testing/worker.py +celery/events/__init__.py +celery/events/cursesmon.py +celery/events/dispatcher.py +celery/events/dumper.py +celery/events/event.py +celery/events/receiver.py +celery/events/snapshot.py +celery/events/state.py +celery/fixups/__init__.py +celery/fixups/django.py +celery/loaders/__init__.py +celery/loaders/app.py +celery/loaders/base.py +celery/loaders/default.py +celery/security/__init__.py +celery/security/certificate.py +celery/security/key.py +celery/security/serialization.py +celery/security/utils.py +celery/utils/__init__.py +celery/utils/abstract.py +celery/utils/collections.py +celery/utils/debug.py +celery/utils/deprecated.py +celery/utils/functional.py +celery/utils/graph.py +celery/utils/imports.py +celery/utils/iso8601.py +celery/utils/log.py +celery/utils/nodenames.py +celery/utils/objects.py +celery/utils/saferepr.py +celery/utils/serialization.py +celery/utils/sysinfo.py +celery/utils/term.py +celery/utils/text.py +celery/utils/threads.py +celery/utils/time.py +celery/utils/timer2.py +celery/utils/dispatch/__init__.py +celery/utils/dispatch/signal.py +celery/utils/static/__init__.py +celery/utils/static/celery_128.png +celery/worker/__init__.py +celery/worker/autoscale.py +celery/worker/components.py +celery/worker/control.py +celery/worker/heartbeat.py +celery/worker/loops.py +celery/worker/pidbox.py +celery/worker/request.py +celery/worker/state.py +celery/worker/strategy.py +celery/worker/worker.py +celery/worker/consumer/__init__.py +celery/worker/consumer/agent.py +celery/worker/consumer/connection.py +celery/worker/consumer/consumer.py +celery/worker/consumer/control.py +celery/worker/consumer/events.py +celery/worker/consumer/gossip.py +celery/worker/consumer/heart.py +celery/worker/consumer/mingle.py +celery/worker/consumer/tasks.py +docs/AUTHORS.txt +docs/Makefile +docs/THANKS +docs/changelog.rst +docs/community.rst +docs/conf.py +docs/configuration.html +docs/contributing.rst +docs/copyright.rst +docs/faq.rst +docs/glossary.rst +docs/index.rst +docs/make.bat +docs/spelling_wordlist.txt +docs/whatsnew-5.2.rst +docs/_ext/celerydocs.py +docs/_static/.keep +docs/_templates/sidebardonations.html +docs/django/first-steps-with-django.rst +docs/django/index.rst +docs/getting-started/first-steps-with-celery.rst +docs/getting-started/index.rst +docs/getting-started/introduction.rst +docs/getting-started/next-steps.rst +docs/getting-started/resources.rst +docs/getting-started/backends-and-brokers/index.rst +docs/getting-started/backends-and-brokers/rabbitmq.rst +docs/getting-started/backends-and-brokers/redis.rst +docs/getting-started/backends-and-brokers/sqs.rst +docs/history/changelog-1.0.rst +docs/history/changelog-2.0.rst +docs/history/changelog-2.1.rst +docs/history/changelog-2.2.rst +docs/history/changelog-2.3.rst +docs/history/changelog-2.4.rst +docs/history/changelog-2.5.rst +docs/history/changelog-3.0.rst +docs/history/changelog-3.1.rst +docs/history/changelog-4.0.rst +docs/history/changelog-4.1.rst +docs/history/changelog-4.2.rst +docs/history/changelog-4.3.rst +docs/history/changelog-4.4.rst +docs/history/changelog-5.0.rst +docs/history/changelog-5.1.rst +docs/history/index.rst +docs/history/whatsnew-2.5.rst +docs/history/whatsnew-3.0.rst +docs/history/whatsnew-3.1.rst +docs/history/whatsnew-4.0.rst +docs/history/whatsnew-4.1.rst +docs/history/whatsnew-4.2.rst +docs/history/whatsnew-4.3.rst +docs/history/whatsnew-4.4.rst +docs/history/whatsnew-5.0.rst +docs/history/whatsnew-5.1.rst +docs/images/celery-banner-small.png +docs/images/celery-banner.png +docs/images/celery_128.png +docs/images/celery_512.png +docs/images/celeryevshotsm.jpg +docs/images/dashboard.png +docs/images/favicon.ico +docs/images/monitor.png +docs/images/result_graph.png +docs/images/worker_graph_full.png +docs/includes/installation.txt +docs/includes/introduction.txt +docs/includes/resources.txt +docs/internals/app-overview.rst +docs/internals/deprecation.rst +docs/internals/guide.rst +docs/internals/index.rst +docs/internals/protocol.rst +docs/internals/worker.rst +docs/internals/reference/celery._state.rst +docs/internals/reference/celery.app.annotations.rst +docs/internals/reference/celery.app.routes.rst +docs/internals/reference/celery.app.trace.rst +docs/internals/reference/celery.backends.arangodb.rst +docs/internals/reference/celery.backends.asynchronous.rst +docs/internals/reference/celery.backends.azureblockblob.rst +docs/internals/reference/celery.backends.base.rst +docs/internals/reference/celery.backends.cache.rst +docs/internals/reference/celery.backends.cassandra.rst +docs/internals/reference/celery.backends.consul.rst +docs/internals/reference/celery.backends.cosmosdbsql.rst +docs/internals/reference/celery.backends.couchbase.rst +docs/internals/reference/celery.backends.couchdb.rst +docs/internals/reference/celery.backends.database.models.rst +docs/internals/reference/celery.backends.database.rst +docs/internals/reference/celery.backends.database.session.rst +docs/internals/reference/celery.backends.dynamodb.rst +docs/internals/reference/celery.backends.elasticsearch.rst +docs/internals/reference/celery.backends.filesystem.rst +docs/internals/reference/celery.backends.mongodb.rst +docs/internals/reference/celery.backends.redis.rst +docs/internals/reference/celery.backends.rpc.rst +docs/internals/reference/celery.backends.rst +docs/internals/reference/celery.backends.s3.rst +docs/internals/reference/celery.concurrency.base.rst +docs/internals/reference/celery.concurrency.eventlet.rst +docs/internals/reference/celery.concurrency.gevent.rst +docs/internals/reference/celery.concurrency.prefork.rst +docs/internals/reference/celery.concurrency.rst +docs/internals/reference/celery.concurrency.solo.rst +docs/internals/reference/celery.concurrency.thread.rst +docs/internals/reference/celery.events.cursesmon.rst +docs/internals/reference/celery.events.dumper.rst +docs/internals/reference/celery.events.snapshot.rst +docs/internals/reference/celery.platforms.rst +docs/internals/reference/celery.security.certificate.rst +docs/internals/reference/celery.security.key.rst +docs/internals/reference/celery.security.serialization.rst +docs/internals/reference/celery.security.utils.rst +docs/internals/reference/celery.utils.abstract.rst +docs/internals/reference/celery.utils.collections.rst +docs/internals/reference/celery.utils.deprecated.rst +docs/internals/reference/celery.utils.dispatch.rst +docs/internals/reference/celery.utils.dispatch.signal.rst +docs/internals/reference/celery.utils.functional.rst +docs/internals/reference/celery.utils.graph.rst +docs/internals/reference/celery.utils.imports.rst +docs/internals/reference/celery.utils.iso8601.rst +docs/internals/reference/celery.utils.log.rst +docs/internals/reference/celery.utils.nodenames.rst +docs/internals/reference/celery.utils.objects.rst +docs/internals/reference/celery.utils.rst +docs/internals/reference/celery.utils.saferepr.rst +docs/internals/reference/celery.utils.serialization.rst +docs/internals/reference/celery.utils.sysinfo.rst +docs/internals/reference/celery.utils.term.rst +docs/internals/reference/celery.utils.text.rst +docs/internals/reference/celery.utils.threads.rst +docs/internals/reference/celery.utils.time.rst +docs/internals/reference/celery.utils.timer2.rst +docs/internals/reference/celery.worker.autoscale.rst +docs/internals/reference/celery.worker.components.rst +docs/internals/reference/celery.worker.control.rst +docs/internals/reference/celery.worker.heartbeat.rst +docs/internals/reference/celery.worker.loops.rst +docs/internals/reference/celery.worker.pidbox.rst +docs/internals/reference/index.rst +docs/reference/celery.app.amqp.rst +docs/reference/celery.app.autoretry.rst +docs/reference/celery.app.backends.rst +docs/reference/celery.app.builtins.rst +docs/reference/celery.app.control.rst +docs/reference/celery.app.defaults.rst +docs/reference/celery.app.events.rst +docs/reference/celery.app.log.rst +docs/reference/celery.app.registry.rst +docs/reference/celery.app.rst +docs/reference/celery.app.task.rst +docs/reference/celery.app.utils.rst +docs/reference/celery.apps.beat.rst +docs/reference/celery.apps.multi.rst +docs/reference/celery.apps.worker.rst +docs/reference/celery.beat.rst +docs/reference/celery.bin.base.rst +docs/reference/celery.bin.beat.rst +docs/reference/celery.bin.call.rst +docs/reference/celery.bin.celery.rst +docs/reference/celery.bin.control.rst +docs/reference/celery.bin.events.rst +docs/reference/celery.bin.graph.rst +docs/reference/celery.bin.list.rst +docs/reference/celery.bin.logtool.rst +docs/reference/celery.bin.migrate.rst +docs/reference/celery.bin.multi.rst +docs/reference/celery.bin.purge.rst +docs/reference/celery.bin.result.rst +docs/reference/celery.bin.shell.rst +docs/reference/celery.bin.upgrade.rst +docs/reference/celery.bin.worker.rst +docs/reference/celery.bootsteps.rst +docs/reference/celery.contrib.abortable.rst +docs/reference/celery.contrib.migrate.rst +docs/reference/celery.contrib.pytest.rst +docs/reference/celery.contrib.rdb.rst +docs/reference/celery.contrib.sphinx.rst +docs/reference/celery.contrib.testing.app.rst +docs/reference/celery.contrib.testing.manager.rst +docs/reference/celery.contrib.testing.mocks.rst +docs/reference/celery.contrib.testing.worker.rst +docs/reference/celery.events.dispatcher.rst +docs/reference/celery.events.event.rst +docs/reference/celery.events.receiver.rst +docs/reference/celery.events.rst +docs/reference/celery.events.state.rst +docs/reference/celery.exceptions.rst +docs/reference/celery.loaders.app.rst +docs/reference/celery.loaders.base.rst +docs/reference/celery.loaders.default.rst +docs/reference/celery.loaders.rst +docs/reference/celery.result.rst +docs/reference/celery.rst +docs/reference/celery.schedules.rst +docs/reference/celery.security.rst +docs/reference/celery.signals.rst +docs/reference/celery.states.rst +docs/reference/celery.utils.debug.rst +docs/reference/celery.worker.consumer.agent.rst +docs/reference/celery.worker.consumer.connection.rst +docs/reference/celery.worker.consumer.consumer.rst +docs/reference/celery.worker.consumer.control.rst +docs/reference/celery.worker.consumer.events.rst +docs/reference/celery.worker.consumer.gossip.rst +docs/reference/celery.worker.consumer.heart.rst +docs/reference/celery.worker.consumer.mingle.rst +docs/reference/celery.worker.consumer.rst +docs/reference/celery.worker.consumer.tasks.rst +docs/reference/celery.worker.request.rst +docs/reference/celery.worker.rst +docs/reference/celery.worker.state.rst +docs/reference/celery.worker.strategy.rst +docs/reference/celery.worker.worker.rst +docs/reference/cli.rst +docs/reference/index.rst +docs/sec/CELERYSA-0001.txt +docs/sec/CELERYSA-0002.txt +docs/sec/CELERYSA-0003.txt +docs/templates/readme.txt +docs/tutorials/daemonizing.html +docs/tutorials/debugging.html +docs/tutorials/index.rst +docs/tutorials/task-cookbook.rst +docs/userguide/application.rst +docs/userguide/calling.rst +docs/userguide/canvas.rst +docs/userguide/configuration.rst +docs/userguide/daemonizing.rst +docs/userguide/debugging.rst +docs/userguide/extending.rst +docs/userguide/index.rst +docs/userguide/monitoring.rst +docs/userguide/optimizing.rst +docs/userguide/periodic-tasks.rst +docs/userguide/routing.rst +docs/userguide/security.rst +docs/userguide/signals.rst +docs/userguide/sphinx.rst +docs/userguide/tasks.rst +docs/userguide/testing.rst +docs/userguide/workers.rst +docs/userguide/concurrency/eventlet.rst +docs/userguide/concurrency/index.rst +examples/README.rst +examples/app/myapp.py +examples/celery_http_gateway/README.rst +examples/celery_http_gateway/__init__.py +examples/celery_http_gateway/manage.py +examples/celery_http_gateway/settings.py +examples/celery_http_gateway/tasks.py +examples/celery_http_gateway/urls.py +examples/django/README.rst +examples/django/manage.py +examples/django/requirements.txt +examples/django/demoapp/__init__.py +examples/django/demoapp/models.py +examples/django/demoapp/tasks.py +examples/django/demoapp/views.py +examples/django/demoapp/migrations/0001_initial.py +examples/django/demoapp/migrations/__init__.py +examples/django/proj/__init__.py +examples/django/proj/celery.py +examples/django/proj/settings.py +examples/django/proj/urls.py +examples/django/proj/wsgi.py +examples/eventlet/README.rst +examples/eventlet/bulk_task_producer.py +examples/eventlet/celeryconfig.py +examples/eventlet/tasks.py +examples/eventlet/webcrawler.py +examples/gevent/celeryconfig.py +examples/gevent/tasks.py +examples/next-steps/setup.py +examples/next-steps/proj/__init__.py +examples/next-steps/proj/celery.py +examples/next-steps/proj/tasks.py +examples/periodic-tasks/myapp.py +examples/resultgraph/tasks.py +examples/security/mysecureapp.py +examples/security/ssl/worker.key +examples/security/ssl/worker.pem +examples/tutorial/tasks.py +extra/bash-completion/celery.bash +extra/generic-init.d/celerybeat +extra/generic-init.d/celeryd +extra/macOS/org.celeryq.beat.plist +extra/macOS/org.celeryq.worker.plist +extra/supervisord/celery.sh +extra/supervisord/celerybeat.conf +extra/supervisord/celeryd.conf +extra/supervisord/supervisord.conf +extra/systemd/celery.conf +extra/systemd/celery.service +extra/systemd/celery.tmpfiles +extra/systemd/celerybeat.service +extra/zsh-completion/celery.zsh +requirements/README.rst +requirements/default.txt +requirements/dev.txt +requirements/docs.txt +requirements/pkgutils.txt +requirements/security.txt +requirements/test-ci-base.txt +requirements/test-ci-default.txt +requirements/test-integration.txt +requirements/test-pypy3.txt +requirements/test.txt +requirements/deps/mock.txt +requirements/extras/arangodb.txt +requirements/extras/auth.txt +requirements/extras/azureblockblob.txt +requirements/extras/brotli.txt +requirements/extras/cassandra.txt +requirements/extras/consul.txt +requirements/extras/cosmosdbsql.txt +requirements/extras/couchbase.txt +requirements/extras/couchdb.txt +requirements/extras/django.txt +requirements/extras/dynamodb.txt +requirements/extras/elasticsearch.txt +requirements/extras/eventlet.txt +requirements/extras/gevent.txt +requirements/extras/librabbitmq.txt +requirements/extras/memcache.txt +requirements/extras/mongodb.txt +requirements/extras/msgpack.txt +requirements/extras/pymemcache.txt +requirements/extras/pyro.txt +requirements/extras/pytest.txt +requirements/extras/redis.txt +requirements/extras/s3.txt +requirements/extras/slmq.txt +requirements/extras/solar.txt +requirements/extras/sphinxautobuild.txt +requirements/extras/sqlalchemy.txt +requirements/extras/sqs.txt +requirements/extras/tblib.txt +requirements/extras/thread.txt +requirements/extras/yaml.txt +requirements/extras/zeromq.txt +requirements/extras/zookeeper.txt +requirements/extras/zstd.txt +t/__init__.py +t/skip.py +t/benchmarks/bench_worker.py +t/integration/__init__.py +t/integration/conftest.py +t/integration/tasks.py +t/integration/test_backend.py +t/integration/test_canvas.py +t/integration/test_inspect.py +t/integration/test_security.py +t/integration/test_tasks.py +t/unit/__init__.py +t/unit/conftest.py +t/unit/test_canvas.py +t/unit/app/__init__.py +t/unit/app/test_amqp.py +t/unit/app/test_annotations.py +t/unit/app/test_app.py +t/unit/app/test_backends.py +t/unit/app/test_beat.py +t/unit/app/test_builtins.py +t/unit/app/test_celery.py +t/unit/app/test_control.py +t/unit/app/test_defaults.py +t/unit/app/test_exceptions.py +t/unit/app/test_loaders.py +t/unit/app/test_log.py +t/unit/app/test_registry.py +t/unit/app/test_routes.py +t/unit/app/test_schedules.py +t/unit/app/test_utils.py +t/unit/apps/__init__.py +t/unit/apps/test_multi.py +t/unit/backends/__init__.py +t/unit/backends/test_arangodb.py +t/unit/backends/test_asynchronous.py +t/unit/backends/test_azureblockblob.py +t/unit/backends/test_base.py +t/unit/backends/test_cache.py +t/unit/backends/test_cassandra.py +t/unit/backends/test_consul.py +t/unit/backends/test_cosmosdbsql.py +t/unit/backends/test_couchbase.py +t/unit/backends/test_couchdb.py +t/unit/backends/test_database.py +t/unit/backends/test_dynamodb.py +t/unit/backends/test_elasticsearch.py +t/unit/backends/test_filesystem.py +t/unit/backends/test_mongodb.py +t/unit/backends/test_redis.py +t/unit/backends/test_rpc.py +t/unit/backends/test_s3.py +t/unit/bin/__init__.py +t/unit/bin/celery.py +t/unit/bin/test_multi.py +t/unit/bin/proj/__init__.py +t/unit/bin/proj/app.py +t/unit/bin/proj/app2.py +t/unit/concurrency/__init__.py +t/unit/concurrency/test_concurrency.py +t/unit/concurrency/test_eventlet.py +t/unit/concurrency/test_gevent.py +t/unit/concurrency/test_pool.py +t/unit/concurrency/test_prefork.py +t/unit/concurrency/test_solo.py +t/unit/concurrency/test_thread.py +t/unit/contrib/__init__.py +t/unit/contrib/test_abortable.py +t/unit/contrib/test_migrate.py +t/unit/contrib/test_pytest.py +t/unit/contrib/test_rdb.py +t/unit/contrib/test_sphinx.py +t/unit/contrib/proj/__init__.py +t/unit/contrib/proj/conf.py +t/unit/contrib/proj/contents.rst +t/unit/contrib/proj/foo.py +t/unit/contrib/proj/xyzzy.py +t/unit/events/__init__.py +t/unit/events/test_cursesmon.py +t/unit/events/test_events.py +t/unit/events/test_snapshot.py +t/unit/events/test_state.py +t/unit/fixups/__init__.py +t/unit/fixups/test_django.py +t/unit/security/__init__.py +t/unit/security/case.py +t/unit/security/test_certificate.py +t/unit/security/test_key.py +t/unit/security/test_security.py +t/unit/security/test_serialization.py +t/unit/tasks/__init__.py +t/unit/tasks/test_canvas.py +t/unit/tasks/test_chord.py +t/unit/tasks/test_context.py +t/unit/tasks/test_result.py +t/unit/tasks/test_states.py +t/unit/tasks/test_tasks.py +t/unit/tasks/test_trace.py +t/unit/tasks/unit_tasks.py +t/unit/utils/__init__.py +t/unit/utils/test_collections.py +t/unit/utils/test_debug.py +t/unit/utils/test_deprecated.py +t/unit/utils/test_dispatcher.py +t/unit/utils/test_functional.py +t/unit/utils/test_graph.py +t/unit/utils/test_imports.py +t/unit/utils/test_local.py +t/unit/utils/test_nodenames.py +t/unit/utils/test_objects.py +t/unit/utils/test_pickle.py +t/unit/utils/test_platforms.py +t/unit/utils/test_saferepr.py +t/unit/utils/test_serialization.py +t/unit/utils/test_sysinfo.py +t/unit/utils/test_term.py +t/unit/utils/test_text.py +t/unit/utils/test_threads.py +t/unit/utils/test_time.py +t/unit/utils/test_timer2.py +t/unit/utils/test_utils.py +t/unit/worker/__init__.py +t/unit/worker/test_autoscale.py +t/unit/worker/test_bootsteps.py +t/unit/worker/test_components.py +t/unit/worker/test_consumer.py +t/unit/worker/test_control.py +t/unit/worker/test_heartbeat.py +t/unit/worker/test_loops.py +t/unit/worker/test_request.py +t/unit/worker/test_revoke.py +t/unit/worker/test_state.py +t/unit/worker/test_strategy.py +t/unit/worker/test_worker.py \ No newline at end of file diff --git a/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/celery.egg-info/dependency_links.txt b/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/celery.egg-info/dependency_links.txt new file mode 100644 index 00000000000..8b137891791 --- /dev/null +++ b/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/celery.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/celery.egg-info/entry_points.txt b/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/celery.egg-info/entry_points.txt new file mode 100644 index 00000000000..fb04d7b6df3 --- /dev/null +++ b/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/celery.egg-info/entry_points.txt @@ -0,0 +1,3 @@ +[console_scripts] +celery = celery.__main__:main + diff --git a/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/celery.egg-info/not-zip-safe b/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/celery.egg-info/not-zip-safe new file mode 100644 index 00000000000..8b137891791 --- /dev/null +++ b/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/celery.egg-info/not-zip-safe @@ -0,0 +1 @@ + diff --git a/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/celery.egg-info/requires.txt b/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/celery.egg-info/requires.txt new file mode 100644 index 00000000000..c622e966d72 --- /dev/null +++ b/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/celery.egg-info/requires.txt @@ -0,0 +1,122 @@ +pytz>=2021.3 +billiard<4.0,>=3.6.4.0 +kombu<6.0,>=5.2.3 +vine<6.0,>=5.0.0 +click<9.0,>=8.0.3 +click-didyoumean>=0.0.3 +click-repl>=0.2.0 +click-plugins>=1.1.1 + +[:python_version < "3.8"] +importlib-metadata>=1.4.0 + +[arangodb] +pyArango>=1.3.2 + +[auth] +cryptography + +[azureblockblob] +azure-storage-blob==12.9.0 + +[brotli] + +[brotli:platform_python_implementation == "CPython"] +brotli>=1.0.0 + +[brotli:platform_python_implementation == "PyPy"] +brotlipy>=0.7.0 + +[cassandra] +cassandra-driver<3.21.0 + +[consul] +python-consul2 + +[cosmosdbsql] +pydocumentdb==2.3.2 + +[couchbase] + +[couchbase:platform_python_implementation != "PyPy" and (platform_system != "Windows" or python_version < "3.10")] +couchbase>=3.0.0 + +[couchdb] +pycouchdb + +[django] +Django>=1.11 + +[dynamodb] +boto3>=1.9.178 + +[elasticsearch] +elasticsearch + +[eventlet] + +[eventlet:python_version < "3.10"] +eventlet>=0.32.0 + +[gevent] +gevent>=1.5.0 + +[librabbitmq] +librabbitmq>=1.5.0 + +[memcache] + +[memcache:platform_system != "Windows"] +pylibmc + +[mongodb] +pymongo[srv]>=3.11.1 + +[msgpack] +msgpack + +[pymemcache] +python-memcached + +[pyro] +pyro4 + +[pytest] +pytest-celery + +[redis] +redis!=4.0.0,!=4.0.1,>=3.4.1 + +[s3] +boto3>=1.9.125 + +[slmq] +softlayer_messaging>=1.0.3 + +[solar] + +[solar:platform_python_implementation != "PyPy"] +ephem + +[sqlalchemy] +sqlalchemy + +[sqs] +kombu[sqs] + +[tblib] + +[tblib:python_version < "3.8.0"] +tblib>=1.3.0 + +[tblib:python_version >= "3.8.0"] +tblib>=1.5.0 + +[yaml] +PyYAML>=3.10 + +[zookeeper] +kazoo>=1.3.1 + +[zstd] +zstandard diff --git a/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/celery.egg-info/top_level.txt b/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/celery.egg-info/top_level.txt new file mode 100644 index 00000000000..74f9e8fefb0 --- /dev/null +++ b/tests/packagedcode/data/pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery/celery.egg-info/top_level.txt @@ -0,0 +1 @@ +celery diff --git a/tests/packagedcode/data/pypi/unpacked_wheel/daglib_wheel_extracted-expected.json b/tests/packagedcode/data/pypi/unpacked_wheel/daglib_wheel_extracted-expected.json index 98e2f982693..09e8e74e2cb 100644 --- a/tests/packagedcode/data/pypi/unpacked_wheel/daglib_wheel_extracted-expected.json +++ b/tests/packagedcode/data/pypi/unpacked_wheel/daglib_wheel_extracted-expected.json @@ -19,7 +19,7 @@ "extracted_requirement": "graphviz<0.21,>=0.20; extra == \"graphviz\"", "scope": "graphviz", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {}, @@ -33,7 +33,7 @@ "extracted_requirement": "ipycytoscape<2.0.0,>=1.3.3; extra == \"ipycytoscape\"", "scope": "ipycytoscape", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {}, @@ -281,7 +281,7 @@ "extracted_requirement": "graphviz<0.21,>=0.20; extra == \"graphviz\"", "scope": "graphviz", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -291,7 +291,7 @@ "extracted_requirement": "ipycytoscape<2.0.0,>=1.3.3; extra == \"ipycytoscape\"", "scope": "ipycytoscape", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} diff --git a/tests/packagedcode/data/pypi/unpacked_wheel/metadata-2.0/Jinja2-2.10.dist-info-expected.json b/tests/packagedcode/data/pypi/unpacked_wheel/metadata-2.0/Jinja2-2.10.dist-info-expected.json index c10fdd7846e..ea3d780dd54 100644 --- a/tests/packagedcode/data/pypi/unpacked_wheel/metadata-2.0/Jinja2-2.10.dist-info-expected.json +++ b/tests/packagedcode/data/pypi/unpacked_wheel/metadata-2.0/Jinja2-2.10.dist-info-expected.json @@ -642,7 +642,7 @@ "extracted_requirement": "Babel>=0.8; extra == \"i18n\"", "scope": "i18n", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} diff --git a/tests/packagedcode/data/pypi/unpacked_wheel/metadata-2.0/urllib3-1.26.4.dist-info-expected.json b/tests/packagedcode/data/pypi/unpacked_wheel/metadata-2.0/urllib3-1.26.4.dist-info-expected.json index 08e5b51102d..6a663432717 100644 --- a/tests/packagedcode/data/pypi/unpacked_wheel/metadata-2.0/urllib3-1.26.4.dist-info-expected.json +++ b/tests/packagedcode/data/pypi/unpacked_wheel/metadata-2.0/urllib3-1.26.4.dist-info-expected.json @@ -842,7 +842,7 @@ "extracted_requirement": "pyOpenSSL>=0.14; extra == \"secure\"", "scope": "secure", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -852,7 +852,7 @@ "extracted_requirement": "cryptography>=1.3.4; extra == \"secure\"", "scope": "secure", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -862,7 +862,7 @@ "extracted_requirement": "idna>=2.0.0; extra == \"secure\"", "scope": "secure", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -872,7 +872,7 @@ "extracted_requirement": "certifi; extra == \"secure\"", "scope": "secure", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -882,7 +882,7 @@ "extracted_requirement": "ipaddress; python_version == \"2.7\" and extra == \"secure\"", "scope": "secure", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -892,7 +892,7 @@ "extracted_requirement": "PySocks!=1.5.7,<2.0,>=1.5.6; extra == \"socks\"", "scope": "socks", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -902,7 +902,7 @@ "extracted_requirement": "brotlipy>=0.6.0; extra == \"brotli\"", "scope": "brotli", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} diff --git a/tests/packagedcode/data/pypi/unpacked_wheel/metadata-2.1/plugincode-21.1.21.dist-info-expected.json b/tests/packagedcode/data/pypi/unpacked_wheel/metadata-2.1/plugincode-21.1.21.dist-info-expected.json index 84e94391aef..2909e7a92d7 100644 --- a/tests/packagedcode/data/pypi/unpacked_wheel/metadata-2.1/plugincode-21.1.21.dist-info-expected.json +++ b/tests/packagedcode/data/pypi/unpacked_wheel/metadata-2.1/plugincode-21.1.21.dist-info-expected.json @@ -294,7 +294,7 @@ "extracted_requirement": "Sphinx>=3.3.1; extra == \"docs\"", "scope": "docs", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -304,7 +304,7 @@ "extracted_requirement": "sphinx-rtd-theme>=0.5.0; extra == \"docs\"", "scope": "docs", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -314,7 +314,7 @@ "extracted_requirement": "doc8>=0.8.1; extra == \"docs\"", "scope": "docs", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -324,7 +324,7 @@ "extracted_requirement": "pytest>=6; extra == \"testing\"", "scope": "testing", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} @@ -334,7 +334,7 @@ "extracted_requirement": "pytest-xdist>=2; extra == \"testing\"", "scope": "testing", "is_runtime": true, - "is_optional": false, + "is_optional": true, "is_resolved": false, "resolved_package": {}, "extra_data": {} diff --git a/tests/packagedcode/data/win_reg/get_installed_packages_docker/expected-results.json b/tests/packagedcode/data/win_reg/get_installed_packages_docker/expected-results.json index 935f6d47159..05339f3d967 100644 --- a/tests/packagedcode/data/win_reg/get_installed_packages_docker/expected-results.json +++ b/tests/packagedcode/data/win_reg/get_installed_packages_docker/expected-results.json @@ -1,30 +1,4 @@ { - "headers": [ - { - "tool_name": "scancode-toolkit", - "options": { - "input": "", - "--json-pp": "", - "--package": true - }, - "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\nScanCode should be considered or used as legal advice. Consult an Attorney\nfor any legal advice.\nScanCode is a free software code scanning tool from nexB Inc. and others.\nVisit https://github.com/nexB/scancode-toolkit/ for support and download.", - "output_format_version": "2.0.0", - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.4.0-109-generic-x86_64-with-Ubuntu-18.04-bionic", - "platform_version": "#123~18.04.1-Ubuntu SMP Fri Apr 8 09:48:52 UTC 2022", - "python_version": "3.6.9 (default, Mar 15 2022, 13:55:28) \n[GCC 8.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 7 - } - } - ], "dependencies": [], "packages": [ { diff --git a/tests/packagedcode/test_pypi.py b/tests/packagedcode/test_pypi.py index ed7c16f3e45..c546612b317 100644 --- a/tests/packagedcode/test_pypi.py +++ b/tests/packagedcode/test_pypi.py @@ -11,6 +11,7 @@ from unittest.case import skipIf import pytest +from commoncode.resource import VirtualCodebase from commoncode.system import on_windows from packagedcode import pypi @@ -263,6 +264,22 @@ def test_can_parse_solo_metadata_from_command_line(self): run_scan_click(['--package', test_file, '--json', result_file]) check_json_scan(expected_file, result_file, remove_uuid=True, regen=REGEN_TEST_FIXTURES) + def test_parse_metadata_prefer_pkg_info_from_egg_info_from_command_line(self): + test_file = self.get_test_loc('pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery') + expected_file = self.get_test_loc('pypi/unpacked_sdist/prefer-egg-info-pkg-info/celery-expected.json', must_exist=False) + result_file = self.get_temp_file('results.json') + run_scan_click(['--package', test_file, '--json', result_file]) + check_json_scan(expected_file, result_file, remove_uuid=True, regen=REGEN_TEST_FIXTURES) + + # Really check to see that we are only using the PKG-INFO from + # `celery/celery.egg-info/PKG-INFO` + vc = VirtualCodebase(location=result_file) + for dep in vc.attributes.dependencies: + self.assertEqual(dep['datafile_path'], 'celery/celery.egg-info/PKG-INFO') + for pkg in vc.attributes.packages: + for path in pkg['datafile_paths']: + self.assertEqual(path, 'celery/celery.egg-info/PKG-INFO') + class TestPipRequirementsFileHandler(PackageTester): test_data_dir = os.path.join(os.path.dirname(__file__), 'data') diff --git a/tests/summarycode/data/tallies/full_tallies/tallies_key_files-details.expected.json-lines b/tests/summarycode/data/tallies/full_tallies/tallies_key_files-details.expected.json-lines index 5723b48d51d..676b6c62884 100644 --- a/tests/summarycode/data/tallies/full_tallies/tallies_key_files-details.expected.json-lines +++ b/tests/summarycode/data/tallies/full_tallies/tallies_key_files-details.expected.json-lines @@ -22,9 +22,9 @@ "system_environment": { "operating_system": "linux", "cpu_architecture": "64", - "platform": "Linux-4.15.0-189-generic-x86_64-with-debian-stretch-sid", - "platform_version": "#200~16.04.1-Ubuntu SMP Fri Jun 24 05:32:48 UTC 2022", - "python_version": "3.7.9 (default, Dec 6 2020, 11:48:06) \n[GCC 5.4.0 20160609]" + "platform": "Linux-5.10.102.1-microsoft-standard-WSL2-x86_64-with-glibc2.35", + "platform_version": "#1 SMP Wed Mar 2 00:30:59 UTC 2022", + "python_version": "3.10.5 (main, Jul 30 2022, 03:32:13) [GCC 11.2.0]" }, "spdx_license_list_version": "3.17", "files_count": 26