5 FeedAPI aggregates feeds on a Drupal website by generating nodes from feeds.
6 It provides a straightforward configuration for most use cases and is
7 extensible through an API.
9 * RSS, Atom and RDF feed support
10 * CSV, ical, KML parsing is available with 3rd party modules
14 * Store data from feeds in CCK fields (Feed Element Mapper)
15 Read INSTALL.txt about how to get started using the module.
20 Take a look on the API documentation if you want to develop for FeedAPI:
26 Parser Common Syndication is generally faster than Parser SimplePie because it
27 uses PHP5-only SimpleXML library.
29 For large-scale deployments or with special needs, consider refreshing your feeds
30 with Drush. Running cron with drush (drush cron) uses significantly less memory,
31 in some cases refreshing single feeds with drush can be benefitial
32 (drush feedapi refresh [node nid]).
37 * Parser SimplePie submodule may be incompatible with other modules which include
38 SimplePie (for example Activity Stream)
39 * Do not use FeedAPI and poormanscron together (http://drupal.org/node/235328)
40 * Grant "use local files as feeds" permission when it's non-avoidable. Use it only when you know exactly what you want to do.
45 * The maintainers are Áron Novák (http://drupal.org/user/61864) and Alexander Barth (http://drupal.org/user/53995).
46 I got lots of useful responses from my mentors
47 Ken Rickard, Károly Négyesi (chx), David Norman (deekayen) and Alex Barth.
49 Sponsored by Development Seed
50 Started as a Summer of Code 2007 project.