All Questions
26 questions
1
vote
2
answers
167
views
Program for monitoring file in Combined Log Format
After encountering a suggestion that monitoring a log file for a webserver could allow for the implementation of automatically analyzing and handling of certain events (that might require altering ...
3
votes
1
answer
82
views
Client-server application for logging running processes
My first client-server application. It's a simple Python script that gets a list of running processes from Server_1 and writes it to a datetime-named file on ...
5
votes
1
answer
369
views
Server in Python
I'm looking for a code review and code improvement for my own small server.
The server accepts the requests:
User Join,User Leave,User Text Notify Group Join, Group Leave, Group Notify Request Time.
...
5
votes
1
answer
3k
views
Streaming Messages to multiple Clients
I wrote a server-client application in Python where the server sends a never-ending stream of messages to connecting clients.
I was in need for such an architecture since I want to retrieve and ...
6
votes
2
answers
283
views
Python gRPC shopping cart service
The .proto file is as below:
...
8
votes
1
answer
408
views
Basic Python HTTP Server
It's an extremely simply HTTP server in Python using the socket library, and a few others to get the MIME type, etc...
I've also avoided the ../../ vulnerability, ...
4
votes
0
answers
598
views
Python UDP server to relay CSV or JSON data to cloud for analysis
What am I doing?
UDP/TCP server in Python (2.7 / 3.7)
How am I doing?
Using threads
Where am I going to execute it?
In a virtual machine running linux in AWS or Google Cloud or Azure ()
What ...
3
votes
2
answers
595
views
Basic web server in Python 3
This project is intended to function as a basic web server with a command-line interface for easy use. It's written in Python 3, with the help of the cmd module for ...
4
votes
0
answers
3k
views
UDP chat program with server, client and listener
This is a little chat program that I have been working on and I want general feedback such as feature suggestions, efficiency comments, etc...
The server will setup a DGRAM socket and constantly ...
6
votes
2
answers
3k
views
Networked Chat App in Python
I'm a highschool student with a passion for Python, and this is my first try at networking.
GitHub
server.py
...
7
votes
1
answer
181
views
Four to One Game Server
The two player game four-to-one works by leaving four stones on a table. Each player may remove 2 or 1 stones from the table. The first player who cannot take away any stones loses. I created a web ...
4
votes
0
answers
99
views
Message Save and Search REST server
This is an assignment presented to me. I don't have much experience building servers in Python so any comments would help me improve. The point of the server is to save and retrieve messages in a ...
3
votes
0
answers
92
views
Live radio streamer
I've posted a repo on a live radio streamer much like shoutcast/icecast without admin panels / user panels or custom mounts. I was wondering if anyone could review it and tell me what I can do better ...
5
votes
1
answer
1k
views
Server connection handler in Python
I am working on a server for a smart house. This part of code is responsible for communication with client (separate application), sending requested data and ensuring everything is safe.
I've decided ...
2
votes
0
answers
2k
views
UDP server for a multiplayer game using socketserver
I am making a multiplayer platforming game, and currently there are server performance issues once I have about 7+ clients connected. I was told earlier last week that I should investigate ...