File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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"""
216Download (all) georeferenced flickr posts.
You can’t perform that action at this time.
0 commit comments