This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import urllib, urllib2 | |
| url = '<IDRIVE SERVER LOCATION>/evs/getFolderDetails' | |
| params = urllib.urlencode({ | |
| 'uid': <IDRIVE USER ID>, | |
| 'pwd': <IDRIVE USER PASSWORD>, | |
| 'p': <PATH ON IDRIVE SERVER> | |
| }) | |
| result = urllib.urlopen(url, params).read() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import urllib, urllib2 | |
| url = '<IDRIVE SERVER LOCATION>/evs/getAccountQuota' | |
| params = urllib.urlencode({ | |
| 'uid': <IDRIVE USER ID>, | |
| 'pwd': <IDRIVE USER PASSWORD> | |
| }) | |
| result = urllib.urlopen(url, params).read() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import urllib, urllib2 | |
| url = '<IDRIVE SERVER LOCATION>/evs/downloadEvent' | |
| params = urllib.urlencode({ | |
| 'uid': <IDRIVE USER ID>, | |
| 'pwd': <IDRIVE USER PASSWORD>, | |
| 'month' : <MONTH OF EVENT>, | |
| 'year': <YEAR OF EVENT>, | |
| 'eventid': <ID OF EVENT> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import urllib, urllib2 | |
| url = '<IDRIVE SERVER LOCATION>/evs/getEvents' | |
| params = urllib.urlencode({ | |
| 'uid': <IDRIVE USER ID>, | |
| 'pwd': <IDRIVE USER PASSWORD>, | |
| 'month' : <MONTH OF EVENTS>, | |
| 'year': <YEAR OF EVENTS> | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import urllib, urllib2 | |
| url = '<IDRIVE SERVER LOCATION>/evs/browseFolder' | |
| params = urllib.urlencode({ | |
| 'uid': <IDRIVE USER ID>, | |
| 'pwd': <IDRIVE USER PASSWORD>, | |
| 'p': <PATH ON IDRIVE SERVER> | |
| }) | |
| result = urllib.urlopen(url, params).read() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import urllib, urllib2 | |
| url = '<IDRIVE SERVER LOCATION>/evs/deleteFile' | |
| params = urllib.urlencode({ | |
| 'uid': <IDRIVE USER ID>, | |
| 'pwd': <IDRIVE USER PASSWORD>, | |
| 'pvtkey' : <IDRIVE PRIVATE KEY>, | |
| 'p': <PATH ON IDRIVE SERVER>, | |
| 'trash' : <YES TO DELETE FROM RECYLE> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import urllib, urllib2 | |
| url = '<IDRIVE SERVER LOCATION>/evs/emptyTrash' | |
| params = urllib.urlencode({ | |
| 'uid': <IDRIVE USER ID>, | |
| 'pwd': <IDRIVE USER PASSWORD>, | |
| 'pvtkey' : <IDRIVE PRIVATE KEY> | |
| }) | |
| result = urllib.urlopen(url, params).read() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import urllib, urllib2 | |
| url = '<IDRIVE SERVER LOCATION>/evs/putBackFromTrash' | |
| params = urllib.urlencode({ | |
| 'uid': <IDRIVE USER ID>, | |
| 'pwd': <IDRIVE USER PASSWORD>, | |
| 'pvtkey' : <IDRIVE PRIVATE KEY>, | |
| 'p': <PATH ON IDRIVE SERVER> | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import urllib, urllib2 | |
| url = '<IDRIVE SERVER LOCATION>/evs/copyPasteFileFolder' | |
| params = urllib.urlencode({ | |
| 'uid': <IDRIVE USER ID>, | |
| 'pwd': <IDRIVE USER PASSWORD>, | |
| 'pvtkey' : <IDRIVE PRIVATE KEY>, | |
| 'p': <PATH ON IDRIVE SERVER>, | |
| 'fileFolderPaths': <ORIGIN PATH ON IDRIVE SERVER> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import urllib, urllib2 | |
| url = '<IDRIVE SERVER LOCATION>/evs/renameFileFolder' | |
| params = urllib.urlencode({ | |
| 'uid': <IDRIVE USER ID>, | |
| 'pwd': <IDRIVE USER PASSWORD>, | |
| 'pvtkey' : <IDRIVE PRIVATE KEY>, | |
| 'oldpath': <PATH ON IDRIVE SERVER>, | |
| 'newpath': <PATH ON IDRIVE SERVER> |
NewerOlder