[git-github-jupyter url=”https://github.com/rondweb/Python-CodeSnippets/blob/main/concepts/CodeSnippetsPython2.ipynb”]
Author: Ronaldo Andrade
Python Advanced Concepts Part 2 – DocString
[git-github-jupyter url=”https://github.com/rondweb/Python-CodeSnippets/blob/main/concepts/CodeSnippetsPython3.ipynb”]
Python Concepts Part 1 – Filter and Map
Let’s clarify some useful and friendly utils available with python to manipulate string, lists, filters… [git-github-jupyter url=”https://github.com/rondweb/Python-CodeSnippets/blob/main/concepts/filters_map.ipynb”]
Creating a Web App CRUD with Flask, SqlAlchemy and SQLite
Flask is a microweb framework for python really useful and easy to implement many times of system, let’s create a webapp using these free useful tools and create our local database. 1- First let’s create a virtual enviroment using Miniconda 2 – Install the dependencies: 3- Creating our Web App 3.1 – Creating our Models:…
Creating a Python package using Python-Poetry
Creating a Python package is really usefull for versioning and distribuiton to our help methods or even our comproject complete, today let’s user Poetry to create a simple project (GUID Generator) and show how to deploy for a Pypi-Server 1 – Installing the Poetry 2 – Creating the Poetry project 3 – Virtual Enviroment Poetry…
Face Recognition using OpenCV and Python
Opencv is very useful package to manipulate images, today let’s make some test using the package to make a face recognition of a picture. [git-github-jupyter url=”https://github.com/rondweb/PythonScriptsBigData/blob/main/face_recognition_opencv.ipynb”]
Manipulating data with Python, Redis and Pandas
On these days we need to access data even faster but usually to have this data can be lazy and hard so today we gonna build an app to read some data from a CSV and push it into a Redis Server to be available on a easy and fast way. Let’s install the Redis…
Creating Web App to monitorize news using Flask, pyWebIo and OpenAPI
Today is the first chapter of a series about consuming APIs, Webscraping and beyond… Let’s create a simple web app to get some breaking news about any subject filtering by region, language and topic. [git-github-jupyter url=”https://github.com/rondweb/api-news/blob/main/notebook.ipynb”]
Creating complete WEB App without coding HTML with PyWebIO and Flask
The framework PyWebIO is very useful to develop some web apps with interface quickly and useful, on this post we gonna create a GUID Generator using this framework! [git-github-jupyter url=”https://github.com/rondweb/leaftix-labs-guid-generator/blob/main/notebook.ipynb”] Github: https://github.com/rondweb/leaftix-labs-guid-generator
Running Docker images using Jenkins Pipeline on Kubernetes
1 – Install Jenkins on Kubernetes 2 – After the installation of Jenkins, install the Kubernetes Plugin 3 – Configuring the Pods: 3.1 – Navigate to Configure Jenkins / Manager Nodes and Clouds / Configure Clouds / Choose Kubernetes and configure the Kubernetes and the pod template with the image jenkins/inbound-agent / Select the option…