Skip to content

Commit

Permalink
add copyleft short header
Browse files Browse the repository at this point in the history
  • Loading branch information
Arg0s1080 committed Apr 16, 2019
1 parent c387345 commit 7d76f4a
Show file tree
Hide file tree
Showing 11 changed files with 67 additions and 8 deletions.
8 changes: 6 additions & 2 deletions mrz/base/countries_ops.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# -*- Coding: UTF-8 -*-
#
# GNU General Public License v3.0
# -*- coding UTF-8 -*-
# (ɔ) Iván Rincón 2018
#
# https://www.gnu.org/licenses/gpl-3.0.html
#
# (ɔ) Iván Rincón 2019

import mrz.base.countries as countries
from mrz.base.functions import full_capitalize
Expand Down
6 changes: 6 additions & 0 deletions mrz/base/errors.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# -*- Coding: UTF-8 -*-
#
# GNU General Public License v3.0
#
# https://www.gnu.org/licenses/gpl-3.0.html
#
# (ɔ) Iván Rincón 2019

default = "String was not recognized as a valid "

Expand Down
6 changes: 6 additions & 0 deletions mrz/checker/_fields.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# -*- Coding: UTF-8 -*-
#
# GNU General Public License v3.0
#
# https://www.gnu.org/licenses/gpl-3.0.html
#
# (ɔ) Iván Rincón 2019

from datetime import datetime, date, timedelta
from ._report import _Report
Expand Down
6 changes: 6 additions & 0 deletions mrz/checker/_hash_fields.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# -*- Coding: UTF-8 -*-
#
# GNU General Public License v3.0
#
# https://www.gnu.org/licenses/gpl-3.0.html
#
# (ɔ) Iván Rincón 2019

from ..base.functions import hash_is_ok
from ._report import _Report
Expand Down
6 changes: 6 additions & 0 deletions mrz/checker/_report.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# -*- Coding: UTF-8 -*-
#
# GNU General Public License v3.0
#
# https://www.gnu.org/licenses/gpl-3.0.html
#
# (ɔ) Iván Rincón 2019


class _Report:
Expand Down
6 changes: 4 additions & 2 deletions mrz/generator/_fields.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# -*- coding: utf-8 -*-
# -*- Coding: UTF-8 -*-
#
# GNU General Public License v3.0
#
# Iván Rincón 2018
# https://www.gnu.org/licenses/gpl-3.0.html
#
# (ɔ) Iván Rincón 2019

import mrz.base.string_checkers as check

Expand Down
6 changes: 4 additions & 2 deletions mrz/generator/_hash_fields.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# -*- coding: utf-8 -*-
# -*- Coding: UTF-8 -*-
#
# GNU General Public License v3.0
#
# Iván Rincón 2018
# https://www.gnu.org/licenses/gpl-3.0.html
#
# (ɔ) Iván Rincón 2019

from ..base.functions import hash_string
from ..base.string_checkers import field, date
Expand Down
6 changes: 4 additions & 2 deletions mrz/generator/_holder_name.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# -*- coding: utf-8 -*-
# -*- Coding: UTF-8 -*-
#
# GNU General Public License v3.0
#
# Iván Rincón 2018
# https://www.gnu.org/licenses/gpl-3.0.html
#
# (ɔ) Iván Rincón 2019

from ..base.functions import transliterate

Expand Down
8 changes: 8 additions & 0 deletions mrz/special_cases/checker/id_card_belgica.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# -*- Coding: UTF-8 -*-
#
# GNU General Public License v3.0
#
# https://www.gnu.org/licenses/gpl-3.0.html
#
# (ɔ) Iván Rincón 2019

from mrz.checker.td1 import *
from mrz.base.functions import hash_is_ok

Expand Down
8 changes: 8 additions & 0 deletions mrz/special_cases/checker/id_card_germany.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# -*- Coding: UTF-8 -*-
#
# GNU General Public License v3.0
#
# https://www.gnu.org/licenses/gpl-3.0.html
#
# (ɔ) Iván Rincón 2019

from mrz.base.functions import hash_is_ok
from mrz.checker.td1 import *

Expand Down
9 changes: 9 additions & 0 deletions mrz/special_cases/checker/td3_india.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
# -*- Coding: UTF-8 -*-
#
# GNU General Public License v3.0
#
# https://www.gnu.org/licenses/gpl-3.0.html
#
# (ɔ) Iván Rincón 2019

import mrz.base.string_checkers as check

from mrz.checker.td3 import *
from mrz.checker._honorifics import titles
from mrz.base.functions import hash_is_ok
Expand Down

0 comments on commit 7d76f4a

Please sign in to comment.