Skip to content

Instantly share code, notes, and snippets.

View rplzzz's full-sized avatar

Robert Link rplzzz

  • University of Virginia
  • Charlottesville, VA
View GitHub Profile
@rplzzz
rplzzz / pyloc.py
Last active August 29, 2015 14:22 — forked from quandyfactory/pyloc.py
#!/usr/bin/env python
# coding: utf-8
"""
Calculates total, nonblank and net lines of code for Python scripts.
"""
import os
import re
def get_line_count(blob):