Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add shebang to python scripts #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions AlaModeEPD/xbm_to_dat.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python2

import glob
import struct
import pylab
Expand Down
2 changes: 2 additions & 0 deletions libraries/EReader/examples/Album/ascii_5x7.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python2

from numpy import *
import PIL.Image as Im

Expand Down
2 changes: 2 additions & 0 deletions libraries/EReader/examples/Album/custom_pages.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python2

import textwrap
import unifont
import shutil
Expand Down
2 changes: 2 additions & 0 deletions libraries/EReader/examples/Album/greyscale.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python2

import glob
import os.path
import struct
Expand Down
2 changes: 2 additions & 0 deletions libraries/EReader/examples/Album/img_draw_test.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python2

import PIL
from PIL import ImageFont
from PIL import Image
Expand Down
2 changes: 2 additions & 0 deletions libraries/EReader/examples/Album/setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python2

from distutils.core import setup
import py2exe, os

Expand Down
2 changes: 2 additions & 0 deletions libraries/EReader/examples/Album/unifont.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python2

import PIL.Image as Im
from numpy import *
import struct
Expand Down
2 changes: 2 additions & 0 deletions libraries/EReader/examples/Album/wif.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python2

import PIL.Image as Image
from PIL import ImageFont
import PIL.ImageDraw as ImageDraw
Expand Down
2 changes: 2 additions & 0 deletions libraries/EReader/examples/Album/wifit.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python2

import tempfile
import json
import StringIO
Expand Down
2 changes: 2 additions & 0 deletions libraries/EReader/examples/Album/zipit.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python2

import zipfile

def zipit(manifest, filename):
Expand Down
2 changes: 2 additions & 0 deletions libraries/EReader/examples/EReader/ascii_5x7.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python2

from numpy import *
import PIL.Image as Im

Expand Down
2 changes: 2 additions & 0 deletions libraries/EReader/examples/EReader/custom_pages.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python2

import textwrap
import unifont
import shutil
Expand Down
2 changes: 2 additions & 0 deletions libraries/EReader/examples/EReader/greyscale.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python2

import glob
import os.path
import struct
Expand Down
2 changes: 2 additions & 0 deletions libraries/EReader/examples/EReader/unifont.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python2

import PIL.Image as Im
from numpy import *
import struct
Expand Down
2 changes: 2 additions & 0 deletions libraries/EReader/examples/EReader/wif.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python2

import PIL.Image as Image
from PIL import ImageFont
import PIL.ImageDraw as ImageDraw
Expand Down
2 changes: 2 additions & 0 deletions libraries/EReader/greyscale.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python2

import os.path
import struct
# from PIL import Image
Expand Down
2 changes: 2 additions & 0 deletions photobooth/ascii_5x7.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python2

from numpy import *
import PIL.Image as Im

Expand Down
2 changes: 2 additions & 0 deletions photobooth/custom_page.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python2

import textwrap
import unifont
import shutil
Expand Down
2 changes: 2 additions & 0 deletions photobooth/photobooth.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python2

import time
import sys
import os
Expand Down
2 changes: 2 additions & 0 deletions photobooth/photobooth_gui.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python2

from photobooth import *
from Tkinter import *
import ImageTk
Expand Down
2 changes: 2 additions & 0 deletions photobooth/unifont.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python2

import PIL.Image as Im
from numpy import *
import struct
Expand Down
2 changes: 2 additions & 0 deletions photobooth/wif.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python2

import PIL.Image as Image
from PIL import ImageFont
import PIL.ImageDraw as ImageDraw
Expand Down
2 changes: 2 additions & 0 deletions photobooth/wifit.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python2

import tempfile
import json
import StringIO
Expand Down