meta_oxide 0.1.1

Universal metadata extraction library supporting 13 formats (HTML Meta, Open Graph, Twitter Cards, JSON-LD, Microdata, Microformats, RDFa, Dublin Core, Web App Manifest, oEmbed, rel-links, Images, SEO) with 7 language bindings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
# Getting Started with MetaOxide (C#)

Welcome to MetaOxide! This guide will help you get started with the C# bindings for MetaOxide in just 5 minutes.

## Table of Contents

- [Installation]#installation
- [Quick Start]#quick-start
- [Basic Extraction]#basic-extraction
- [.NET Versions]#net-versions
- [Next Steps]#next-steps

## Installation

### NuGet Package Manager

```bash
dotnet add package MetaOxide
```

Or via NuGet Package Manager Console:

```powershell
Install-Package MetaOxide
```

### Package Reference

Add to your `.csproj` file:

```xml
<ItemGroup>
    <PackageReference Include="MetaOxide" Version="0.1.0" />
</ItemGroup>
```

### Requirements

- .NET Framework 4.6.1+ or .NET Core 2.0+ or .NET 5+
- Works on Windows, Linux, and macOS

## Quick Start

Here's a minimal example to extract metadata from HTML:

```csharp
using MetaOxide;
using System;

class Program
{
    static void Main()
    {
        string html = @"
            <!DOCTYPE html>
            <html>
            <head>
                <title>My Page</title>
                <meta name=""description"" content=""A great page"">
                <meta property=""og:title"" content=""My Page"">
            </head>
            <body>Hello World</body>
            </html>
        ";

        using var extractor = new MetaOxideExtractor(html, "https://example.com");
        var metadata = extractor.ExtractAll();

        Console.WriteLine($"Title: {metadata["title"]}");
        Console.WriteLine($"Description: {metadata["description"]}");
    }
}
```

**Important**: MetaOxide implements `IDisposable`, so use `using` statements to ensure proper cleanup.

## Basic Extraction

MetaOxide supports 13 metadata formats. Here's how to extract specific formats:

### Extract Open Graph Data

```csharp
using MetaOxide;
using System;
using System.Collections.Generic;

public class OpenGraphExample
{
    public static Dictionary<string, object> ExtractOpenGraph(string html)
    {
        using var extractor = new MetaOxideExtractor(html, "https://example.com");
        var ogData = extractor.ExtractOpenGraph();

        if (ogData != null)
        {
            Console.WriteLine($"OG Title: {ogData["title"]}");
            Console.WriteLine($"OG Type: {ogData["type"]}");
            Console.WriteLine($"OG Image: {ogData["image"]}");
        }

        return ogData;
    }
}
```

### Extract Twitter Cards

```csharp
public class TwitterExample
{
    public static Dictionary<string, object> ExtractTwitter(string html)
    {
        using var extractor = new MetaOxideExtractor(html, "https://example.com");
        var twitterData = extractor.ExtractTwitterCard();

        if (twitterData != null)
        {
            Console.WriteLine($"Card Type: {twitterData["card"]}");
            Console.WriteLine($"Title: {twitterData["title"]}");
        }

        return twitterData;
    }
}
```

### Extract JSON-LD Structured Data

```csharp
using System.Text.Json;

public class JSONLDExample
{
    public static List<object> ExtractJSONLD(string html)
    {
        using var extractor = new MetaOxideExtractor(html, "https://example.com");
        var jsonldData = extractor.ExtractJSONLD();

        if (jsonldData != null)
        {
            string json = JsonSerializer.Serialize(jsonldData,
                new JsonSerializerOptions { WriteIndented = true });
            Console.WriteLine(json);
        }

        return jsonldData;
    }
}
```

### Extract from URL

```csharp
using System.Net.Http;
using System.Threading.Tasks;

public class URLExample
{
    private static readonly HttpClient client = new HttpClient();

    public static async Task<Dictionary<string, object>> ExtractFromURLAsync(string url)
    {
        string html = await client.GetStringAsync(url);

        using var extractor = new MetaOxideExtractor(html, url);
        return extractor.ExtractAll();
    }

    public static async Task Main()
    {
        var metadata = await ExtractFromURLAsync("https://example.com");
        Console.WriteLine($"Title: {metadata["title"]}");
    }
}
```

### Async/Await Pattern

```csharp
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Threading.Tasks;

public class AsyncExample
{
    private static readonly HttpClient client = new HttpClient();

    public static async Task<List<Dictionary<string, object>>> ExtractMultipleURLsAsync(
        List<string> urls)
    {
        var tasks = urls.Select(async url =>
        {
            try
            {
                return await ExtractFromURLAsync(url);
            }
            catch (Exception ex)
            {
                Console.WriteLine($"Failed to extract from {url}: {ex.Message}");
                return null;
            }
        });

        var results = await Task.WhenAll(tasks);
        return results.Where(r => r != null).ToList();
    }

    public static async Task Main()
    {
        var urls = new List<string>
        {
            "https://example.com",
            "https://example.org",
            "https://example.net"
        };

        var results = await ExtractMultipleURLsAsync(urls);

        for (int i = 0; i < results.Count; i++)
        {
            Console.WriteLine($"{urls[i]}: {results[i]["title"]}");
        }
    }
}
```

