pgwaffles 1.0.0

This Release
pgwaffles 1.0.0
Date
Status
Stable
Latest Stable
pgwaffles 1.0.1 —
Other Releases
Abstract
A postgres extension to display the best waffles recipe
Released By
arkhena
License
PostgreSQL
Resources
Special Files
Tags

Extensions

pgwaffles 1.0.0
A postgres extension to display the best waffles recipe

README

PostgreSQL Waffles

This extension was created for education purpose only. It will look for several recipes, let you choose the one you'd like to see and display the ingredients and step to make the recipe.

Installation

Pre-requisites

As parsing a website is not easy, we'll use the html-xml utilities from w3c see https://www.w3.org/Tools/HTML-XML-utils/.

The extension has been tested against Postgres 14.

You need to have Postgres already installed. You need to get the extension and install it:

git clone <pgwaffles_project>
cd pgwaffles
make install

Creating the extension

Then you can create the extension

create extension pgwaffles;

Uninstalling

Simply use the drop extension statement.