This project has been archived by its maintainers, and is no longer receiving any updates.
This package provides a very simple vocabulary implementation using CSV files. The advantage of CSV files is that they provide an external point to specify data, which allows a non-developer to adjust the data themselves.
Detailed Documentation
CSV Vocabulary
This package provides a very simple vocabulary implementation using CSV files. The advantage of CSV files is that they provide an external point to specify data, which allows a non-developer to adjust the data themselves.
>>> import z3c.csvvocabulary>>> import os.path >>> path = os.path.dirname(z3c.csvvocabulary.__file__)
CSV Vocabulary
The CSV Vocabulary implementation is really just a function that creates a simple vocabulary with titled terms. There is a sample.csv file in the data directory of the testing sub-package, so let’s create a vocabulary from that:
>>> csvfile = os.path.join(path, 'testing', 'data', 'sample.csv')>>> samples = z3c.csvvocabulary.CSVVocabulary(csvfile) >>> samples <zope.schema.vocabulary.SimpleVocabulary object at ...>>>> sorted([term.value for term in samples]) ['value1', 'value2', 'value3', 'value4', 'value5']
Let’s now look at a term:
>>> term1 = samples.getTerm('value1')
>>> term1
<zope.schema.vocabulary.SimpleTerm object at ...>
As you can see, the vocabulary automatically prefixes the value:
>>> term1.value 'value1'>>> term1.token 'value1'>>> term1.title 'sample-value1'
While it looks like the title is the wrong unicode string, it is really an I18n message:
>>> type(term1.title) <class 'zope.i18nmessageid.message.Message'>>>> term1.title.default 'Title 1'>>> term1.title.domain 'zope'
Of course, it is not always acceptable to make ‘zope’ the domain of the message. You can specify the message factory when initializing the vocabulary:
>>> from zope.i18nmessageid import MessageFactory >>> exampleDomain = MessageFactory('example')>>> samples = z3c.csvvocabulary.CSVVocabulary(csvfile, exampleDomain) >>> term1 = samples.getTerm('value1') >>> term1.title.domain 'example'
The vocabulary is designed to work with small data sets, typically choices in user interfaces. All terms are created upon initialization, so the vocabulary does not detect updates in the csv file or loads the data when needed. But as I said, this is totally okay.
Encoding
By default the vocabulary expects the csv file to be latin1 encoded.
>>> csvfile = os.path.join(path, 'testing', 'data', 'utf-8.csv')
>>> wrongEncoding = z3c.csvvocabulary.CSVVocabulary(csvfile)
>>> wrongEncoding.getTerm('ae').title.default
'\xc3\xa4'
If you csv file has a different encoding you can specify it explicitly:
>>> utf8Encoded = z3c.csvvocabulary.CSVVocabulary(csvfile, encoding='utf-8')
>>> term = utf8Encoded.getTerm('ae')
>>> term.title.default
'\xe4'
CSV Message String Extraction
There is a simple function in i18nextract.py that extracts all message strings from the CSV files in a particular sub-tree. Here we just want to make sure that the function completes and some dummy data from the testing package will be used:
>>> basedir = os.path.dirname(path)>>> catalog = z3c.csvvocabulary.csvStrings(path, basedir) >>> pprint(catalog) {'sample-value1': [('...sample.csv', 1)], 'sample-value2': [('...sample.csv', 2)], 'sample-value3': [('...sample.csv', 3)], 'sample-value4': [('...sample.csv', 4)], 'sample-value5': [('...sample.csv', 5)], 'utf-8-ae': [('...utf-8.csv', 1)], 'utf-8-oe': [('...utf-8.csv', 2)]}
Change History
3.0 (2023-02-07)
Add support for Python 3.7, 3.8, 3.9, 3.10, 3.11.
Drop support for Python 2.6, 2.7, 3.3.
2.0.0 (2013-02-19)
Add Python 3.3 support.
Drop Python 2.4 and 2.5 support.
1.1.0 (2010/01/11)
enocding of csv file can now be specified CSVVocabulary(csvfile, encoding='utf-8') [fRiSi]
1.0.0
initial release
Release files for z3c.csvvocabulary 3.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| z3c.csvvocabulary-3.0.tar.gz | 8.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| z3c.csvvocabulary-3.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 17.9 kB
Release files / z3c.csvvocabulary-3.0.tar.gz
| Download URL | z3c.csvvocabulary-3.0.tar.gz |
|---|---|
| Size | 8.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
16d6d85031cdd42f19ccaafca6e6230b28118561044ba362551fbd7e672f0201
|
|
BLAKE2b-256 checksum How to use checksums |
3c99162391b9edae58e1d14b4a27a2d0a5834c44197fcc73431c5704eabaed5c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.16
|
Release files / z3c.csvvocabulary-3.0-py3-none-any.whl
| Download URL | z3c.csvvocabulary-3.0-py3-none-any.whl |
|---|---|
| Size | 9.7 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
583a1e63590ed1e4e7faee7a3fe8a37a23768c4b74ba373a1bcf792a6d4b8b4b
|
|
BLAKE2b-256 checksum How to use checksums |
2d10005537445058def4a4a69374dc5ce758eade74d7d76dd738c8626652dd3a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.16
|