Forum: Python Feb 21st, 2008 |
| Replies: 3 Views: 1,627 Re: Python FTP script to upload file Yes I got the solution after few research.
Iam posting my solution for others .
import ftplib
import os
def upload(ftp, file):
ext = os.path.splitext(file)[1]
if ext in (".txt", ".htm",... |
Forum: Python Feb 21st, 2008 |
| Replies: 3 Views: 1,627 Re: Python FTP script to upload file Hi,
Still iam in loop.
Can you please explain , how to send the local file name after passing the command
"ftp.sendcmd('STOR flash')"
thanks for your response |
Forum: Python Feb 21st, 2008 |
| Replies: 3 Views: 1,627 Python FTP script to upload file Hi All,
Currently Iam writing python ftp script to upload a file to FTP Server.
The server where iam going to download a file expects the upload command in this format
"put <filename> flash"
I dont... |
Forum: Python Feb 12th, 2008 |
| Replies: 2 Views: 1,900 |
Forum: Python Feb 11th, 2008 |
| Replies: 7 Views: 713 Re: Python support in Linux I have found standalone executable kit, "PyInstaller". Using this I have made
linux binary & succesfully executed python script in machine where python is not installed.
If any body found wrong in... |
Forum: Python Feb 11th, 2008 |
| Replies: 2 Views: 1,900 |
Forum: Python Feb 11th, 2008 |
| Replies: 4 Views: 885 |
Forum: Python Feb 10th, 2008 |
| Replies: 4 Views: 885 looking for py2exe similar tool in linux!!?? Hi,
Iam look looking some standalone python package for both in windows and linux.
In windows py2exe tool serving my purpose,is there any similar tool i can find in linux.?
Though most of linux... |
Forum: Python Feb 8th, 2008 |
| Replies: 7 Views: 713 |
Forum: Python Feb 8th, 2008 |
| Replies: 7 Views: 713 Python support in Linux Hi,
I would like to know whether linux installed as default in all flavors of linux (redhat,suse) or in customized linux distributions.
is not so is there any other script to be supported in all... |
Forum: Python Feb 7th, 2008 |
| Replies: 2 Views: 801 Re: Python Script for windows & linux Thanks for your information, it seems along with exe file i need to take two more folders build and dist ,only then exe file is running without any dependency. |
Forum: Python Feb 6th, 2008 |
| Replies: 2 Views: 801 Python Script for windows & linux Hi
Currently iam looking for one common script to work both in linux and windows target machines.
The script what i going to write need to be loaded in CD and will be used both in Linux & Windows... |