MCPcopy Create free account
hub / github.com/kurtmckee/feedparser / Namespace

Class Namespace

feedparser/namespaces/dc.py:33–134  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31
32
33class Namespace(object):
34 supported_namespaces = {
35 'http://purl.org/dc/elements/1.1/': 'dc',
36 'http://purl.org/dc/terms/': 'dcterms',
37 }
38
39 def _end_dc_author(self):
40 self._end_author()
41
42 def _end_dc_creator(self):
43 self._end_author()
44
45 def _end_dc_date(self):
46 self._end_updated()
47
48 def _end_dc_description(self):
49 self._end_description()
50
51 def _end_dc_language(self):
52 self._end_language()
53
54 def _end_dc_publisher(self):
55 self._end_webmaster()
56
57 def _end_dc_rights(self):
58 self._end_rights()
59
60 def _end_dc_subject(self):
61 self._end_category()
62
63 def _end_dc_title(self):
64 self._end_title()
65
66 def _end_dcterms_created(self):
67 self._end_created()
68
69 def _end_dcterms_issued(self):
70 self._end_published()
71
72 def _end_dcterms_modified(self):
73 self._end_updated()
74
75 def _start_dc_author(self, attrs_d):
76 self._start_author(attrs_d)
77
78 def _start_dc_creator(self, attrs_d):
79 self._start_author(attrs_d)
80
81 def _start_dc_date(self, attrs_d):
82 self._start_updated(attrs_d)
83
84 def _start_dc_description(self, attrs_d):
85 self._start_description(attrs_d)
86
87 def _start_dc_language(self, attrs_d):
88 self._start_language(attrs_d)
89
90 def _start_dc_publisher(self, attrs_d):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…