geopic-tag-reader 1.2.0__py3-none-any.whl → 1.3.1__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.
Files changed (23) hide show
  1. geopic_tag_reader/__init__.py +1 -1
  2. geopic_tag_reader/main.py +4 -1
  3. geopic_tag_reader/reader.py +77 -32
  4. geopic_tag_reader/sequence.py +45 -4
  5. geopic_tag_reader/translations/de/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  6. geopic_tag_reader/translations/de/LC_MESSAGES/geopic_tag_reader.po +5 -1
  7. geopic_tag_reader/translations/en/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  8. geopic_tag_reader/translations/en/LC_MESSAGES/geopic_tag_reader.po +39 -27
  9. geopic_tag_reader/translations/es/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  10. geopic_tag_reader/translations/es/LC_MESSAGES/geopic_tag_reader.po +58 -22
  11. geopic_tag_reader/translations/fi/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  12. geopic_tag_reader/translations/fi/LC_MESSAGES/geopic_tag_reader.po +146 -0
  13. geopic_tag_reader/translations/fr/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  14. geopic_tag_reader/translations/fr/LC_MESSAGES/geopic_tag_reader.po +14 -2
  15. geopic_tag_reader/translations/geopic_tag_reader.pot +38 -26
  16. geopic_tag_reader/translations/ko/LC_MESSAGES/geopic_tag_reader.mo +0 -0
  17. geopic_tag_reader/translations/ko/LC_MESSAGES/geopic_tag_reader.po +158 -0
  18. {geopic_tag_reader-1.2.0.dist-info → geopic_tag_reader-1.3.1.dist-info}/LICENSE +1 -1
  19. {geopic_tag_reader-1.2.0.dist-info → geopic_tag_reader-1.3.1.dist-info}/METADATA +9 -8
  20. geopic_tag_reader-1.3.1.dist-info/RECORD +27 -0
  21. geopic_tag_reader-1.2.0.dist-info/RECORD +0 -23
  22. {geopic_tag_reader-1.2.0.dist-info → geopic_tag_reader-1.3.1.dist-info}/WHEEL +0 -0
  23. {geopic_tag_reader-1.2.0.dist-info → geopic_tag_reader-1.3.1.dist-info}/entry_points.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2022 Geovisio team
3
+ Copyright (c) 2022-2024 Panoramax team
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: geopic-tag-reader
3
- Version: 1.2.0
3
+ Version: 1.3.1
4
4
  Summary: GeoPicTagReader
5
5
  Author-email: Adrien PAVIE <panieravide@riseup.net>
6
6
  Requires-Python: >=3.8
@@ -8,10 +8,11 @@ Description-Content-Type: text/markdown
8
8
  Classifier: License :: OSI Approved :: MIT License
9
9
  Requires-Dist: typer ~= 0.12
10
10
  Requires-Dist: xmltodict ~= 0.13
11
- Requires-Dist: pyexiv2 == 2.8.3
11
+ Requires-Dist: pyexiv2 == 2.15.0
12
12
  Requires-Dist: timezonefinder == 6.2.0
13
13
  Requires-Dist: pytz ~= 2023.3
14
14
  Requires-Dist: types-pytz ~= 2023.3.0.1
15
+ Requires-Dist: types-python-dateutil ~= 2.9.0
15
16
  Requires-Dist: flit ~= 3.8.0 ; extra == "build"
16
17
  Requires-Dist: black ~= 24.3 ; extra == "dev"
17
18
  Requires-Dist: mypy ~= 1.9 ; extra == "dev"
@@ -31,12 +32,12 @@ Provides-Extra: write-exif
31
32
 
32
33
  # ![Panoramax](https://upload.wikimedia.org/wikipedia/commons/thumb/a/a9/Panoramax.svg/40px-Panoramax.svg.png) Panoramax
33
34
 
