Skip to content
Novus Examples
atom580 B

Atom Feed

A well-formed Atom feed with multiple entries — for testing feed readers and parsers.

Preview — first 20 linesatom
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <title>Novus Examples Feed</title>
  <link href="https://examples.novusstreamsolutions.com"/>
  <updated>2026-01-02T09:00:00Z</updated>
  <id>urn:uuid:novus-examples-feed</id>
  <entry>
    <title>First entry</title>
    <id>urn:1</id>
    <updated>2026-01-01T09:00:00Z</updated>
    <summary>The first entry.</summary>
  </entry>
  <entry>
    <title>Second entry</title>
    <id>urn:2</id>
    <updated>2026-01-02T09:00:00Z</updated>
    <summary>The second entry.</summary>
  </entry>
</feed>

Specifications

Format
Atom 1.0
Entries
2
Feed
Novus Examples Feed
Encoding
UTF-8

What is a .atom file?

Atom is an XML-based web syndication format standardized by the IETF as a more rigorous alternative to RSS. It publishes entries with structured metadata including unique IDs, updated timestamps, and typed content. It is used for blogs, news, and API feeds.

How to use this file

Use an example Atom file to test feed parsing, entry and metadata extraction, and clients that must support both Atom and RSS syndication.

How to use this file for testing

“Atom Feed” is a deterministic Novus Examples fixture for Feed parsing. Well-formed RSS 2.0 and Atom feeds with multiple entries — for testing feed readers and parsers.

Documented properties for this file: 2 entries · UTF-8 · Atom 1.0. Compare results against paired or grouped companions on this page when present (clean↔damaged, searchable↔scanned, or format twins) so scores stay reproducible across runs.

Download the file once, keep the path stable in CI or local scripts, and treat the spec table as the contract: dimensions, seeds, field lists, and roles are intentional. Corrupt or invalid samples are labelled as such — expect parsers to fail loudly rather than silently accept them.

Data fixtures document their exact quirks — delimiters, encodings, null handling, schema, and row counts — in the spec table. Point your parser or importer at the file and assert it handles the documented edge cases; clean and deliberately-messy siblings make before/after diffs straightforward.

Code examples

import feedparser  # pip install feedparser

feed = feedparser.parse("feed.atom")
print(feed.feed.get("title"))
for e in feed.entries[:5]:
    print(e.title, e.link)

Generated by generation/data_formats.py. Free for any use, no attribution required — license.