You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Socket programming in python. You will find follwing on top of vanilla implementation you find in any first tutorial link you get from googling:
2
+
3
+
A sample socket programming in python using low level networking interface *socket*. You will find follwing on top of vanilla implementation you find in any first tutorial link you get from googling:
3
4
* Multithreading to handle multiple client
4
5
* Use of pickel to serialize any type of data
5
6
* Handling of variable length data by passing data size along with payload
6
7
* Passing data type with payload as additional information to take specific action accordingly (eg. if data type is image then save it)
7
8
* Using keyboard interrupt to close client and server cleanly
8
9
* Specifying the list of trusted client so that no untrusted client could be connected
9
10
10
-
Feel free to request more feature you would like, i wil try to add it in free time
11
+
Note: While writing this program python 3.7.4 was used
12
+
13
+
Feel free to request more feature you would like, i wil try to add it when i get time
0 commit comments