Viva is an ETL project built using F#. It offers a comprehensive solution for data extraction, transformation, and loading, making it easier to manage and process data. This document will guide you through the various aspects of Viva, including its features, requirements, installation, usage, contribution guidelines, and license information.
To get started with Viva, you will need the following:
- Requires .NET Sdk 9.0 or higher installed on your machine.
- You will also need to install the required NuGet packages.
dotnet add package Viva dotnet add package Viva.Runtime dotnet add package Viva.Playwright
- Efficient data extraction: Viva offers tools for extracting data from various sources.
- Flexible transformation capabilities: Offers tools for cleaning, manipulating, and enhancing extracted data.
- Apply transformations: Includes features like filtering, aggregating, joining data, etc.
- Cross-Platform Compatibility: Runs on Windows, macOS, and Linux.
- Add the packages to your project
dotnet add package Viva dotnet add package Viva.Runtime dotnet add package Viva.Playwright
- Simplified example.
- Setup Logging.
open Microsoft.Extensions.Logging open Microsoft.Playwright open FsToolkit.ErrorHandling open Viva.Runtime.Helpers.Operator.Result open Viva.Playwright let factory = LoggerFactory.Create(fun builder -> builder .AddSimpleConsole(fun options -> options.SingleLine <- true options.IncludeScopes <- true options.TimestampFormat <- "hh:mm:ss tt - " ) .SetMinimumLevel #if DEBUG LogLevel.Debug #else LogLevel.Information #endif |> ignore )
- Use Playwright to interact with a website.
MsEdge.Create(factory, BrowserTypeLaunchOptions(Headless = false), BrowserNewContextOptions(ViewportSize = ViewportSize.NoViewport)) >>= _.Open("https://www.youtube.com/") <!> _.SetDefaultTimeOut(TimeSpan.FromMinutes 30L) <!> _.GetByRole(AriaRole.Combobox, "Search") >>= _.Fill("linux brtfs") >>= _.Press("ArrowDown") >>= _.PressAndClose("Enter") <!> _.GetByLabel("Search filters") >>= _.ClickAndClose() <!> _.GetBySelector("ytd-search-filter-renderer", "This year") >>= _.ClickAndClose() <!> _.GetByRole(AriaRole.Link, "This year") >>= _.ClickAndClose() |> Result.tee(fun _ -> Async.Sleep 5000 |> Async.RunSynchronously)
- Close the page and Playwright context, and finally dispose of the factory
>>= _.CloseAll() |> ignore factory.Dispose()
- Setup Logging.
We welcome contributions to the Viva project! Please follow these steps to contribute:
- Set up development environment.
-
Install .Net Sdk
-
Docker (if Linux distro is not supported by Playwright)
- Docker is used for testing Playwright code. Podman isn't recommended due to lack of BuildKit support.
- The container image includes browser-based KASMVnc for GUI development.
-
VS Code
- Dev Container Extension
- Automatically installs .NET (dotnet).
- Sets up necessary tools and restores packages needed for your project.
- Configures required extensions.
Note: This setup has not been tested with other IDEs like Visual Studio or Rider.
- Dev Container Extension
-
- Fork the Viva repository.
- Clone your forked repository to a local machine.
- Create a new branch for your changes.
- Make your changes and commit them with descriptive messages.
- Submit a pull request, providing a clear description of your changes.
- We will review your pull request and provide feedback or merge your changes.
Copyright © [2025] The Viva project is distributed under Unlicense. See the LICENSE file for more information.