A
A
Andrey Kalashnik2021-10-24 00:49:47
Python
Andrey Kalashnik, 2021-10-24 00:49:47

Is there a service for collecting data from a Python script?

I have a ready-made Python console script, I compiled it into an exe. Now I will share it with my friends, but I need that when they launch the console, I receive information about the number of launches, their IP addresses, the value of variables in their console, and so on. That is, I need a service that makes it possible to transfer some data to it, so that I can then log into my account on this service and see all the information collected from the Python script that will transfer this information to this service. For example, on this service I created the "AllLaunches" variable, then in Python at the very beginning of the script, I add a line of code that will increase the value of this variable by 1, thus I will see information about the total number of launches of my program. Are there such services? And if there is, can you please

Answer the question

In order to leave comments, you need to log in

2 answer(s)
R
Ronald McDonald, 2021-10-24
@Zoominger

Raise some server on VPS, deploy HTTPS and SQL servers there and transfer there. From there, pull through the same HTTPS.

V
Vasily Bannikov, 2021-10-24
@vabka

Look at Azure Application Insights or a similar service.
You will need to arrange logging in your script so that everything that needs to be sent to Azure, and that's it.
There you can also make a dashboard with all the necessary metrics.
On your scale, most likely, it will be free.
What you want is called "telemetry"

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question