Simple AT CSV processing
Project description
Introduction
============
This is alpha software, and not considered suitable for production use. In
particular, there are few tests. Caveat emptor!
This package was sponsored by `Jon Hadley <http://www.jon-hadley.com/>`_.
Changelog
=========
0.2 - UI and architecture
-------------------------
* Change to z3c.form-based forms
* Use CA to look up importer
* Allow specification of delimiter
0.1 - Alpha
-----------
* Initial release
* Basic import features
Introduction
============
fez.atcsv is a lightweight product for importing CSV files into Plone sites.
Unlike other implementations, it leaves no persistent data in the database
aside from imported content.
To use, install the product onto your pythonpath using easy_install or pip:
easy_install fez.atcsv
or
pip install fez.atcsv
You should then add 'fez.atcsv' to your eggs = and zcml = sections in your buildout.
Restart Zope, and you should see AT CSV in your quickinstaller page. Install it,
and you should see a 'CSV Import' tab on all folder-like content objects.
The CSV you upload *must* have a first line of titles, and these titles *must* correspond
to the Archetype field names of the type you're importing. So, if you had an Archtype content
type that had a schema like this:
atapi.TextField(
'Title',
searchable = 1,
required = 0,
storage = atapi.AnnotationStorage(),
widget = atapi.StringWidget(label='Title'),
),
atapi.TextField(
'Colour',
searchable = 1,
required = 0,
storage = atapi.AnnotationStorage(),
widget = atapi.StringWidget(label='Colour'),
),
Then a valid CSV might look like this:
"Title","Colour","Size"
"Apple", "Green", "small"
"Banana", "Red", "Medium"
Note that in this case, the 'size' column won't be imported as it's not in the AT schema.
Further, notice that no validation is run on the imported data. It is assumed that
the data will be clean. (Validation may be added at a later point.)
Be aware that large file uploads may take some time.
Dan Fairs (Fez Consulting Ltd.), dan@fezconsulting.com, Author
============
This is alpha software, and not considered suitable for production use. In
particular, there are few tests. Caveat emptor!
This package was sponsored by `Jon Hadley <http://www.jon-hadley.com/>`_.
Changelog
=========
0.2 - UI and architecture
-------------------------
* Change to z3c.form-based forms
* Use CA to look up importer
* Allow specification of delimiter
0.1 - Alpha
-----------
* Initial release
* Basic import features
Introduction
============
fez.atcsv is a lightweight product for importing CSV files into Plone sites.
Unlike other implementations, it leaves no persistent data in the database
aside from imported content.
To use, install the product onto your pythonpath using easy_install or pip:
easy_install fez.atcsv
or
pip install fez.atcsv
You should then add 'fez.atcsv' to your eggs = and zcml = sections in your buildout.
Restart Zope, and you should see AT CSV in your quickinstaller page. Install it,
and you should see a 'CSV Import' tab on all folder-like content objects.
The CSV you upload *must* have a first line of titles, and these titles *must* correspond
to the Archetype field names of the type you're importing. So, if you had an Archtype content
type that had a schema like this:
atapi.TextField(
'Title',
searchable = 1,
required = 0,
storage = atapi.AnnotationStorage(),
widget = atapi.StringWidget(label='Title'),
),
atapi.TextField(
'Colour',
searchable = 1,
required = 0,
storage = atapi.AnnotationStorage(),
widget = atapi.StringWidget(label='Colour'),
),
Then a valid CSV might look like this:
"Title","Colour","Size"
"Apple", "Green", "small"
"Banana", "Red", "Medium"
Note that in this case, the 'size' column won't be imported as it's not in the AT schema.
Further, notice that no validation is run on the imported data. It is assumed that
the data will be clean. (Validation may be added at a later point.)
Be aware that large file uploads may take some time.
Dan Fairs (Fez Consulting Ltd.), dan@fezconsulting.com, Author
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
fez.atcsv-0.2.tar.gz
(10.9 kB
view hashes)
Built Distribution
fez.atcsv-0.2-py2.4.egg
(20.5 kB
view hashes)