/ Published in: Python
A simple skeleton for python scripts with utf-8 encoding
Expand |
Embed | Plain Text
#!/usr/bin/env python # encoding: utf-8 def main(): pass if __name__ == '__main__': main()
You need to login to post a comment.
blackthorne on 03/10/10
1 person have marked this snippet as a favorite
A simple skeleton for python scripts with utf-8 encoding
#!/usr/bin/env python # encoding: utf-8 def main(): pass if __name__ == '__main__': main()
You need to login to post a comment.