YetAnotherPacketParser 0.3.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package YetAnotherPacketParser --version 0.3.0
NuGet\Install-Package YetAnotherPacketParser -Version 0.3.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="YetAnotherPacketParser" Version="0.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add YetAnotherPacketParser --version 0.3.0
#r "nuget: YetAnotherPacketParser, 0.3.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 YetAnotherPacketParser as a Cake Addin
#addin nuget:?package=YetAnotherPacketParser&version=0.3.0

// Install YetAnotherPacketParser as a Cake Tool
#tool nuget:?package=YetAnotherPacketParser&version=0.3.0

Yet Another Packet Parser

Introduction

Yet Another Packet Parser (YAPP) is a parser for quiz bowl packets written in C#. Some of its features are

  • Converts packets in a docx or HTML file to JSON or HTML
  • Can convert each packet in a zip file
  • Specific error messages that give a line number and text near where the parser failed
  • Configurable in how many lines to look ahead, which lets the parser successfully parse packets where some questions are split between multiple lines

Usage

YAPP comes with a C# library that is consumable through Nuget. You need to get the stream to the file and set the right compiler options, then call PacketConverter.ConvertPackets. For example, to convert a packet to HTML, you can use something like

IPacketConverterOptions packetCompilerOptions = new HtmlPacketCompilerOptions()
{
    StreamName = "packet1.html",
    PrettyPrint = options.PrettyPrint
};

IEnumerable<ConvertResult> results;
using (FileStream fileStream = new FileStream("C:\\qbsets\\packet1.docx", FileMode.Open, FileAccess.Read, FileShare.Read))
{
    results = await PacketConverter.ConvertPacketsAsync(fileStream, packetCompilerOptions);
}

ConvertResult compileResult = outputResults.First();
if (!compileResult.Result.Success)
{
    Console.Error.WriteLine(compileResult.Result);
    return;
}

File.WriteAllText(options.Output, compileResult.Result.Value);

Note that the method can take in a zip file too, and it will return all of the packets it attempted to parse.

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 netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.0 88 3/12/2024
1.1.1 121 12/23/2023
1.1.0 143 6/23/2023
1.0.1 157 4/15/2023
1.0.0 427 4/18/2022
0.4.2 278 11/30/2021
0.4.1 365 11/14/2021
0.4.0 314 11/12/2021
0.3.0 408 10/10/2021
0.2.3 434 7/10/2021
0.2.1 348 3/21/2021
0.2.0 319 2/15/2021
0.1.1 322 1/17/2021
0.1.0 316 1/16/2021