mirror of
https://github.com/clockworkpi/launcher_deot.git
synced 2025-12-13 16:08:58 +01:00
15 lines
296 B
Python
Executable File
15 lines
296 B
Python
Executable File
#! /usr/bin/env python
|
|
|
|
"""Notify that aria2 download is complete.
|
|
|
|
This implements the --on-download-complete hook interface.
|
|
"""
|
|
|
|
import sys
|
|
|
|
# ['/Users/csx/GitProject/snowmusic/pyaria2-jsonrpc/hook.py', 'e3f97be6d4490a5a', '1', './temp/aa.mp3']
|
|
Argv = sys.argv
|
|
|
|
def Hook(Argv):
|
|
print Argv
|