Azuxiren.Aionian
1.0.0
This versions contain bugs that throw exception on serializing the Bible struct. It is advised to use the latest versions
See the version list below for details.
Install-Package Azuxiren.Aionian -Version 1.0.0
dotnet add package Azuxiren.Aionian --version 1.0.0
<PackageReference Include="Azuxiren.Aionian" Version="1.0.0" />
paket add Azuxiren.Aionian --version 1.0.0
#r "nuget: Azuxiren.Aionian, 1.0.0"
// Install Azuxiren.Aionian as a Cake Addin
#addin nuget:?package=Azuxiren.Aionian&version=1.0.0
// Install Azuxiren.Aionian as a Cake Tool
#tool nuget:?package=Azuxiren.Aionian&version=1.0.0
Aionian Library contains simplistic features to consume the bible resources. As of now, the main utilities are:
The BibleLink
struct which defines the bible link as provided in http://resources.aionianbible.org/, The Bible
struct which contains all the content of bible using nested Dictionaries, and BibleBook
enum which has all the books of the bible defined within it.
Provided with these are static utility methods, most importantly for getting all links from the website (link given above) and a method for deserializing the Bible struct from downloaded link
BibleLink[] links = BibleLink.GetAllUrlsFromWebsite();//Gets all download links available from the website
BibleLink mylink = links[0]; //Taking the first link
var stream = mylink.DownloadStream();//Downloads the stream of the bible database
var bible = Bible.ExtractBible(stream);//Now the bible is ready to use
//Alternatively
var AnotherBible = Bible.ExtractBible(mylink.DownloadStream());//One line
string verse = AnotherBible[BibleBook.John, 3, 16];
By using a stream, there is an additional option of downloading the file by the URL in the BibleLink
object and opening it via a Stream
to load the Bible.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 2.0
- System.Text.Json (>= 5.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Initial Release