Pandas and Bokeh: create interactive graphics
Analyzing data also requires graphing the data or the results from the analysis performed. Many libraries in Python provide useful tools for visualization, but the plots produced are static. The Pandas Bokeh library is a great alternative for creating interactive plots and including them in web projects. Let’s find out how to use it and the results we can achieve through some examples.
Coding for kids: first steps in programming
Coding for kids and teens? It seems almost impossible and yet there are many tools that teach little ones to have a first approach with the logic of programming.
Programming has become an essential skill for tomorrow’s adults.
PandasGUI: Graphical user interface for analyzing data with Pandas
Pandas is the most used library by data scientists to analyze data. But if you are not an expert programmer or simply want to explore your data in a simple and intuitive way you can use PandasGUI. This is a library that allows you to view and interact with Pandas dataframes with a simple mouse click.
Celery and Django: Creating Asynchronous Tasks
Nowadays, data processing and analysis is increasingly required within web applications. Unfortunately, the required execution time can sometimes be too large to handle requests asynchronously. In this tutorial we discover how to use Celery in a Django project to create asynchronous tasks for our needs.
Neo4j: guide to use a graph database
Neo4j is the leader in graph databases. Through Cypher queries, it is possible to optimally manage a graph representation of our data and discover interesting correlations between them. Let’s find out how to use it with some simple query examples and some advanced use case suggestions.
Django vs Flask: Python web frameworks comparison
Choosing a web framework for developing a web application is always important. The best Python frameworks are, according to developers, Django and Flask. Let’s find out their peculiarities and try to understand which one is the best according to the needs of our project.
Customize Woocommerce with a plugin
E-commerce is a very popular type of website nowadays. With Woocommerce it is possible to create a virtual store in a simple and intuitive way. There are many plugins that increase the basic functionality offered by the platform. Sometimes, however, there is no perfect plugin for our needs. Let’s find out how to add through the development of a plugin a custom page for customers and intercept the execution of orders.
Manage Advanced Custom Fields and integrate them in a WordPress plugin
During the development of a Wordpress website or plugin, the need arises to track some information in a structured way. Using the Advanced Custom Fields plugin, it is possible to create custom fields in a simple and intuitive way. Let’s discover how to generate them and integrate them into the pages of our site or into the logic of our plugin.
Create a settings page for a WordPress plugin
Every Wordpress plugin needs some information from the administrator to work at its best. In this article we will see how to add a settings page and adapt it to our needs.
Develop a WordPress plugin – create the initial structure
Wordpress is a great solution for creating sites quickly and easily. Plugins allow you to increase the basic functionality of the platform without any programming knowledge. If, however, it is necessary to interact with Wordpress in a customized way then we will need to develop a plugin. In this article we are going to understand how to set up a plugin project without too much effort.