A package to create vocabularies based on CSV files.
Project description
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
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for z3c.csvvocabulary-3.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 583a1e63590ed1e4e7faee7a3fe8a37a23768c4b74ba373a1bcf792a6d4b8b4b |
|
MD5 | 58f615c102291f09241f8c42e90cb6a0 |
|
BLAKE2b-256 | 2d10005537445058def4a4a69374dc5ce758eade74d7d76dd738c8626652dd3a |