<div dir="ltr"><div><div><div>Most of the time I use it to receive files from co-workers, and I *always* forget to run a ifconfig before to get my IP address.<br></div>To solve that, I slightly changed droopy, so it says all my IP addresses right away:<br>

<br></div><snip><br>...<br>import socket<br>import locale<br><br></div><div># change to show my IP addresses<br></div><div># package python-netifaces needed<br></div><div>from netifaces import interfaces, ifaddresses, AF_INET<br>

<br>for ifaceName in interfaces():<br>        addresses = [i['addr'] for i in ifaddresses(ifaceName).setdefault(AF_INET, [{'addr':'No IP addr'}] )]<br>        print '%s: %s' % (ifaceName, ', '.join(addresses))<br>

<br></div><div># end change<br></div><div><br>USAGE='''\<br>Usage: droopy [options] [PORT]<br></div>...<br><snip><br></div><div class="gmail_extra"><br clear="all"><div>Mauro<br><a href="http://mauro.limeiratem.com">http://mauro.limeiratem.com</a> - registered Linux User: 294521<br>

Scripture is both history, and a love letter from God.</div>
<br><br><div class="gmail_quote">2013/6/27 Scott Sullivan <span dir="ltr"><<a href="mailto:scott-lxSQFCZeNF4@public.gmane.org" target="_blank">scott-lxSQFCZeNF4@public.gmane.org</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div class="im">On 06/27/2013 03:56 PM, Mauro Souza wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I use a nice script called Droopy (<a href="http://stackp.online.fr/?p=28" target="_blank">http://stackp.online.fr/?p=28</a><u></u>). You<br>
ran it anywhere from bash, and it creates a simple web server allowing<br>
the user to upload anything for you, and the file is dropped on that<br>
directory. No configuration needed, no Apache needed, runs out of the<br>
box. You only need python installed. And it only allows uploads, no<br>
download allowed, so you don't have to think about security, multiple<br>
users uploading files, and so...<br>
Is not a fancy-looking-multi-upload-<u></u>with-progress-meter solution, but is<br>
a drop and run, instant no-hassle solution.<br>
<br>
</blockquote>
<br></div>
Mauro,<br>
<br>
Thanks!<br>
<br>
Someone in another list had point at Woof[1] that does the same thing, but Droopy is far more attractive and a fair bit more feature rich.<br>
<br>
[1]: <a href="http://www.home.unix-ag.org/simon/woof.html" target="_blank">http://www.home.unix-ag.org/<u></u>simon/woof.html</a><br>
<br>
Both of these more or less fit my needs and the temporary nature addresses my security concerns.<span class="HOEnZb"><font color="#888888"><br>
<br>
-- <br>
Scott Sullivan</font></span><div class="HOEnZb"><div class="h5"><br>
--<br>
The Toronto Linux Users Group.      Meetings: <a href="http://gtalug.org/" target="_blank">http://gtalug.org/</a><br>
TLUG requests: Linux topics, No HTML, wrap text below 80 columns<br>
How to UNSUBSCRIBE: <a href="http://gtalug.org/wiki/Mailing_lists" target="_blank">http://gtalug.org/wiki/<u></u>Mailing_lists</a><br>
</div></div></blockquote></div><br></div>