q) ftp recommendation

Does q support calling out to FTP? or should I just make a python script and call that from q?

eg.

q)\ftp server.example.com

or 

q)\dostuff.py

q does not

wget will get ftp so you can

q)\wget ftp://user:pass@ftp.com/dir/file.csv

as ss points out, q doesn’t support ftp (but it does support http)