Is posssible with socket and thread create multisuer connection at the same time ?
Yes. You can use multiple sockets and a thread per connection,
or you can use one of Python's event driven frameworks to handle
lots of concurrent connections (Twisted, for instance).
or is wrong my idea??
I don't know, but have a look at BitTorrent.
That is an existing popular file sharing system written in Python.
Is posssible with socket and thread create multisuer connection at the same time ?
Yes. You can use multiple sockets and a thread per connection, or you can use one of Python's event driven frameworks to handle lots of concurrent connections (Twisted, for instance).
or is wrong my idea??
I don't know, but have a look at BitTorrent. That is an existing popular file sharing system written in Python.
I know of a few Pyro projects that actually *do* use Pyro
to transfer files across the network. One of them is rather
interesting, the files are digital images produced by an
earth-orbiting sattelite.. :-)