Durchsuchen nach
Schlagwort: Script

Auswertung der Läufe (Running, Jogging) mit Python und MariaDB

Auswertung der Läufe (Running, Jogging) mit Python und MariaDB

Viele werden sich auf die vorhandenen Apps verlassen, die sie mal gekauft haben und denken, dass sie auf der sicheren Seite sind. Auf der sicheren Seite, dass sie immer an die Daten herankommen werden, die sie mal erstellt haben. Aber was ist, wenn der Anbieter, sich anderen Geschäftsinteressen zuwendet? Es gab schon immer Apps, die eingestellt worden sind. Danach waren die Daten verschwunden. Das ist natürlich blöd für jemanden, der sich auf einen Marathon vorbereiten möchte. Digitale Unabhängigkeit Eine eigene…

Weiterlesen Weiterlesen

Python Pandas Query greater than

Python Pandas Query greater than

If you have a script with Python Pandas and you want to have a query for a value that is in my case greater than 40, then you have to use this kind of command. Make sure that you have installed Python and Pandas on your computer. The CSV file is from Google Trends, and I have asked Google Trends how many search queries are there for Python Pandas all over the world. At the moment, I’m building a tool…

Weiterlesen Weiterlesen

Python: Displaying data at specific times with Matplotlib

Python: Displaying data at specific times with Matplotlib

With this simple script, you can display simple data in a Python dictionary using a bar chart. Installation process To do this, you need to install Python and then the Matplotlib module. For Python, go to the official Python.org website and install the latest version. Once that is complete, install the Matplotlib module in the command line or terminal, depending on which operating system you are using. pip install matplotlib Any necessary library files will then be downloaded and installed….

Weiterlesen Weiterlesen

Python MySQL create a database and a table

Python MySQL create a database and a table

This is a Python script in order to create first the database and then a table with different values in one step. It is useful, then you don’t need to do it in two steps. What is the requirement for the script Installation of Python Windows and Mac For this script, you need to install Python if you are on Windows and Mac. Go to the official web page of Python.org and download your package and installed like another program….

Weiterlesen Weiterlesen