File: deleteobject.py

package info (click to toggle)
pymtp 0.0.4-4
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 212 kB
  • sloc: python: 734; makefile: 7
file content (31 lines) | stat: -rwxr-xr-x 512 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env python
#
# PyMTP demo scripts
# (c) 2008 Nick Devito
# Released under the GPL v3 or later.
#

import sys
sys.path.insert(0, "../")

import pymtp

def usage():
	print "Usage: %s <object ids>" % (sys.argv[0])

def main():
	if len(sys.argv) <= 1:
		usage()
		sys.exit(2)
		
	mtp = pymtp.MTP()
	mtp.connect()

	object_ids = sys.argv[1:]
	for object_id in object_ids:
		mtp.delete_object(int(object_id))
		print "Deleted object %s" % (object_id)
	mtp.disconnect()
		
if __name__ == "__main__":
	main()