summaryrefslogtreecommitdiffstats
path: root/4grab.py
Commit message (Collapse)AuthorAgeFilesLines
* Sorting, multi category, multi resolutionGravatar ryuslash2010-03-191-2/+21
| | | | | | | | | | After a file has been downloaded a callback function can now be called. The callback function I call checks to see if the resolution of the image appears in the collection of resolutions that has been entered in the configuration file and deletes/moves accordingly. If a file can not be read (which I have noticed happens sometimes), it is removed, not copied and not archived so that it can be retried later. 4grab got a new command-line option, -s --sorter, to sort out old images, running python sorter.py has the same effect, but this seemed pretties. theoretically multiple categories could now be entered into the configuration file seperated by ',', but this hasn't been tested yet. mutliple resolutions could be entered into the configuration file, seperated by ',' like so: 1680x1050,1920x1200. Configuration now checks to see if all the necessary properties are available in the configuration file, if one is missing, it tries to create it.
* optioncreator, extra optionsGravatar ryuslash2010-03-171-97/+104
| | | | | config now has an optioncreator property that will allow another module to select how to prompt for a property resolutions and archive options have been added to config file for sorting functionality
* Disconnected the property creation functionGravatar ryuslash2010-03-161-7/+16
| | | | The function used to create a new property has been changed to be a callback function, so that later on a UI might use a dialog.
* KeyboardInterrupt, 80 columnsHEADmasterGravatar ryuslash2010-03-121-29/+54
| | | | | Keyboard Interruption (CTRL+C) should now be handled gracefully Tried making the 4grab.py file no more than 80 columns wide
* /bin/env seems less reliable than /usr/bin/pythonGravatar ryuslash2010-03-101-1/+1
|
* MergedGravatar ryuslash2010-03-071-0/+3
|\
| * Who knows what the hell I did this timeGravatar ryuslash2010-02-121-0/+3
| |
* | Removed download.py dependencyGravatar ryuslash2010-03-071-15/+33
|/ | | | download.py no longer requires progressbar.py, it now contains a class that accepts another class as a parameter, this may be useful later when adding different ways of interaction
* Stopped saying Failed and Skipped thingsGravatar ryuslash2010-02-121-3/+15
| | | | Now it summarizes at the end
* Added a wizardGravatar ryuslash2010-02-111-3/+38
| | | | The wizard uses his robe and wizard hat to help you download images
* Added --threadGravatar ryuslash2010-02-111-1/+14
| | | | | | With --thread a signle thread ID or thread URL can be entered. If thread is a URL, it will download it. If thread is an ID, a category must also be set.
* Added --categoryGravatar ryuslash2010-02-111-0/+7
| | | | With --category, a category can be specified which will be downloaded, but only that run, next time the configured category will take over again
* Added license info and READMEGravatar ryuslash2010-02-091-1/+28
|
* configuration settings and startfileGravatar ryuslash2010-02-091-1/+11
| | | | | Configuration Settings can now be changed with the -e command line argument execution of 4grab has been moved to 4grab.py, but should also still work with download.py
* working on the command-line arguments hereGravatar ryuslash2010-02-091-0/+17