Files
i2p.i2p/apps/sam/python/src/examples/stream.py
2004-08-02 14:34:06 +00:00

13 lines
375 B
Python

#! /usr/bin/env python
# -----------------------------------------------
# stream.py: Simple stream client
# -----------------------------------------------
from i2p import socket
S = socket.socket('Alice', socket.SOCK_STREAM)
S.connect('duck.i2p')
S.send('GET / HTTP/1.0\r\n\r\n') # Send request
print S.recv(1000) # Read up to 1000 bytes