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”]
Category: Uncategorized
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 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
Creating a stock market report using with Python Pandas, Web Scraping and Mito
Today we gonna crate a stock market in 5 minutes using Python, Pandas, Web scraping and Mito [git-github-jupyter url=”https://github.com/rondweb/stock_reports/blob/master/stock.ipynb”] Github repo: rondweb/stock_reports (github.com)
Extracting Text from Microsoft Word with Python
Python is really powerful and useful for many daily tasks, today let’s get the text from a word file! [git-github-jupyter url=”https://github.com/rondweb/extract_text_from_word/blob/master/ExtractTextFromWord.ipynb”]
Serving Deep Learning Models with Tensorflow Server – part 2
Serving Deep Learning Models with Tensorflow Server – part 1 Now we already had our model ready to be serve with our Tensorflow Server! Let’s install the docker image of Tensorflow Server Almost there! now we need just running the container with some parameters! offering the source path of our model(source), the path that it…
Serving Deep Learning Models with Tensorflow Server – part 1
[git-github-jupyter url=”https://github.com/rondweb/tensorflow_serving/blob/master/tensorflow_server.ipynb”] Parte 2