I have a python script, the script basically fetch documents from another site. The script is running fine, but I have to change it a little bit, like I want the script to ignore the docs if they have only images. Secondly, I want the script to ignore the documents if they have already been fetched, either based on the created_at date from the documents table or the last date on which script got run. As I have mentioned in the question, would it be possible for me to these changes myself or not, as someone else has written the script? If anyone would like to help me, I'll surely share the code snippet. Thanks in advance :)
web developer
The changes you want to add should be simple to implement. Can you share the script? What type of documents the scripts retrieve?
Nash
Scientific image processing
You can make the changes to the script since Python scripts are not compiled. If you want to add logic to the script, you are going to have to learn Python. The script is retrieving data from a MySQL database and it is difficult to suggest implementations of logic if we do not know what kind of data the script is handling.