2017-03-23T17:22:08
Counting Lines of Code
Here's a simple way to count lines of code via the command line that I recently used for a Django project:
find . -name '*.py' -not -path "*/migrations/*" | xargs wc -l
or
wc -l **/*.py