plaintextconverter
Convert plaintext files to the Giella xml format.
PlaintextConverter
Bases: BasicConverter
Convert plain text files to the Giella xml format.
Source code in corpustools/plaintextconverter.py
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 | |
content2xml(content)
Transform plaintext to an intermediate xml document.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
content
|
StringIO
|
the content of the plaintext document. |
required |
Returns:
| Type | Description |
|---|---|
_Element
|
An etree element. |
Source code in corpustools/plaintextconverter.py
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 | |
lines2xml(content)
Transform paragraphs to etree elements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
content
|
StringIO
|
the content of the plaintext document. |
required |
Yields:
| Type | Description |
|---|---|
Iterable[_Element]
|
An etree element. |
Source code in corpustools/plaintextconverter.py
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 | |
make_element(element_name, text)
staticmethod
Make an xml element.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
element_name
|
str
|
Name of the xml element |
required |
text
|
str
|
The text the xml should contain |
required |
Returns:
| Type | Description |
|---|---|
_Element
|
an etree element |
Source code in corpustools/plaintextconverter.py
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | |
strip_chars(content, extra='')
staticmethod
Remove the characters found in plaintext_oddities from content.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
content
|
str
|
a string containing the content of a document. |
required |
extra
|
a string containg even more characters to remove from content. |
''
|
Returns:
| Type | Description |
|---|---|
str
|
A string containing the content sans unwanted characters. |
Source code in corpustools/plaintextconverter.py
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 | |
to_unicode()
Read a file into a unicode string.
If the content of the file is not utf-8, pretend the encoding is latin1. The real encoding will be detected later.
Returns:
| Type | Description |
|---|---|
str
|
The decoded string |
Source code in corpustools/plaintextconverter.py
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | |
convert2intermediate(filename)
Transform plaintext to an intermediate xml document.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
filename
|
Path
|
path of the file that should be converted |
required |
Returns:
| Type | Description |
|---|---|
_Element
|
An etree element. |
Source code in corpustools/plaintextconverter.py
170 171 172 173 174 175 176 177 178 179 180 181 | |