mapillary-downloader 0.1.1__tar.gz → 0.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mapillary_downloader-0.1.1 → mapillary_downloader-0.1.2}/PKG-INFO +13 -18
- mapillary_downloader-0.1.2/README.md +61 -0
- {mapillary_downloader-0.1.1 → mapillary_downloader-0.1.2}/pyproject.toml +2 -2
- mapillary_downloader-0.1.1/README.md +0 -66
- {mapillary_downloader-0.1.1 → mapillary_downloader-0.1.2}/LICENSE.md +0 -0
- {mapillary_downloader-0.1.1 → mapillary_downloader-0.1.2}/src/mapillary_downloader/__init__.py +0 -0
- {mapillary_downloader-0.1.1 → mapillary_downloader-0.1.2}/src/mapillary_downloader/__main__.py +0 -0
- {mapillary_downloader-0.1.1 → mapillary_downloader-0.1.2}/src/mapillary_downloader/client.py +0 -0
- {mapillary_downloader-0.1.1 → mapillary_downloader-0.1.2}/src/mapillary_downloader/downloader.py +0 -0
- {mapillary_downloader-0.1.1 → mapillary_downloader-0.1.2}/src/mapillary_downloader/exif_writer.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: mapillary_downloader
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.2
|
4
4
|
Summary: Download your Mapillary data before it's gone
|
5
5
|
Author-email: Gareth Davidson <gaz@bitplane.net>
|
6
6
|
Requires-Python: >=3.10
|
@@ -49,28 +49,23 @@ make install
|
|
49
49
|
First, get your Mapillary API access token from https://www.mapillary.com/dashboard/developers
|
50
50
|
|
51
51
|
```bash
|
52
|
-
mapillary-
|
52
|
+
mapillary-downloader --token YOUR_TOKEN --username YOUR_USERNAME --output ./downloads
|
53
53
|
```
|
54
54
|
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
55
|
+
| option | because | default |
|
56
|
+
| ------------- | ------------------------------------- | ------------------ |
|
57
|
+
| `--token` | Your Mapillary API access token | None (required) |
|
58
|
+
| `--username` | Your Mapillary username | None (required) |
|
59
|
+
| `--output` | Output directory | `./mapillary_data` |
|
60
|
+
| `--quality` | 256, 1024, 2048 or original | `original` |
|
61
|
+
| `--bbox` | `west,south,east,north` | `None` |
|
61
62
|
|
62
63
|
The downloader will:
|
63
|
-
- Fetch all your uploaded images from Mapillary
|
64
|
-
- Download full-resolution images organized by sequence
|
65
|
-
- Inject EXIF metadata (GPS coordinates, camera info, timestamps, compass direction)
|
66
|
-
- Save progress so you can safely resume if interrupted
|
67
64
|
|
68
|
-
|
69
|
-
|
70
|
-
-
|
71
|
-
-
|
72
|
-
- **Atomic writes**: Progress tracking uses atomic file operations to prevent corruption
|
73
|
-
- **Organized output**: Images organized by sequence ID with metadata in JSONL format
|
65
|
+
* 💾 Fetch all your uploaded images from Mapillary
|
66
|
+
- 📷 Download full-resolution images organized by sequence
|
67
|
+
- 📜 Inject EXIF metadata (GPS coordinates, camera info, timestamps, compass direction)
|
68
|
+
- 🛟 Save progress so you can safely resume if interrupted
|
74
69
|
|
75
70
|
## Development
|
76
71
|
|
@@ -0,0 +1,61 @@
|
|
1
|
+
# Mapillary Downloader
|
2
|
+
|
3
|
+
Download your Mapillary data before it's gone.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
```bash
|
8
|
+
pip install mapillary-downloader
|
9
|
+
```
|
10
|
+
|
11
|
+
Or from source:
|
12
|
+
|
13
|
+
```bash
|
14
|
+
make install
|
15
|
+
```
|
16
|
+
|
17
|
+
## Usage
|
18
|
+
|
19
|
+
First, get your Mapillary API access token from https://www.mapillary.com/dashboard/developers
|
20
|
+
|
21
|
+
```bash
|
22
|
+
mapillary-downloader --token YOUR_TOKEN --username YOUR_USERNAME --output ./downloads
|
23
|
+
```
|
24
|
+
|
25
|
+
| option | because | default |
|
26
|
+
| ------------- | ------------------------------------- | ------------------ |
|
27
|
+
| `--token` | Your Mapillary API access token | None (required) |
|
28
|
+
| `--username` | Your Mapillary username | None (required) |
|
29
|
+
| `--output` | Output directory | `./mapillary_data` |
|
30
|
+
| `--quality` | 256, 1024, 2048 or original | `original` |
|
31
|
+
| `--bbox` | `west,south,east,north` | `None` |
|
32
|
+
|
33
|
+
The downloader will:
|
34
|
+
|
35
|
+
* 💾 Fetch all your uploaded images from Mapillary
|
36
|
+
- 📷 Download full-resolution images organized by sequence
|
37
|
+
- 📜 Inject EXIF metadata (GPS coordinates, camera info, timestamps, compass direction)
|
38
|
+
- 🛟 Save progress so you can safely resume if interrupted
|
39
|
+
|
40
|
+
## Development
|
41
|
+
|
42
|
+
```bash
|
43
|
+
make dev # Setup dev environment
|
44
|
+
make test # Run tests
|
45
|
+
make coverage # Run tests with coverage
|
46
|
+
```
|
47
|
+
|
48
|
+
## Links
|
49
|
+
|
50
|
+
* [🏠 home](https://bitplane.net/dev/python/mapillary_downloader)
|
51
|
+
* [📖 pydoc](https://bitplane.net/dev/python/mapillary_downloader/pydoc)
|
52
|
+
* [🐍 pypi](https://pypi.org/project/mapillary-downloader)
|
53
|
+
* [🐱 github](https://github.com/bitplane/mapillary_downloader)
|
54
|
+
|
55
|
+
## License
|
56
|
+
|
57
|
+
WTFPL with one additional clause
|
58
|
+
|
59
|
+
1. Don't blame me
|
60
|
+
|
61
|
+
Do wtf you want, but don't blame me when it breaks.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
[project]
|
2
2
|
name = "mapillary_downloader"
|
3
3
|
description = "Download your Mapillary data before it's gone"
|
4
|
-
version = "0.1.
|
4
|
+
version = "0.1.2"
|
5
5
|
authors = [
|
6
6
|
{ name = "Gareth Davidson", email = "gaz@bitplane.net" }
|
7
7
|
]
|
@@ -28,7 +28,7 @@ Repository = "https://github.com/bitplane/mapillary_downloader"
|
|
28
28
|
Issues = "https://github.com/bitplane/mapillary_downloader/issues"
|
29
29
|
|
30
30
|
[project.scripts]
|
31
|
-
mapillary-
|
31
|
+
mapillary-downloader = "mapillary_downloader.__main__:main"
|
32
32
|
|
33
33
|
[project.optional-dependencies]
|
34
34
|
dev = [
|
@@ -1,66 +0,0 @@
|
|
1
|
-
# Mapillary Downloader
|
2
|
-
|
3
|
-
Download your Mapillary data before it's gone.
|
4
|
-
|
5
|
-
## Installation
|
6
|
-
|
7
|
-
```bash
|
8
|
-
pip install mapillary-downloader
|
9
|
-
```
|
10
|
-
|
11
|
-
Or from source:
|
12
|
-
|
13
|
-
```bash
|
14
|
-
make install
|
15
|
-
```
|
16
|
-
|
17
|
-
## Usage
|
18
|
-
|
19
|
-
First, get your Mapillary API access token from https://www.mapillary.com/dashboard/developers
|
20
|
-
|
21
|
-
```bash
|
22
|
-
mapillary-download --token YOUR_TOKEN --username YOUR_USERNAME --output ./downloads
|
23
|
-
```
|
24
|
-
|
25
|
-
Options:
|
26
|
-
- `--token`: Your Mapillary API access token (required)
|
27
|
-
- `--username`: Your Mapillary username (required)
|
28
|
-
- `--output`: Output directory (default: ./mapillary_data)
|
29
|
-
- `--quality`: Image quality - 256, 1024, 2048, or original (default: original)
|
30
|
-
- `--bbox`: Bounding box filter: west,south,east,north
|
31
|
-
|
32
|
-
The downloader will:
|
33
|
-
- Fetch all your uploaded images from Mapillary
|
34
|
-
- Download full-resolution images organized by sequence
|
35
|
-
- Inject EXIF metadata (GPS coordinates, camera info, timestamps, compass direction)
|
36
|
-
- Save progress so you can safely resume if interrupted
|
37
|
-
|
38
|
-
## Features
|
39
|
-
|
40
|
-
- **Resume capability**: Interrupt and restart anytime - it tracks what's downloaded
|
41
|
-
- **EXIF restoration**: Restores GPS, camera, and timestamp metadata that Mapillary stripped
|
42
|
-
- **Atomic writes**: Progress tracking uses atomic file operations to prevent corruption
|
43
|
-
- **Organized output**: Images organized by sequence ID with metadata in JSONL format
|
44
|
-
|
45
|
-
## Development
|
46
|
-
|
47
|
-
```bash
|
48
|
-
make dev # Setup dev environment
|
49
|
-
make test # Run tests
|
50
|
-
make coverage # Run tests with coverage
|
51
|
-
```
|
52
|
-
|
53
|
-
## Links
|
54
|
-
|
55
|
-
* [🏠 home](https://bitplane.net/dev/python/mapillary_downloader)
|
56
|
-
* [📖 pydoc](https://bitplane.net/dev/python/mapillary_downloader/pydoc)
|
57
|
-
* [🐍 pypi](https://pypi.org/project/mapillary-downloader)
|
58
|
-
* [🐱 github](https://github.com/bitplane/mapillary_downloader)
|
59
|
-
|
60
|
-
## License
|
61
|
-
|
62
|
-
WTFPL with one additional clause
|
63
|
-
|
64
|
-
1. Don't blame me
|
65
|
-
|
66
|
-
Do wtf you want, but don't blame me when it breaks.
|
File without changes
|
{mapillary_downloader-0.1.1 → mapillary_downloader-0.1.2}/src/mapillary_downloader/__init__.py
RENAMED
File without changes
|
{mapillary_downloader-0.1.1 → mapillary_downloader-0.1.2}/src/mapillary_downloader/__main__.py
RENAMED
File without changes
|
{mapillary_downloader-0.1.1 → mapillary_downloader-0.1.2}/src/mapillary_downloader/client.py
RENAMED
File without changes
|
{mapillary_downloader-0.1.1 → mapillary_downloader-0.1.2}/src/mapillary_downloader/downloader.py
RENAMED
File without changes
|
{mapillary_downloader-0.1.1 → mapillary_downloader-0.1.2}/src/mapillary_downloader/exif_writer.py
RENAMED
File without changes
|