File: advanced-usage.md

package info (click to toggle)
python-recipe-scrapers 15.9.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 246,580 kB
  • sloc: python: 13,214; makefile: 3
file content (56 lines) | stat: -rw-r--r-- 1,487 bytes parent folder | download | duplicates (2)
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
# Advanced Usage

!!! warning "Under Construction"
    This whole page is currently under construction.

    Not worth your time at this point.

!!! warning "Under Construction"
    Just making sure the previous warning was not missed.

    This page is not worth your time at this point.

## Overview

This page covers the advanced internals of `recipe-scrapers`, including abstract
classes, schema.org parsing, utility functions, exception handling, and the
plugin system. These components are primarily useful for contributors and
developers looking to extend the library's functionality.


## Core Components

??? abstract "Abstract Base Classes"
    ::: recipe_scrapers._abstract
        options:
          heading_level: 3
          show_root_heading: false
          show_source: true

??? abstract "Schema.org Parser"
    ::: recipe_scrapers._schemaorg
        options:
          heading_level: 3
          show_root_heading: false
          show_source: true

??? abstract "Utility Functions"
    ::: recipe_scrapers._utils
        options:
          heading_level: 3
          show_root_heading: false
          show_source: true

??? abstract "Exception Handling"
    ::: recipe_scrapers._exceptions
        options:
          heading_level: 3
          show_root_heading: false
          show_source: true

??? abstract "Plugin System"
    ::: recipe_scrapers.plugins
        options:
          heading_level: 3
          show_root_heading: false
          show_source: true