| 146 |
farthen |
1 |
#!/usr/bin/env python
|
|
|
2 |
#
|
|
|
3 |
#
|
|
|
4 |
# Copyright 2010 TheSeven
|
|
|
5 |
#
|
|
|
6 |
#
|
|
|
7 |
# This file is part of TheSeven's iPod tools.
|
|
|
8 |
#
|
|
|
9 |
# TheSeven's iBugger is free software: you can redistribute it and/or
|
|
|
10 |
# modify it under the terms of the GNU General Public License as
|
|
|
11 |
# published by the Free Software Foundation, either version 2 of the
|
|
|
12 |
# License, or (at your option) any later version.
|
|
|
13 |
#
|
|
|
14 |
# TheSeven's iBugger is distributed in the hope that it will be useful,
|
|
|
15 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
16 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
17 |
# See the GNU General Public License for more details.
|
|
|
18 |
#
|
|
|
19 |
# You should have received a copy of the GNU General Public License along
|
|
|
20 |
# with TheSeven's iPod tools. If not, see <http://www.gnu.org/licenses/>.
|
|
|
21 |
#
|
|
|
22 |
#
|
|
|
23 |
|
|
|
24 |
|
|
|
25 |
import sys
|
|
|
26 |
import libipoddfu
|
|
|
27 |
|
|
|
28 |
if len(sys.argv) != 2:
|
|
|
29 |
print "Syntax: ipoddfu.py <file>"
|
|
|
30 |
exit(2)
|
|
|
31 |
|
|
|
32 |
dev = libipoddfu.ipoddfu()
|
|
|
33 |
dev.uploadfile(sys.argv[1])
|