Tagged Questions

5
votes
3answers
1k views

How do I copy a remote image in python?

I need to copy a remote image (for example http://site.com/image.jpg) to my server. Is this possible? How do you verify that this is indeed an image?
2
votes
4answers
117 views

How to write a call back function for ignore in shutil.copytree

I am relatively new to python. I am trying to copy a directory to another directory maintaining the structure. I am using shutil.copytree(src, dst, symlinks=False, ignore=None, ...
2
votes
2answers
410 views

Python: Checking when shutil.copyfile is done

I have a such code: for file in file_list: shutil.copyfile(file,newpath) #do further actions And here is the question, at #do further actions I use the copied f iles thus I need to make sure ...
0
votes
1answer
48 views

copying file with shutil.copy2 in python creates file of zero Kbs

hi i am trying to copy a file using shutil.copy2 but it creates a file of zero Kb at the destination..i am using mac os 10.6.7 .The problem is not with all files but some specific files only .The ...
0
votes
1answer
161 views

determing file object size before using file object

I am attempting to determine the size of a downloaded file in python before parsing and manipulating it with BeautifulSoup. (I intend to update to ElementTree soon, but having briefly played with it, ...