Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pfalcon/pycopy-dlman
Very simple download manager based on wget and Pycopy
https://github.com/pfalcon/pycopy-dlman
micropython pycopy
Last synced: 11 days ago
JSON representation
Very simple download manager based on wget and Pycopy
- Host: GitHub
- URL: https://github.com/pfalcon/pycopy-dlman
- Owner: pfalcon
- Created: 2014-07-16T20:33:13.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2019-07-21T14:29:49.000Z (over 5 years ago)
- Last Synced: 2024-10-11T15:10:58.110Z (about 1 month ago)
- Topics: micropython, pycopy
- Language: Python
- Homepage: http://forum.micropython.org/viewtopic.php?f=5&t=221
- Size: 5.86 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
dlman, a simple download manager frontend for wget
==================================================This is simple, but complete and deployable Pycopy
(https://github.com/pfalcon/pycopy) application for embedded Linux
systems.The application, running as a daemon, watches a configured directory
for new files, each containing a URL of file to download. Once found,
URL is downloaded using wget with user-defined options. The idea is
that you will run dlman or NAS-like system, with input directory for
URLs and output directory for download files mounted over network
for easy access with your other computing devices and media players.Basic error handling is implemented, for example after transient network
error, download will continue after pause, and yet permanent errors
should be detected and not lead to infinite download loops. All the
functionality above is very basic, and leaves much room for elaboration
and improvement.dlman can be deployed to any embeded Linux system accessible via SSH and
which has Pycopy already installed.To deploy the app, edit variables at the top of the Makefile and
application config (sample is provided as config.py.nas). And run
"make deploy". As first step of the process, dependency modules
(as specified in requirements.txt) will be downloaded from Python
packages repository, PyPI (https://pypi.python.org/).To run dlman, start dlman.sh (it will log to dlman.log). To make it keep
running after you log out from target system, it should be run as
"nohup ./dlman.sh". Alternatively, dlman.sh can be run using startup
scripts during system boot (exact details depend on particular Linux
system used).WARNING: Currently, dlman is not suitable for production use (for
example, it uses directory polling to find new files to download, and
it was found this may preclude disk drives to go into suspend state
on a real NAS system). So, currently it is mostly example of how to
deploy a Pycopy application. The functionality of dlman will be
elaborated as time permits.