8 days?
there are a few ways you can pass data to pd. sockets is the first thing that comes to mind using [netsend] and [netreceive] on the pd end and nc in a bash script. or even just pass via txt files. very easy with [textfile].
------spoiler alert--------
as a matter of fact, my bash script would look like this:
# executable called grabit.sh
#!/bin/bash
wget www.path.to/the/object/i/want -O data.txt
echo ";" >> data.txt
cat data.txt | nc localhost 1745
#/sh#
and my corresponding puredata patch would include:
#N canvas 623 279 450 300 10;
#X obj 239 127 netreceive 1745;
#X obj 239 153 print here:;
#X msg 111 66 ./grabit.sh;
#X obj 111 92 shell;
#X obj 71 204 textfile;
#X msg 71 182 read data.txt;
#X connect 0 0 1 0;
#X connect 2 0 3 0;
#X connect 5 0 4 0;
are you using linux or osX by any chance?
http://www.pdpatchrepo.info/hurleur/receive.pd
any technology distinguishable from magic
is insufficiently advanced.