mapillary-downloader 0.1.1__py3-none-any.whl → 0.1.2__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mapillary_downloader
3
- Version: 0.1.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-download --token YOUR_TOKEN --username YOUR_USERNAME --output ./downloads
52
+ mapillary-downloader --token YOUR_TOKEN --username YOUR_USERNAME --output ./downloads
53
53
  ```
54
54
 
55
- Options:
56
- - `--token`: Your Mapillary API access token (required)
57
- - `--username`: Your Mapillary username (required)
58
- - `--output`: Output directory (default: ./mapillary_data)
59
- - `--quality`: Image quality - 256, 1024, 2048, or original (default: original)
60
- - `--bbox`: Bounding box filter: west,south,east,north
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
- ## Features
69
-
70
- - **Resume capability**: Interrupt and restart anytime - it tracks what's downloaded
71
- - **EXIF restoration**: Restores GPS, camera, and timestamp metadata that Mapillary stripped
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
 
@@ -3,8 +3,8 @@ mapillary_downloader/__main__.py,sha256=xKYhamK0HYXqx98fGb5CVOEw0syURWgX7jnFIdsK
3
3
  mapillary_downloader/client.py,sha256=w936htOireWnKgfXJDYls-umYxOzr0FQ4yzklQ6fPM0,4315
4
4
  mapillary_downloader/downloader.py,sha256=n5Y7aAoin3vBa_H3et9hpTNoPrEarbU_LdnHT619c5Y,4216
5
5
  mapillary_downloader/exif_writer.py,sha256=Bn1u3QULfHtae86FnUGcqN450NccJwtwW9wVaSRyx9E,4615
6
- mapillary_downloader-0.1.1.dist-info/entry_points.txt,sha256=qJK_zi0at7Mi6uzrcQ2U8Q31bG9NhRfhKphvIytjiIY,73
7
- mapillary_downloader-0.1.1.dist-info/licenses/LICENSE.md,sha256=7_BIuQ-veOrsF-WarH8kTkm0-xrCLvJ1PFE1C4Ebs64,146
8
- mapillary_downloader-0.1.1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
9
- mapillary_downloader-0.1.1.dist-info/METADATA,sha256=ZoxfQ9-RBDxfyl1ws9eGIprLwZMqX3kumH20ttzf8GU,3114
10
- mapillary_downloader-0.1.1.dist-info/RECORD,,
6
+ mapillary_downloader-0.1.2.dist-info/entry_points.txt,sha256=PdYtxOXHMJrUhmiPO4G-F98VuhUI4MN9D_T4KPrVZ5w,75
7
+ mapillary_downloader-0.1.2.dist-info/licenses/LICENSE.md,sha256=7_BIuQ-veOrsF-WarH8kTkm0-xrCLvJ1PFE1C4Ebs64,146
8
+ mapillary_downloader-0.1.2.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
9
+ mapillary_downloader-0.1.2.dist-info/METADATA,sha256=07TO0LnPoOTq7gI6G1ZmCe2gbuA3Gzy0yV5rXAEeXlI,3013
10
+ mapillary_downloader-0.1.2.dist-info/RECORD,,
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ mapillary-downloader=mapillary_downloader.__main__:main
3
+
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- mapillary-download=mapillary_downloader.__main__:main
3
-