Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

  • 62c64cd
  • /
  • parallel.py
Raw File Download

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
content badge
swh:1:cnt:1d8f147dd4ee6f3ac45c98e3654f3669a30d0459
directory badge
swh:1:dir:62c64cda2683cec7cf7848aba8feef132c43deee

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • content
  • directory
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
parallel.py
from multiprocessing import Process, Queue

# Input arguments: tasks = [(func, args)].
def parallel_work(tasks, num_workers):
    task_queue = Queue()
    done_queue = Queue()
    num_workers = min(num_workers, len(tasks))
    for func, args in tasks:
        task_queue.put((func, args))
    def worker(input, output):
        for func, args in iter(input.get, 'stop'):
            result = func(*args)
            output.put((args, result))
    for _ in range(num_workers):
        Process(target=worker, args=(task_queue, done_queue)).start()
    for _ in tasks:
        _, _ = done_queue.get()
    for _ in range(num_workers):
        task_queue.put('stop')

back to top

Software Heritage — Copyright (C) 2015–2026, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Content policy— Contact— JavaScript license information— Web API