diff options
-rw-r--r-- | export.py | 3 | ||||
-rw-r--r-- | export_json.py | 2 | ||||
-rw-r--r-- | json_to_wiki.py | 2 | ||||
-rw-r--r-- | license.py | 2 | ||||
-rw-r--r-- | license_summary.py | 3 | ||||
-rw-r--r-- | load_copyright.py | 2 | ||||
-rw-r--r-- | load_descriptions.py | 2 | ||||
-rw-r--r-- | load_packages.py | 2 | ||||
-rw-r--r-- | pkg_summary.py | 2 | ||||
-rwxr-xr-x | test.py | 1 |
10 files changed, 20 insertions, 1 deletions
@@ -1,4 +1,5 @@ -# encoding: utf8 +#!/usr/bin/env python +# -*- coding: utf-8 -*- import datetime import itertools diff --git a/export_json.py b/export_json.py index 370b5fe..0ba10d6 100644 --- a/export_json.py +++ b/export_json.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- import json import sys diff --git a/json_to_wiki.py b/json_to_wiki.py index b62d320..e5e91f9 100644 --- a/json_to_wiki.py +++ b/json_to_wiki.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- import json import sys @@ -1,3 +1,5 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- class License(object): def __init__(self, name): diff --git a/license_summary.py b/license_summary.py index e5edaba..177e756 100644 --- a/license_summary.py +++ b/license_summary.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + # summary of the License: fields found in Files: clauses import pandas as pd diff --git a/load_copyright.py b/load_copyright.py index 026f862..580da8c 100644 --- a/load_copyright.py +++ b/load_copyright.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- import os import sys diff --git a/load_descriptions.py b/load_descriptions.py index 14d0ee4..f8e2ecf 100644 --- a/load_descriptions.py +++ b/load_descriptions.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- import sys diff --git a/load_packages.py b/load_packages.py index e16c90e..0209b59 100644 --- a/load_packages.py +++ b/load_packages.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- import sys diff --git a/pkg_summary.py b/pkg_summary.py index a700c65..e262a41 100644 --- a/pkg_summary.py +++ b/pkg_summary.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- import pandas as pd @@ -1,4 +1,5 @@ #!/usr/bin/env python +# -*- coding: utf-8 -*- import os |