2 |
3 | {% if emoji == 'user' %}
4 |
5 |
6 |
{{ title }}
7 |
8 |
9 |
10 | {% elif emoji == 'file' %}
11 |
{{ title }}
12 |
13 | {% else %}
14 |
{{ title }}
15 |
16 | {% endif %}
17 |
18 |
19 |
2 |
17 |
22 |
23 | {% if tweet.place %}
24 |
25 |
26 | {% include 'place-tab.html.j2' %}
27 |
28 |
29 | {% endif %}
30 |
31 | {% if tweet.coordinates %}
32 |
33 |
34 | {% include 'coordinates-tab.html.j2' %}
35 |
36 |
37 | {% endif %}
38 |
39 |
40 |
--------------------------------------------------------------------------------
/tweetsmapper/resources/templates/tweet.html.j2:
--------------------------------------------------------------------------------
1 |
82 |
--------------------------------------------------------------------------------
/tweetsmapper/run.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python
2 | # -*- coding: utf-8 -*-
3 |
4 | # tweetsmapper
5 | # Copyright (C) 2019 r3mlab
6 | # https://github.com/r3mlab/tweetsmapper
7 | #
8 | # This program is free software: you can redistribute it and/or modify
9 | # it under the terms of the GNU General Public License as published by
10 | # the Free Software Foundation, either version 3 of the License, or
11 | # (at your option) any later version.
12 | #
13 | # This program is distributed in the hope that it will be useful,
14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 | # GNU General Public License for more details.
17 | #
18 | # You should have received a copy of the GNU General Public License
19 | # along with this program. If not, see