1234567891011121314151617181920212223242526272829303132333435363738 |
- #!/usr/bin/env python
- # Ducker - search with DuckDuckGo from the command line
- # Copyright (C) 2016 Jorge Maldonado Ventura
- # This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- # You should have received a copy of the GNU General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- import subprocess
- import time
- SLEEP_INTERVAL = 4
- subprocess.Popen(['../run_ducker.py', 'example'])
- time.sleep(SLEEP_INTERVAL)
- subprocess.Popen(['../run_ducker.py', '-w', 'web'])
- time.sleep(SLEEP_INTERVAL)
- subprocess.Popen(['../run_ducker.py', '-i', 'image'])
- time.sleep(SLEEP_INTERVAL)
- subprocess.Popen(['../run_ducker.py', '-v', 'video'])
- time.sleep(SLEEP_INTERVAL)
- subprocess.Popen(['../run_ducker.py', '-n', 'example news'])
- time.sleep(SLEEP_INTERVAL)
- subprocess.Popen(['../run_ducker.py', '-m', 'meaning'])
- time.sleep(SLEEP_INTERVAL)
- subprocess.Popen(['../run_ducker.py', '-a', 'music'])
- time.sleep(SLEEP_INTERVAL)
- subprocess.Popen(['../run_ducker.py', '-i', '--multiple-search', '1', '2'])
|