Vhc.Optimus 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Vhc.Optimus --version 1.0.0
NuGet\Install-Package Vhc.Optimus -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Vhc.Optimus" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Vhc.Optimus --version 1.0.0
#r "nuget: Vhc.Optimus, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Vhc.Optimus as a Cake Addin
#addin nuget:?package=Vhc.Optimus&version=1.0.0

// Install Vhc.Optimus as a Cake Tool
#tool nuget:?package=Vhc.Optimus&version=1.0.0

Optimus

A Data Transformer

Library to run data transformation jobs in a .NET Core application

Introduction

With the help of this library, you can create an application that can run periodic or triggered jobs parallely. It is originally designed to run a set of tasks to manipulate data in db tables, but can be extended to run any type of job.

A Job is a sequence of Units. Each unit performs a certain task. e.g. a unit of type Sql runs a DML script in the database.

There are two types of units already bundled --

  1. Sql
  2. Python

A Sql unit, as you guessed it, is used to run a DDL/DML to a database using ODBC connection.

To allow dynamic values to be used in these queries, each job can have it's Variables. They can be referred inside units and the value is replaced at run time. e.g. In a Sql type unit, a variable named x is referred to as ${x}. At the time of running the SQL, all variable names are replaced by their values.

A Python type unit can get and set variable values. It uses It also exposes functions such as log(), sql(), query(), commit(), rollback() to work with the database.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.2 is compatible.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Vhc.Optimus:

Package Downloads
Vhc.Optimus.FileProviders.FileSystem

FileSystem Job Files Provider for Optimus Data Transformer

Vhc.Optimus.Platforms.Sqlite

Sqlite Implentation for Vhc.Optimus data transformer

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.1 667 5/9/2019
1.0.0 460 5/9/2019

Initial Release