File: __init__.py

package info (click to toggle)
python-georss-client 0.18-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 320 kB
  • sloc: python: 1,582; xml: 430; makefile: 8; sh: 5
file content (12 lines) | stat: -rw-r--r-- 311 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
"""Base class for GeoRSS services."""

from georss_client.consts import ATTR_ATTRIBUTION  # noqa: F401

from .consts import (  # noqa: F401
    CUSTOM_ATTRIBUTE,
    UPDATE_ERROR,
    UPDATE_OK,
    UPDATE_OK_NO_DATA,
)
from .feed import GeoRssFeed  # noqa: F401
from .feed_entry import FeedEntry  # noqa: F401