Implementing Internet Communication : socket « Network « Python Tutorial

Python Tutorial
1. Introduction
2. Data Type
3. Statement
4. Operator
5. String
6. Tuple
7. List
8. Dictionary
9. Collections
10. Function
11. Class
12. File
13. Buildin Function
14. Buildin Module
15. Database
16. Regular Expressions
17. Thread
18. Tkinker
19. wxPython
20. XML
21. Network
22. CGI Web
23. Windows
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorial
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Python Tutorial » Network » socket 
21. 2. 2. Implementing Internet Communication
# Protocol Families for Python Sockets
# Family      Description
# AF_INET     Ipv4 protocols (TCP, UDP)
# AF_INET6    Ipv6 protocols (TCP, UDP)
# AF_UNIX     Unix domain protocols

# Socket Types for Python Sockets

# Type              Description
# SOCK_STREAM       Opens an existing file for reading.
# SOCK_DGRAM        Opens a file for writing. 
# SOCK_RAW          Opens an existing file for updating, keeping the existing contents intact.
# SOCK_RDM          Opens a file for both reading and writing. The existing contents are kept intact.
# SOCK_SEQPACKET    Opens a file for both writing and reading. The existing contents are deleted.

from socket import *

serverHost = '127.0.0.1'
serverPort = 50007

sSock = socket(AF_INET, SOCK_STREAM)
sSock.bind((serverHost, serverPort))
sSock.listen(3)

while 1:
    conn, addr = sSock.accept()
    print 'Client Connection: ', addr
    while 1:
        data = conn.recv(1024)
        if not data: break
        print 'Server Received: ', data
        newData = data.replace('Client', 'Processed')
        conn.send(newData)
    conn.close()
21. 2. socket
21. 2. 1. Get list of available socket options
21. 2. 2. Implementing Internet Communication
21. 2. 3. A server that will receive a connection from a client, send a string to the client, and close the connection.
21. 2. 4. socket.socket(socket.AF_INET, socket.SOCK_STREAM)
21. 2. 5. Looking up port number
21. 2. 6. Get socket name and peer name
21. 2. 7. Send 10M of data with socket
21. 2. 8. Echo Server
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.