34
- __Panoramax__ is a digital resource for sharing and exploiting 📍📷 field photos. Anyone can take photographs of places visible from the public streets and contribute them to the Panoramax database. This data is then freely accessible and reusable by all. More information available at [gitlab.com/panoramax](https://gitlab.com/panoramax) and [panoramax.fr](https://panoramax.fr/).
35
+ __Panoramax__ is a digital resource for sharing and using 📍📷 field photos. Anyone can take photographs of places visible from the public streets and contribute them to the Panoramax database. This data is then freely accessible and reusable by all. More information available at [gitlab.com/panoramax](https://gitlab.com/panoramax) and [panoramax.fr](https://panoramax.fr/).
35
36
 
36
37
 
37
38
  # 📷 GeoPic Tag Reader
38
39
 
39
- This repository only contains the Python library to __read and write standardized metadata__ from geolocated pictures EXIF metadata. It can be used completely apart from all GeoVisio/Panoramax components for your own projects and needs.
40
+ This repository only contains the Python library to __read and write standardized metadata__ from geolocated pictures EXIF metadata. It can be used completely apart from all Panoramax components for your own projects and needs.
40
41
 
41
42
  ## Features
42
43
 
@@ -56,7 +57,7 @@ pip install geopic_tag_reader
56
57
  geopic-tag-reader --help
57
58
  ```
58
59
 
59
- To know more about install and other options, see [install documentation](./docs/Install.md).
60
+ To know more about install and other options, see [install documentation](./docs/install.md).
60
61
 
61
62
  If at some point you're lost or need help, you can contact us through [issues](https://gitlab.com/panoramax/server/geo-picture-tag-reader/-/issues) or by [email](mailto:panieravide@riseup.net).
62
63
 
@@ -88,7 +89,7 @@ geopic-tag-reader write \
88
89
  --output /path/to/edited_image.jpg
89
90
  ```
90
91
 
91
- [Full documentation is also available here](./docs/CLI_USAGE.md).
92
+ [Full documentation is also available here](./docs/index.md).
92
93
 
93
94
  ### As Python library
94
95
 
@@ -119,14 +120,14 @@ editedImg.write(editedImgBytes)
119
120
  editedImg.close()
120
121
  ```
121
122
 
122
- [Full documentation is also available here](./docs/API_USAGE.md).
123
+ [Full documentation is also available here](./docs/tech/api_reference.md).
123
124
 
124
125
 
125
126
  ## Contributing
126
127
 
127
128
  Pull requests are welcome. For major changes, please open an [issue](https://gitlab.com/panoramax/server/geo-picture-tag-reader/-/issues) first to discuss what you would like to change.
128
129
 
129
- More information about developing is available in [documentation](./docs/Develop.md).
130
+ More information about developing is available in [documentation](./docs/develop.md).
130
131
 
131
132
 
132
133
  ## ⚖️ License
@@ -0,0 +1,27 @@
1
+ geopic_tag_reader/__init__.py,sha256=QI8Hrx0Lw4UoUSLBIPQPuGERSOY9BfR1P96fekycjKg,47
2
+ geopic_tag_reader/camera.py,sha256=Nw6dQjnrUCCOXujjk8Y7IwjJPMuDf4DAGCmHk0LDfEg,1975
3
+ geopic_tag_reader/i18n.py,sha256=LOLBj7eB_hpHTc5XdMP97EoWdD2kgmkP_uvJJDKEVsU,342
4
+ geopic_tag_reader/main.py,sha256=6Jf2VJCVAyAu-P3HltYMY7ZGXVziJrZguAnHU4bNA9I,3793
5
+ geopic_tag_reader/model.py,sha256=rsWVE3T1kpNsKXX8iv6xb_3PCVY6Ea7iU9WOqUgXklU,129
6
+ geopic_tag_reader/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ geopic_tag_reader/reader.py,sha256=D6sztaJcNDxO3UwQJQXitalVgZzRpccwlYpHdZmWulA,26784
8
+ geopic_tag_reader/sequence.py,sha256=5jQKnYDVQq4VDa09e8xTW9Gf-CvqsijEtx5OCSnvGMU,11180
9
+ geopic_tag_reader/writer.py,sha256=HdZenoY_5Qv1Kq0jedCJhVFDYsv0iQaCzB6necU_LrY,8793
10
+ geopic_tag_reader/translations/geopic_tag_reader.pot,sha256=mso3GeJz5WySK1j0V1AcmTGoucCHObxkmB5Ed_Rrp44,3731
11
+ geopic_tag_reader/translations/de/LC_MESSAGES/geopic_tag_reader.mo,sha256=qxexGigWSIfEn4yIdtqQgd3w15oUc-SsHUScbCe6FDc,3924
12
+ geopic_tag_reader/translations/de/LC_MESSAGES/geopic_tag_reader.po,sha256=QbzpTqoutNRGRMeUa7MZHXnfD92KVMVtxDt-3FUovfQ,5359
13
+ geopic_tag_reader/translations/en/LC_MESSAGES/geopic_tag_reader.mo,sha256=3EE6KpT7G7wdvSRbxCG2dFhxXuD4rtDIAfwuU2EaYVU,3486
14
+ geopic_tag_reader/translations/en/LC_MESSAGES/geopic_tag_reader.po,sha256=uA__mk-m9HJh03TOqFQ3U81LYzSMr0qaV2k_pp366Jk,4970
15
+ geopic_tag_reader/translations/es/LC_MESSAGES/geopic_tag_reader.mo,sha256=MXMSCqwwP6HEs8R2NuLPA3YBENij2dK8jSsTExPeOrI,3883
16
+ geopic_tag_reader/translations/es/LC_MESSAGES/geopic_tag_reader.po,sha256=U9ko5JAVz9ZrfUCh2vPLzwoy66--9n3g9Rpg5BOtldk,5511
17
+ geopic_tag_reader/translations/fi/LC_MESSAGES/geopic_tag_reader.mo,sha256=X_KeDXDlO50JFKNCkh6TKjQcvuGH48CKbmKjK-o2cfU,321
18
+ geopic_tag_reader/translations/fi/LC_MESSAGES/geopic_tag_reader.po,sha256=2Gz8bcblT976JFPd0Q_FRq45__on0Fi1GIw6ocY-I64,3499
19
+ geopic_tag_reader/translations/fr/LC_MESSAGES/geopic_tag_reader.mo,sha256=dWd1_G_hoVFTPGin1E5qfhNEHcB6Ivo1Qj9ZN7CAB4Y,4620
20
+ geopic_tag_reader/translations/fr/LC_MESSAGES/geopic_tag_reader.po,sha256=0C2az512LN-CmenWFwhOoNMakQv1YB0mwou6TYDnSys,6335
21
+ geopic_tag_reader/translations/ko/LC_MESSAGES/geopic_tag_reader.mo,sha256=2QPpe5bgqntybugUG53YzUzfLmsgcFupeJv-kz05LWs,321
22
+ geopic_tag_reader/translations/ko/LC_MESSAGES/geopic_tag_reader.po,sha256=ct7bi-IQJ1Fsosfe41ACu0jf5nfV8cmmEFJWaMPguoQ,3704
23
+ geopic_tag_reader-1.3.1.dist-info/entry_points.txt,sha256=c9YwjCNhxveDf-61_aSRlzcpoutvM6KQCerlzaVt_JU,64
24
+ geopic_tag_reader-1.3.1.dist-info/LICENSE,sha256=OCZiFd7ok-n5jly2LwP7hEjuUukkvSt5iMkK_cY_00o,1076
25
+ geopic_tag_reader-1.3.1.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
26
+ geopic_tag_reader-1.3.1.dist-info/METADATA,sha256=0XnzC3WaWmeK2JAk8N-lf7dK1aKd6US3hVpxWJclM0Y,4616
27
+ geopic_tag_reader-1.3.1.dist-info/RECORD,,
@@ -1,23 +0,0 @@
1
- geopic_tag_reader/__init__.py,sha256=6PRUY4POmmWEzs46rNV709zW1_7O0CL9nq1l5HxGeAE,47
2
- geopic_tag_reader/camera.py,sha256=Nw6dQjnrUCCOXujjk8Y7IwjJPMuDf4DAGCmHk0LDfEg,1975
3
- geopic_tag_reader/i18n.py,sha256=LOLBj7eB_hpHTc5XdMP97EoWdD2kgmkP_uvJJDKEVsU,342
4
- geopic_tag_reader/main.py,sha256=zagllZZBEqVLXzYfmNNKCtmaoQ8zm_nciscPZfEk9js,3589
5
- geopic_tag_reader/model.py,sha256=rsWVE3T1kpNsKXX8iv6xb_3PCVY6Ea7iU9WOqUgXklU,129
6
- geopic_tag_reader/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- geopic_tag_reader/reader.py,sha256=1VdI-Slw2Y1ynsZ_umXjKa38SrDEuUAcyHuPN6ZS40o,25160
8
- geopic_tag_reader/sequence.py,sha256=yk3znpwJ8_8spbk4NS7cO1d7mnyAgKRTg0BQa-Jes0E,9203
9
- geopic_tag_reader/writer.py,sha256=HdZenoY_5Qv1Kq0jedCJhVFDYsv0iQaCzB6necU_LrY,8793
10
- geopic_tag_reader/translations/geopic_tag_reader.pot,sha256=JNAzpWxfPjOtsHyjt4CdmpRUTWt2nEeQeb0syTMQRKg,3526
11
- geopic_tag_reader/translations/de/LC_MESSAGES/geopic_tag_reader.mo,sha256=8l9nz6T59zzk3p8J2KWY98wlCJGh3wcNxFX9-SylI38,3891
12
- geopic_tag_reader/translations/de/LC_MESSAGES/geopic_tag_reader.po,sha256=IN4s_dd1KiWapkAUItw17d2hkVMxQvLZ-cjF0rRFI0M,5292
13
- geopic_tag_reader/translations/en/LC_MESSAGES/geopic_tag_reader.mo,sha256=iid5n0NBCVgqfbQsZzlE3MJE_wRDIqJrZInVoF6XPzw,3368
14
- geopic_tag_reader/translations/en/LC_MESSAGES/geopic_tag_reader.po,sha256=9QTlh5Uj3JTHcpTfWFcGunQrTBe0bslRWxWkL4rEZ7A,4745
15
- geopic_tag_reader/translations/es/LC_MESSAGES/geopic_tag_reader.mo,sha256=pp2rm7hKmdBWStn-uLEwH5_yPMi3satuzU_H_EfLVoY,321
16
- geopic_tag_reader/translations/es/LC_MESSAGES/geopic_tag_reader.po,sha256=O-22SB_bJlqYELYc-Cmf1MxoniW6PvE5nKA_Vkl2oC4,3563
17
- geopic_tag_reader/translations/fr/LC_MESSAGES/geopic_tag_reader.mo,sha256=QX_oy4YPYibj39MoJnLVJaj6a1TFEKh97P3bH3tXNxE,4511
18
- geopic_tag_reader/translations/fr/LC_MESSAGES/geopic_tag_reader.po,sha256=VG_7k8g4o07IFYoUvSeMHQRYpswgVRV8eKp0ITf4DYU,6148
19
- geopic_tag_reader-1.2.0.dist-info/entry_points.txt,sha256=c9YwjCNhxveDf-61_aSRlzcpoutvM6KQCerlzaVt_JU,64
20
- geopic_tag_reader-1.2.0.dist-info/LICENSE,sha256=oHWDwXkJJb9zJzThMN3F9Li4yFhz1qxOUByouY7L3bI,1070
21
- geopic_tag_reader-1.2.0.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
22
- geopic_tag_reader-1.2.0.dist-info/METADATA,sha256=yp8r8o5k2cfFHKaAaNH4iXbFLpAQCOAoxRd4-4An0Qc,4578
23
- geopic_tag_reader-1.2.0.dist-info/RECORD,,