## .NET Versions

### .NET 6+ with Top-Level Statements

```csharp
using MetaOxide;

string html = """
<!DOCTYPE html>
<html>
<head>
    <title>My Page</title>
</head>
</html>
""";

using var extractor = new MetaOxideExtractor(html, "https://example.com");
var metadata = extractor.ExtractAll();

Console.WriteLine($"Title: {metadata["title"]}");
```

### .NET Framework 4.6.1+

```csharp
using MetaOxide;
using System;
using System.Collections.Generic;

namespace MetaOxideExample
{
    class Program
    {
        static void Main(string[] args)
        {
            string html = @"<!DOCTYPE html>...";

            using (var extractor = new MetaOxideExtractor(html, "https://example.com"))
            {
                Dictionary<string, object> metadata = extractor.ExtractAll();
                Console.WriteLine("Title: " + metadata["title"]);
            }
        }
    }
}
```

### ASP.NET Core Integration

```csharp
using Microsoft.AspNetCore.Mvc;
using MetaOxide;
using System.Net.Http;
using System.Threading.Tasks;

[ApiController]
[Route("api/[controller]")]
public class MetadataController : ControllerBase
{
    private readonly HttpClient _httpClient;

    public MetadataController(IHttpClientFactory httpClientFactory)
    {
        _httpClient = httpClientFactory.CreateClient();
    }

    [HttpGet]
    public async Task<IActionResult> Extract([FromQuery] string url)
    {
        if (string.IsNullOrEmpty(url))
        {
            return BadRequest("URL parameter is required");
        }

        try
        {
            string html = await _httpClient.GetStringAsync(url);

            using var extractor = new MetaOxideExtractor(html, url);
            var metadata = extractor.ExtractAll();

            return Ok(new { success = true, metadata });
        }
        catch (Exception ex)
        {
            return StatusCode(500, new { error = ex.Message });
        }
    }
}
```

### Dependency Injection

```csharp
using Microsoft.Extensions.DependencyInjection;

public class Startup
{
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddHttpClient();
        services.AddSingleton<IMetadataExtractor, MetadataExtractorService>();
    }
}

public interface IMetadataExtractor
{
    Task<Dictionary<string, object>> ExtractAsync(string url);
}

public class MetadataExtractorService : IMetadataExtractor
{
    private readonly HttpClient _httpClient;

    public MetadataExtractorService(IHttpClientFactory httpClientFactory)
    {
        _httpClient = httpClientFactory.CreateClient();
    }

    public async Task<Dictionary<string, object>> ExtractAsync(string url)
    {
        string html = await _httpClient.GetStringAsync(url);

        using var extractor = new MetaOxideExtractor(html, url);
        return extractor.ExtractAll();
    }
}
```

## Error Handling

Handle errors appropriately:

```csharp
using MetaOxide;
using System;
using System.Collections.Generic;

public class ErrorHandlingExample
{
    public static Dictionary<string, object> SafeExtraction(string html, string url)
    {
        try
        {
            using var extractor = new MetaOxideExtractor(html, url);
            var metadata = extractor.ExtractAll();
            Console.WriteLine($"Extracted {metadata.Count} fields");
            return metadata;
        }
        catch (MetaOxideException ex)
        {
            Console.WriteLine($"Extraction failed: {ex.Message}");
            return new Dictionary<string, object>();
        }
        catch (Exception ex)
        {
            Console.WriteLine($"Unexpected error: {ex.Message}");
            return new Dictionary<string, object>();
        }
    }
}
```

Common exceptions:
- `ParseException`: Invalid HTML structure
- `UrlException`: Invalid base URL
- `ExtractionException`: Failed to extract specific metadata format

## Next Steps

Now that you've got the basics, explore more:

1. **[Complete API Reference]/docs/api/api-reference-csharp.md** - Learn about all available methods
2. **[Real-World Examples]/examples/real-world/csharp-aspnet-api/** - See a complete ASP.NET Core API
3. **[Integration Guides]/docs/integrations/aspnetcore-integration.md** - Use with ASP.NET Core

### All Supported Formats

MetaOxide extracts these 13 metadata formats:

- Basic HTML metadata (title, description, keywords)
- Open Graph (og:*)
- Twitter Cards (twitter:*)
- JSON-LD structured data
- Microdata (schema.org)
- Microformats (h-card, h-entry, h-event)
- Dublin Core
- RDFA
- HTML5 semantic elements
- Link relations
- Image metadata
- Author information

### Learn More

- [ASP.NET Core Integration]/docs/integrations/aspnetcore-integration.md
- [Performance Tuning]/docs/performance/performance-tuning-guide.md
- [Architecture Overview]/docs/architecture/architecture-overview.md

Happy extracting! 🚀