YetAnotherPacketParser 0.3.0
There is a newer version of this package available.
See the version list below for details.
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.
<PackageVersion Include="YetAnotherPacketParser" Version="0.3.0" />
<PackageReference Include="YetAnotherPacketParser" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add YetAnotherPacketParser --version 0.3.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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.
#:package YetAnotherPacketParser@0.3.0
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=YetAnotherPacketParser&version=0.3.0
#tool nuget:?package=YetAnotherPacketParser&version=0.3.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | Versions 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.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.
-
.NETCoreApp 3.1
- DocumentFormat.OpenXml (>= 2.13.1)
- HtmlSanitizer (>= 6.0.441)
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.1 | 222 | 6/16/2024 |
| 1.2.0 | 171 | 3/12/2024 |
| 1.1.1 | 192 | 12/23/2023 |
| 1.1.0 | 243 | 6/23/2023 |
| 1.0.1 | 255 | 4/15/2023 |
| 1.0.0 | 579 | 4/18/2022 |
| 0.4.2 | 421 | 11/30/2021 |
| 0.4.1 | 498 | 11/14/2021 |
| 0.4.0 | 456 | 11/12/2021 |
| 0.3.0 | 542 | 10/10/2021 |
| 0.2.3 | 575 | 7/10/2021 |
| 0.2.1 | 499 | 3/21/2021 |
| 0.2.0 | 463 | 2/15/2021 |
| 0.1.1 | 471 | 1/17/2021 |
| 0.1.0 | 464 | 1/16/2021 |