Skip to content

Commit c71e8ab

Browse files
Merge pull request #16 from christophfink/remove-redundant-copyright-notices
Removed redundant copyright notices
2 parents b71257d + 1e27e96 commit c71e8ab

18 files changed

Lines changed: 0 additions & 267 deletions

src/flickrhistory/__init__.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,6 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33

4-
# Copyright (C) 2019 Christoph Fink, University of Helsinki
5-
#
6-
# This program is free software; you can redistribute it and/or
7-
# modify it under the terms of the GNU General Public License
8-
# as published by the Free Software Foundation; either version 3
9-
# of the License, or (at your option) any later version.
10-
#
11-
# This program is distributed in the hope that it will be useful,
12-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-
# GNU General Public License for more details.
15-
#
16-
# You should have received a copy of the GNU General Public License
17-
# along with this program; if not, see <http://www.gnu.org/licenses/>.
18-
194

205
"""Download a complete history of georeferenced flickr posts."""
216

src/flickrhistory/__main__.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,6 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33

4-
# Copyright (C) 2019 Christoph Fink, University of Helsinki
5-
#
6-
# This program is free software; you can redistribute it and/or
7-
# modify it under the terms of the GNU General Public License
8-
# as published by the Free Software Foundation; either version 3
9-
# of the License, or (at your option) any later version.
10-
#
11-
# This program is distributed in the hope that it will be useful,
12-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-
# GNU General Public License for more details.
15-
#
16-
# You should have received a copy of the GNU General Public License
17-
# along with this program; if not, see <http://www.gnu.org/licenses/>.
18-
194

205
"""Download a complete history of georeferenced flickr posts."""
216

src/flickrhistory/apikeymanager.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,6 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33

4-
# Copyright (C) 2019 Christoph Fink, University of Helsinki
5-
#
6-
# This program is free software; you can redistribute it and/or
7-
# modify it under the terms of the GNU General Public License
8-
# as published by the Free Software Foundation; either version 3
9-
# of the License, or (at your option) any later version.
10-
#
11-
# This program is distributed in the hope that it will be useful,
12-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-
# GNU General Public License for more details.
15-
#
16-
# You should have received a copy of the GNU General Public License
17-
# along with this program; if not, see <http://www.gnu.org/licenses/>.
18-
194

205
"""Manages API keys (and their rate limit)."""
216

src/flickrhistory/basicflickrhistorydownloader.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,6 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33

4-
# Copyright (C) 2020 Christoph Fink, University of Helsinki
5-
#
6-
# This program is free software; you can redistribute it and/or
7-
# modify it under the terms of the GNU General Public License
8-
# as published by the Free Software Foundation; either version 3
9-
# of the License, or (at your option) any later version.
10-
#
11-
# This program is distributed in the hope that it will be useful,
12-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-
# GNU General Public License for more details.
15-
#
16-
# You should have received a copy of the GNU General Public License
17-
# along with this program; if not, see <http://www.gnu.org/licenses/>.
18-
194

205
"""Download (all) georeferenced flickr posts."""
216

src/flickrhistory/cache.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,6 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33

4-
# Copyright (C) 2019 Christoph Fink, University of Helsinki
5-
#
6-
# This program is free software; you can redistribute it and/or
7-
# modify it under the terms of the GNU General Public License
8-
# as published by the Free Software Foundation; either version 3
9-
# of the License, or (at your option) any later version.
10-
#
11-
# This program is distributed in the hope that it will be useful,
12-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-
# GNU General Public License for more details.
15-
#
16-
# You should have received a copy of the GNU General Public License
17-
# along with this program; if not, see <http://www.gnu.org/licenses/>.
184

195
"""Manages globally cached variables."""
206

src/flickrhistory/cacheupdaterthread.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,6 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33

4-
# Copyright (C) 2020 Christoph Fink, University of Helsinki
5-
#
6-
# This program is free software; you can redistribute it and/or
7-
# modify it under the terms of the GNU General Public License
8-
# as published by the Free Software Foundation; either version 3
9-
# of the License, or (at your option) any later version.
10-
#
11-
# This program is distributed in the hope that it will be useful,
12-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-
# GNU General Public License for more details.
15-
#
16-
# You should have received a copy of the GNU General Public License
17-
# along with this program; if not, see <http://www.gnu.org/licenses/>.
18-
194

205
"""Worker threads wrapping an APIDownloader."""
216

src/flickrhistory/config.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,6 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33

4-
# Copyright (C) 2019 Christoph Fink, University of Helsinki
5-
#
6-
# This program is free software; you can redistribute it and/or
7-
# modify it under the terms of the GNU General Public License
8-
# as published by the Free Software Foundation; either version 3
9-
# of the License, or (at your option) any later version.
10-
#
11-
# This program is distributed in the hope that it will be useful,
12-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-
# GNU General Public License for more details.
15-
#
16-
# You should have received a copy of the GNU General Public License
17-
# along with this program; if not, see <http://www.gnu.org/licenses/>.
184

195
"""Import global configuration from a default location."""
206

src/flickrhistory/databaseobjects.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,6 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33

4-
# Copyright (C) 2019 Christoph Fink, University of Helsinki
5-
#
6-
# This program is free software; you can redistribute it and/or
7-
# modify it under the terms of the GNU General Public License
8-
# as published by the Free Software Foundation; either version 3
9-
# of the License, or (at your option) any later version.
10-
#
11-
# This program is distributed in the hope that it will be useful,
12-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-
# GNU General Public License for more details.
15-
#
16-
# You should have received a copy of the GNU General Public License
17-
# along with this program; if not, see <http://www.gnu.org/licenses/>.
184

195
"""Base classes to represent flickr posts and users."""
206

src/flickrhistory/exceptions.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,6 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33

4-
# Copyright (C) 2020 Christoph Fink, University of Helsinki
5-
#
6-
# This program is free software; you can redistribute it and/or
7-
# modify it under the terms of the GNU General Public License
8-
# as published by the Free Software Foundation; either version 3
9-
# of the License, or (at your option) any later version.
10-
#
11-
# This program is distributed in the hope that it will be useful,
12-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-
# GNU General Public License for more details.
15-
#
16-
# You should have received a copy of the GNU General Public License
17-
# along with this program; if not, see <http://www.gnu.org/licenses/>.
18-
194

205
"""Custom exceptions."""
216

src/flickrhistory/fancyflickrhistorydownloader.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,6 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33

4-
# Copyright (C) 2020 Christoph Fink, University of Helsinki
5-
#
6-
# This program is free software; you can redistribute it and/or
7-
# modify it under the terms of the GNU General Public License
8-
# as published by the Free Software Foundation; either version 3
9-
# of the License, or (at your option) any later version.
10-
#
11-
# This program is distributed in the hope that it will be useful,
12-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-
# GNU General Public License for more details.
15-
#
16-
# You should have received a copy of the GNU General Public License
17-
# along with this program; if not, see <http://www.gnu.org/licenses/>.
18-
194

205
"""
216
Download (all) georeferenced flickr posts.

0 commit comments

Comments
 (0)