sloc-languages 1.6.13

Language detection and lexical SLOC analysis for 60 languages — IEEE 1045-1992 compliant
Documentation
import os
from sys import argv


class Animal:
    def __init__(self):
        pass

    def speak(self):
        return "..."


def helper():
    return 42


class TestAnimal:
    def test_speak(self):
        self.assertEqual("...", "...")

    def test_helper(self):
        self.assertEqual(helper(), 42)