flashpod 0.1.5__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.
flashpod/__init__.py ADDED
@@ -0,0 +1,7 @@
1
+ """flashpod — command-line iPod sync + card-flashing tooling for early
2
+ (1st/2nd/3rd-generation, FireWire-era) iPods.
3
+
4
+ Pure Python, no libgpod. See the README for usage.
5
+ """
6
+
7
+ __version__ = "0.1.5"
flashpod/__main__.py ADDED
@@ -0,0 +1,8 @@
1
+ """Entry point for `python -m flashpod`."""
2
+
3
+ import sys
4
+
5
+ from .cli import main
6
+
7
+ if __name__ == "__main__":
8
+ sys.exit(main())