AliMustapha commited on
Commit
c8cf296
·
1 Parent(s): ea004be
Dictionary_guesser/dsutil.py CHANGED
@@ -1,4 +1,6 @@
1
  #!/usr/bin/env python3
 
 
2
 
3
 
4
  import pandas as pd
 
1
  #!/usr/bin/env python3
2
+ __copyright__ = "Copyright (C) 2022 Davide Rossi"
3
+ __license__ = "GPL-3.0-or-later"
4
 
5
 
6
  import pandas as pd
Dictionary_guesser/name_maker.py CHANGED
@@ -1,5 +1,7 @@
1
  #!/usr/bin/env python3
2
 
 
 
3
 
4
  import pandas as pd
5
  import numpy as np
 
1
  #!/usr/bin/env python3
2
 
3
+ __copyright__ = "Copyright (C) 2022 Davide Rossi"
4
+ __license__ = "GPL-3.0-or-later"
5
 
6
  import pandas as pd
7
  import numpy as np
Dictionary_guesser/name_nation_guesser.py CHANGED
@@ -1,4 +1,6 @@
1
  #!/usr/bin/env python3
 
 
2
 
3
 
4
 
@@ -110,7 +112,7 @@ class NameNationGuesser:
110
  self.names_data_by_name = defaultdict(list)
111
  names = self.names_data_col_names
112
  dtype = self.names_data_dtype
113
- jsonApi = os.getenv('apiKey')
114
  bucket_name = os.getenv('name')
115
  file_name = os.getenv('f_name')
116
 
 
1
  #!/usr/bin/env python3
2
+ __copyright__ = "Copyright (C) 2022 Davide Rossi"
3
+ __license__ = "GPL-3.0-or-later"
4
 
5
 
6
 
 
112
  self.names_data_by_name = defaultdict(list)
113
  names = self.names_data_col_names
114
  dtype = self.names_data_dtype
115
+ jsonApi = os.getenv('jsonApi')
116
  bucket_name = os.getenv('name')
117
  file_name = os.getenv('f_name')
118