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
  • /
  • common.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:e627c708be9f091fc628d0228aeef471f428d5b7
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 ...
common.py
import numpy as np

def ndarray(val):
    return np.asarray(val, dtype=np.float64)

def print_error(*message):
    print('\033[91m', 'ERROR ', *message, '\033[0m')

def print_ok(*message):
    print('\033[92m', *message, '\033[0m')

def print_warning(*message):
    print('\033[93m', *message, '\033[0m')

def print_info(*message):
    print('\033[96m', *message, '\033[0m')

class PrettyTabular(object):
    def __init__(self, head):
        self.head = head

    def head_string(self):
        line = ''
        for key, value in self.head.items():
            if 's' in value:
                dummy = value.format('0')
            else:
                dummy = value.format(0)
            span = max(len(dummy), len(key)) + 2
            key_format = '{:^' + str(span) + '}'
            line += key_format.format(key)
        return line

    def row_string(self, row_data):
        line = ''
        for key, value in self.head.items():
            data = value.format(row_data[key])
            span = max(len(key), len(data)) + 2
            line += ' ' * (span - len(data) - 1) + data + ' '
        return line

import shutil
import os
def create_folder(folder_name, exist_ok=False):
    if not exist_ok and os.path.isdir(folder_name):
        shutil.rmtree(folder_name)
    os.makedirs(folder_name, exist_ok=exist_ok)

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