From a75867b80aaabd72f310c73b33380076543eee27 Mon Sep 17 00:00:00 2001 From: Alexey <1337kwiz@gmail.com> Date: Mon, 10 Jun 2024 00:14:51 +0300 Subject: [PATCH] Refactor tests, make link and enclosure a list fixes #49 --- pyproject.toml | 58 +- rss_parser/models/__init__.py | 2 - rss_parser/models/rss/channel.py | 1 - rss_parser/models/rss/item.py | 11 +- tests/__init__.py | 0 tests/conftest.py | 15 +- tests/samples/apology_line.json | 144 -- .../data.xml} | 2 + tests/samples/apology_line/result.pkl | Bin 0 -> 5639 bytes tests/samples/apology_line_plain.json | 57 - tests/samples/atom.json | 149 -- tests/samples/{atom.xml => atom/data.xml} | 0 tests/samples/atom/result.pkl | Bin 0 -> 1510 bytes tests/samples/atom_plain.json | 51 - tests/samples/custom.xml | 4 - tests/samples/generic_atom_feed.json | 252 -- .../data.xml} | 0 tests/samples/generic_atom_feed/result.pkl | Bin 0 -> 4019 bytes tests/samples/generic_atom_feed_plain.json | 103 - tests/samples/github-49/data.xml | 2109 +++++++++++++++++ tests/samples/github-49/result.pkl | Bin 0 -> 26858 bytes tests/samples/rss_2.json | 413 ---- tests/samples/{rss_2.xml => rss_2/data.xml} | 0 tests/samples/rss_2/result.pkl | Bin 0 -> 7338 bytes tests/samples/rss_2_no_category_attr.json | 409 ---- .../data.xml} | 0 .../samples/rss_2_no_category_attr/result.pkl | Bin 0 -> 7288 bytes .../samples/rss_2_no_category_attr_plain.json | 141 -- tests/samples/rss_2_plain.json | 141 -- tests/samples/rss_2_with_1_item.json | 133 -- .../data.xml} | 0 tests/samples/rss_2_with_1_item/result.pkl | Bin 0 -> 1897 bytes tests/test_parsing.py | 129 +- 33 files changed, 2205 insertions(+), 2119 deletions(-) create mode 100644 tests/__init__.py delete mode 100644 tests/samples/apology_line.json rename tests/samples/{apology_line.xml => apology_line/data.xml} (98%) create mode 100644 tests/samples/apology_line/result.pkl delete mode 100644 tests/samples/apology_line_plain.json delete mode 100644 tests/samples/atom.json rename tests/samples/{atom.xml => atom/data.xml} (100%) create mode 100644 tests/samples/atom/result.pkl delete mode 100644 tests/samples/atom_plain.json delete mode 100644 tests/samples/custom.xml delete mode 100644 tests/samples/generic_atom_feed.json rename tests/samples/{generic_atom_feed.xml => generic_atom_feed/data.xml} (100%) create mode 100644 tests/samples/generic_atom_feed/result.pkl delete mode 100644 tests/samples/generic_atom_feed_plain.json create mode 100644 tests/samples/github-49/data.xml create mode 100644 tests/samples/github-49/result.pkl delete mode 100644 tests/samples/rss_2.json rename tests/samples/{rss_2.xml => rss_2/data.xml} (100%) create mode 100644 tests/samples/rss_2/result.pkl delete mode 100644 tests/samples/rss_2_no_category_attr.json rename tests/samples/{rss_2_no_category_attr.xml => rss_2_no_category_attr/data.xml} (100%) create mode 100644 tests/samples/rss_2_no_category_attr/result.pkl delete mode 100644 tests/samples/rss_2_no_category_attr_plain.json delete mode 100644 tests/samples/rss_2_plain.json delete mode 100644 tests/samples/rss_2_with_1_item.json rename tests/samples/{rss_2_with_1_item.xml => rss_2_with_1_item/data.xml} (100%) create mode 100644 tests/samples/rss_2_with_1_item/result.pkl diff --git a/pyproject.toml b/pyproject.toml index cd13636..9a2f292 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,10 +29,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", ] -packages = [ - {include = "rss_parser"}, - {include = "rss_parser/py.typed"}, -] +packages = [{ include = "rss_parser" }, { include = "rss_parser/py.typed" }] [tool.poetry.urls] @@ -54,7 +51,11 @@ rich = "*" pytest = "^7.4.0" [tool.pytest.ini_options] -addopts = "-color=yes" +addopts = "--color=yes" +testpaths = ["tests"] +log_cli = true +log_level = "INFO" + [tool.black] line-length = 120 @@ -65,36 +66,33 @@ line-length = 120 target-version = "py38" respect-gitignore = true select = [ - "PL", # pylint - "F", # pyflakes - "E", # pycodestyle errors - "W", # pycodestyle warnings - "I", # isort - "N", # pep8-naming - "S", # flake8-bandit - "A", # flake8-builtins - "C40", # flake8-comprehensions - "T10", # flake8-debugger - "EXE", # flake8-executable - "T20", # flake8-print - "TID", # flake8-tidy-imports - "TCH", # flake8-type-checking - "ARG", # flake8-unused-arguments - "RUF", # ruff + "PL", # pylint + "F", # pyflakes + "E", # pycodestyle errors + "W", # pycodestyle warnings + "I", # isort + "N", # pep8-naming + "S", # flake8-bandit + "A", # flake8-builtins + "C40", # flake8-comprehensions + "T10", # flake8-debugger + "EXE", # flake8-executable + "T20", # flake8-print + "TID", # flake8-tidy-imports + "TCH", # flake8-type-checking + "ARG", # flake8-unused-arguments + "RUF", # ruff ] [tool.ruff.per-file-ignores] "tests/**.py" = [ - "S101", # Use of assert detected - "ARG001", # Unused function argument - "S311", # Allow use of random -] -"**/__init__.py" = [ - "F401" -] -"rss_parser/models/atom/**" = [ - "A003" + "S101", # Use of assert detected + "ARG001", # Unused function argument + "S311", # Allow use of random + "S301", # Allow use of pickle ] +"**/__init__.py" = ["F401"] +"rss_parser/models/atom/**" = ["A003"] [build-system] diff --git a/rss_parser/models/__init__.py b/rss_parser/models/__init__.py index d7a5cfa..2de4b66 100644 --- a/rss_parser/models/__init__.py +++ b/rss_parser/models/__init__.py @@ -13,8 +13,6 @@ class XMLBaseModel(pydantic.BaseModel): class Config: - # Not really sure if we want for the schema obj to be immutable, disabling for now - # allow_mutation = False alias_generator = camel_case def json_plain(self, **kw): diff --git a/rss_parser/models/rss/channel.py b/rss_parser/models/rss/channel.py index d7fa336..6cd1329 100644 --- a/rss_parser/models/rss/channel.py +++ b/rss_parser/models/rss/channel.py @@ -36,7 +36,6 @@ class OptionalChannelElementsMixin(XMLBaseModel): copyright: Optional[Tag[str]] = None # Copyright 2002, Spartanburg Herald-Journal # noqa "Copyright notice for content in the channel." - managing_editor: Optional[Tag[str]] = None # geo@herald.com (George Matesky) "Email address for person responsible for editorial content." web_master: Optional[Tag[str]] = None # betty@herald.com (Betty Guernsey) diff --git a/rss_parser/models/rss/item.py b/rss_parser/models/rss/item.py index 72fbdbd..17da5f2 100644 --- a/rss_parser/models/rss/item.py +++ b/rss_parser/models/rss/item.py @@ -1,14 +1,18 @@ from typing import Optional from rss_parser.models import XMLBaseModel +from rss_parser.models.types.only_list import OnlyList from rss_parser.models.types.tag import Tag +from rss_parser.pydantic_proxy import import_v1_pydantic + +pydantic = import_v1_pydantic() class RequiredItemElementsMixin(XMLBaseModel): title: Tag[str] = None # Venice Film Festival Tries to Quit Sinking "The title of the item." - link: Tag[str] = None # http://nytimes.com/2004/12/07FEST.html + links: OnlyList[Tag[str]] = pydantic.Field(alias="link") # http://nytimes.com/2004/12/07FEST.html "The URL of the item." description: Tag[ @@ -28,8 +32,9 @@ class OptionalItemElementsMixin(XMLBaseModel): comments: Optional[Tag[str]] = None "URL of a page for comments relating to the item." - enclosure: Optional[Tag[str]] = None - "Describes a media object that is attached to the item." + enclosures: Optional[OnlyList[Tag[str]]] = pydantic.Field(alias="enclosure", default=[]) + # enclosure: Optional[OnlyList[Tag[str]]] = None + "Describes a media object that is attached to the item.\n" "Can be a list -> https://validator.w3.org/feed/docs/warning/DuplicateEnclosure.html" guid: Optional[Tag[str]] = None "A string that uniquely identifies the item." diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/conftest.py b/tests/conftest.py index fd02e87..0746011 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,4 +1,4 @@ -from json import loads +import pickle from pathlib import Path import pytest @@ -9,7 +9,12 @@ @pytest.fixture def sample_and_result(request): - with open(sample_dir / f"{request.param[0]}.xml", encoding="utf-8") as sample: - plain = len(request.param) > 1 and request.param[1] - with open(sample_dir / f"{request.param[0]}{'_plain' if plain else ''}.json", encoding="utf-8") as result: - return sample.read(), loads(result.read()) + sample_name = request.param[0] + + with open(sample_dir / sample_name / "data.xml", encoding="utf-8") as sample_file: + sample = sample_file.read() + + with open(sample_dir / sample_name / "result.pkl", "rb") as result_file: + result = pickle.load(result_file) + + return sample, result diff --git a/tests/samples/apology_line.json b/tests/samples/apology_line.json deleted file mode 100644 index c19d110..0000000 --- a/tests/samples/apology_line.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "channel": { - "attributes": {}, - "content": { - "category": null, - "cloud": null, - "copyright": { - "attributes": {}, - "content": "\u00a9 2021 Wondery, Inc. All rights reserved" - }, - "description": { - "attributes": {}, - "content": "

If you could call a number and say you\u2019re sorry, and no one would know\u2026what would you apologize for? For fifteen years, you could call a number in Manhattan and do just that. This is the story of the line, and the man at the other end who became consumed by his own creation. He was known as \u201cMr. Apology.\u201d As thousands of callers flooded the line, confessing to everything from shoplifting to infidelity, drug dealing to murder, Mr. Apology realized he couldn\u2019t just listen. He had to do something, even if it meant risking everything. From Wondery the makers of Dr. Death and The Shrink Next Door, comes a story about empathy, deception and obsession. Marissa Bridge, who knew Mr. Apology better than anyone, hosts this six episode series.

All episodes are available now. You can binge the series ad-free on Wondery+ or on Amazon Music with a Prime membership or Amazon Music Unlimited subscription.

" - }, - "docs": null, - "generator": { - "attributes": {}, - "content": "ART19" - }, - "image": { - "attributes": {}, - "content": { - "description": null, - "height": null, - "link": { - "attributes": {}, - "content": "https://wondery.com/shows/the-apology-line/?utm_source=rss" - }, - "title": { - "attributes": {}, - "content": "The Apology Line" - }, - "url": { - "attributes": {}, - "content": "https://content.production.cdn.art19.com/images/be/e1/82/c2/bee182c2-14b7-491b-b877-272ab6754025/bd4ab6d08d7b723678a682b6e399d26523245b3ba83f61617b9b28396aba1092b101cd86707576ec021b77e143b447463342b352f8825265b15310c989b6cb93.jpeg" - }, - "width": null - } - }, - "items": [ - { - "attributes": {}, - "content": { - "author": null, - "category": null, - "comments": null, - "description": { - "attributes": {}, - "content": "

When Elon Musk posted a video of himself arriving at Twitter HQ carrying a white sink along with the message \u201clet that sink in!\u201d It marked the end of a dramatic takeover. Musk had gone from Twitter critic to \u201cChief Twit\u201d in the space of just a few months but his arrival didn\u2019t put an end to questions about his motives. Musk had earned a reputation as a business maverick. From PayPal to Tesla to SpaceX, his name was synonymous with big, earth-shattering ideas. So, what did he want with a social media platform? And was this all really in the name of free speech...or was this all in the name of Elon Musk? 


From Wondery, the makers of WeCrashed and In God We Lust, comes the wild story of how the richest man alive took charge of the world\u2019s \u201cdigital public square.\u201d


Listen to Flipping The Bird: Wondery.fm/FTB_TAL

See Privacy Policy at https://art19.com/privacy and California Privacy Notice at https://art19.com/privacy#do-not-sell-my-info.

" - }, - "enclosure": { - "attributes": { - "length": "4824502", - "type": "audio/mpeg", - "url": "https://dts.podtrac.com/redirect.mp3/chrt.fm/track/9EE2G/pdst.fm/e/rss.art19.com/episodes/7bfce2e9-7889-480a-afde-46e810e82b1a.mp3?rss_browser=BAhJIhRweXRob24tcmVxdWVzdHMGOgZFVA%3D%3D--ac965bdf6559f894a935511702ea4ac963845aca" - }, - "content": null - }, - "guid": { - "attributes": { - "is_perma_link": "false" - }, - "content": "gid://art19-episode-locator/V0/tdroPC934g1_yKpnqnfmA67RAho9P0W6PUiIY-tBw3U" - }, - "link": null, - "pub_date": { - "attributes": {}, - "content": "Mon, 01 May 2023 08:00:00 -0000" - }, - "source": null, - "title": { - "attributes": {}, - "content": "Wondery Presents - Flipping The Bird: Elon vs Twitter" - } - } - }, - { - "attributes": {}, - "content": { - "author": null, - "category": null, - "comments": null, - "description": { - "attributes": {}, - "content": "

If you could call a number and say you\u2019re sorry, and no one would know\u2026what would you apologize for? For fifteen years, you could call a number in Manhattan and do just that. This is the story of the line, and the man at the other end who became consumed by his own creation. He was known as \u201cMr. Apology.\u201d As thousands of callers flooded the line, confessing to everything from shoplifting to infidelity, drug dealing to murder, Mr. Apology realized he couldn\u2019t just listen. He had to do something, even if it meant risking everything. From Wondery the makers of Dr Death and The Shrink Next Door, comes a story about empathy, deception and obsession. Marissa Bridge, who knew Mr. Apology better than anyone, hosts this six episode series.

All episodes are available now. You can binge the series ad-free on Wondery+ or on Amazon Music with a Prime membership or Amazon Music Unlimited subscription.

See Privacy Policy at https://art19.com/privacy and California Privacy Notice at https://art19.com/privacy#do-not-sell-my-info.

" - }, - "enclosure": { - "attributes": { - "length": "2320091", - "type": "audio/mpeg", - "url": "https://dts.podtrac.com/redirect.mp3/chrt.fm/track/9EE2G/pdst.fm/e/rss.art19.com/episodes/a462e9fa-5e7b-4b0a-b992-d59fa1ca06cd.mp3?rss_browser=BAhJIhRweXRob24tcmVxdWVzdHMGOgZFVA%3D%3D--ac965bdf6559f894a935511702ea4ac963845aca" - }, - "content": null - }, - "guid": { - "attributes": { - "is_perma_link": "false" - }, - "content": "gid://art19-episode-locator/V0/2E7Nce-ZiX0Rmo017w7js5BvvKiOIMjWELujxOvJync" - }, - "link": null, - "pub_date": { - "attributes": {}, - "content": "Tue, 05 Jan 2021 03:26:59 -0000" - }, - "source": null, - "title": { - "attributes": {}, - "content": "Introducing: The Apology Line" - } - } - } - ], - "language": { - "attributes": {}, - "content": "en" - }, - "last_build_date": null, - "link": { - "attributes": {}, - "content": "https://wondery.com/shows/the-apology-line/?utm_source=rss" - }, - "managing_editor": { - "attributes": {}, - "content": "iwonder@wondery.com (Wondery)" - }, - "pub_date": null, - "rating": null, - "skip_days": null, - "skip_hours": null, - "text_input": null, - "title": { - "attributes": {}, - "content": "The Apology Line" - }, - "ttl": null, - "web_master": null - } - }, - "version": { - "attributes": {}, - "content": "2.0" - } -} \ No newline at end of file diff --git a/tests/samples/apology_line.xml b/tests/samples/apology_line/data.xml similarity index 98% rename from tests/samples/apology_line.xml rename to tests/samples/apology_line/data.xml index 84869ec..6f0b4d9 100644 --- a/tests/samples/apology_line.xml +++ b/tests/samples/apology_line/data.xml @@ -59,6 +59,7 @@ See Privacy Policy at https://art19.com/privacy and California Privacy Notice at Serial killer,TRUE CRIME,Society,This American Life,MURDER,Apology,Apology Line,Binge Worthy Documentary,New York City,Binge-worthy true crime,exhibit c 00:05:01 + https://wondery.com/shows/the-apology-line/?utm_source=rss Introducing: The Apology Line @@ -82,6 +83,7 @@ See Privacy Policy at https://art19.com/privacy and California Privacy Notice at Exhibit C,New York City,Murder,This American Life,society,serial killer,true crime,Apology Line,Binge Worthy Documentary ,Binge-worthy true crime,Apology 00:02:24 + https://wondery.com/shows/the-apology-line/?utm_source=rss diff --git a/tests/samples/apology_line/result.pkl b/tests/samples/apology_line/result.pkl new file mode 100644 index 0000000000000000000000000000000000000000..f78ee4098360a84e57db73b0f0d22b78e8717e58 GIT binary patch literal 5639 zcmeI0TW{RP6~~QA@~vo-KJ=+5GFFiwNX1<)_e#|lNWRLk)~YRAPJm!BB!|oKk{o(w zsP!5s;19sZ?L&d)wLrf{zeOMGhklAa^glzcY}YZ8!bXq>3xdVloH=vOng8#MpRfP< zKfgX@fBv-mygGBtq~ao9+M7`1n&o;~t$8hXS)Hd^OCFS(DZDSMGhssWoTcXDWX+7& z;F@J>`OWh4lSij%sS_cWsc z|4Otj)ONcaY1Jx3q$Leop~%{jMO?B_x3Z$!4il+can?3(XKnxbb?;`oh?ITC+ES?& zmAd2Gfvn(4L`=1ZK^!uV`Oa`O@}1tur4EfF=JW<^)N$F!3p&(Tzk>0TK#I9y^3v{3 za(geiH)oITiNNdWFnjnkI(qmly0w4v?)2*$4|hK8Uc;~B(9j?BgD4*K`+hv~d(`jt z`<>3v^%(7$m)%jXPeZz_*7c%bCc(i1) zb(E^xQyw8Mc41DlC?^$&vyknFZd*rE99;Fgy=iB%__D~Kk@ag?Yj6Sj*A~_udGfhQOb}Z%Nv^ObTztvB=U&K1vx;{O&Jh}+(>y*@O(-R6GnEq zjJC=3ROIAXk;6IHn#soIhVkvBRI2S&dCY5@Hp41GuG%_b4lP6~rV9sySo=z;vq|mJ zC8V@ANUNWt7DCAj-BfzYd7{wH6w*knni??V;(UuUQ_Mi7AOB&8X%f(R9WHHg1bpCleZxsmK|LrN~a4!TRjC!c22D z;VibVjD4P4!>XVmGo~MxO2dB4<|KmxB#L0qW2LHIB~3}hqx{A5zi3k612+zvA}Av8XnGC`igejt3YWXN;DSeUe0 zEg@eY(*%3u0cpxG~5Hc=V!EtSdC5xXj>N=!82 z+g?s?iU<$M9b|BeKqHy)7K`I)L=;qEVQW^*?Nfv}LBbGjBp^kW5Lq!JP<4rFgn2tu z$TUK(m8qMEPq{{9AO)Lcb;QA9cFY30lq8w3082RZY*NI1FB z4x}b^vW3I*SiBbpzss<3x@8ht%VTNCP_B5M{BoRpG)_JqC%^iUSxtKbkUFMLpA7@2 z7l74)?|V)Jw$e^W-9Z@r1X%5LJ=gU+hSkY$Y}CFN)86&rIAqS({E>Sv6K-cXA3j$7 z-Q(jg`Q5$!$4A%il#id@J-)rjLz|MfV>-D|&-lq<$w22mxs9z2I(LZM-S!6Ceg9QD zC!da!&*}lc-OIHUQ5ixZw=IEpYHpG{kmR}$k}sN!zX#+dZ9DIyf3921?!{ywN(fd7 zoeCkUpg~?{0XDu7HiaGo@1a5x$|``=E&DtNg2B1D9X89w{KfOXSxv8>7?U;r`7_W^ z$SdRqjg%(?t01XKi7G`3elMq}nRBVx3HQ3D3EF&So`@npY8za1A z$G8CG!9$A#6FozRI2CAd>z1K*2~)+Ot6?BinE|m2kPLUWPe8|1K%;c?8VUnYrd%V` zku0YK)Pxy3G%F>Vw=MFDD;9-_vPG#)W8ELvRwA`1u&Xh>2_{D<72ss22cnOW4IUE? z6fuKg$<@rv_0q?t6KIs)hVvx_uSs$Z5ld{A4iV}52}nO9WA;>&YeK-)8igRcWnkT% zu&lr!vpyCw+xuAqB2XquCj9#po+wIoC6A^^s>$0dM_csj$^&LP3%F#mpKVx~VtJS$s6bs3xiEdtf@sGdPs@uFg$OGi8p4%}g6R_YOOL zV`M!Np*fIm;5c4JxLDIVHTOI_aT~H-AIocQ{CgFd=D!MBg{6p9uQ1AAIdfYZsvWR4 z>$FE+JM?hPIwLRioK7zoIz7J=IKgN*biAQQgTb)hbG?2$h%(5q>32JB=#Tth5C(p?_1GN7Z4b19<;O;2-sEGo4uPCC zfqmywX|*xu5l;W(>U6?vZH$xlxNgR()5sxI0WZ&Mh}?wdI7yj1=w>ki4y4KBIeQn; o1#Z5__av+H`Oa>y!2a#p2e5wt`#XcZ^?~f~pX}s+4|iqjzt<1c{r~^~ literal 0 HcmV?d00001 diff --git a/tests/samples/apology_line_plain.json b/tests/samples/apology_line_plain.json deleted file mode 100644 index f55e13c..0000000 --- a/tests/samples/apology_line_plain.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "channel": { - "category": null, - "cloud": null, - "copyright": "\u00a9 2021 Wondery, Inc. All rights reserved", - "description": "

If you could call a number and say you\u2019re sorry, and no one would know\u2026what would you apologize for? For fifteen years, you could call a number in Manhattan and do just that. This is the story of the line, and the man at the other end who became consumed by his own creation. He was known as \u201cMr. Apology.\u201d As thousands of callers flooded the line, confessing to everything from shoplifting to infidelity, drug dealing to murder, Mr. Apology realized he couldn\u2019t just listen. He had to do something, even if it meant risking everything. From Wondery the makers of Dr. Death and The Shrink Next Door, comes a story about empathy, deception and obsession. Marissa Bridge, who knew Mr. Apology better than anyone, hosts this six episode series.

All episodes are available now. You can binge the series ad-free on Wondery+ or on Amazon Music with a Prime membership or Amazon Music Unlimited subscription.

", - "docs": null, - "generator": "ART19", - "image": { - "description": null, - "height": null, - "link": "https://wondery.com/shows/the-apology-line/?utm_source=rss", - "title": "The Apology Line", - "url": "https://content.production.cdn.art19.com/images/be/e1/82/c2/bee182c2-14b7-491b-b877-272ab6754025/bd4ab6d08d7b723678a682b6e399d26523245b3ba83f61617b9b28396aba1092b101cd86707576ec021b77e143b447463342b352f8825265b15310c989b6cb93.jpeg", - "width": null - }, - "items": [ - { - "author": null, - "category": null, - "comments": null, - "description": "

When Elon Musk posted a video of himself arriving at Twitter HQ carrying a white sink along with the message \u201clet that sink in!\u201d It marked the end of a dramatic takeover. Musk had gone from Twitter critic to \u201cChief Twit\u201d in the space of just a few months but his arrival didn\u2019t put an end to questions about his motives. Musk had earned a reputation as a business maverick. From PayPal to Tesla to SpaceX, his name was synonymous with big, earth-shattering ideas. So, what did he want with a social media platform? And was this all really in the name of free speech...or was this all in the name of Elon Musk? 


From Wondery, the makers of WeCrashed and In God We Lust, comes the wild story of how the richest man alive took charge of the world\u2019s \u201cdigital public square.\u201d


Listen to Flipping The Bird: Wondery.fm/FTB_TAL

See Privacy Policy at https://art19.com/privacy and California Privacy Notice at https://art19.com/privacy#do-not-sell-my-info.

", - "enclosure": null, - "guid": "gid://art19-episode-locator/V0/tdroPC934g1_yKpnqnfmA67RAho9P0W6PUiIY-tBw3U", - "link": null, - "pub_date": "Mon, 01 May 2023 08:00:00 -0000", - "source": null, - "title": "Wondery Presents - Flipping The Bird: Elon vs Twitter" - }, - { - "author": null, - "category": null, - "comments": null, - "description": "

If you could call a number and say you\u2019re sorry, and no one would know\u2026what would you apologize for? For fifteen years, you could call a number in Manhattan and do just that. This is the story of the line, and the man at the other end who became consumed by his own creation. He was known as \u201cMr. Apology.\u201d As thousands of callers flooded the line, confessing to everything from shoplifting to infidelity, drug dealing to murder, Mr. Apology realized he couldn\u2019t just listen. He had to do something, even if it meant risking everything. From Wondery the makers of Dr Death and The Shrink Next Door, comes a story about empathy, deception and obsession. Marissa Bridge, who knew Mr. Apology better than anyone, hosts this six episode series.

All episodes are available now. You can binge the series ad-free on Wondery+ or on Amazon Music with a Prime membership or Amazon Music Unlimited subscription.

See Privacy Policy at https://art19.com/privacy and California Privacy Notice at https://art19.com/privacy#do-not-sell-my-info.

", - "enclosure": null, - "guid": "gid://art19-episode-locator/V0/2E7Nce-ZiX0Rmo017w7js5BvvKiOIMjWELujxOvJync", - "link": null, - "pub_date": "Tue, 05 Jan 2021 03:26:59 -0000", - "source": null, - "title": "Introducing: The Apology Line" - } - ], - "language": "en", - "last_build_date": null, - "link": "https://wondery.com/shows/the-apology-line/?utm_source=rss", - "managing_editor": "iwonder@wondery.com (Wondery)", - "pub_date": null, - "rating": null, - "skip_days": null, - "skip_hours": null, - "text_input": null, - "title": "The Apology Line", - "ttl": null, - "web_master": null - }, - "version": "2.0" -} \ No newline at end of file diff --git a/tests/samples/atom.json b/tests/samples/atom.json deleted file mode 100644 index e67cb22..0000000 --- a/tests/samples/atom.json +++ /dev/null @@ -1,149 +0,0 @@ -{ - "feed": { - "attributes": {}, - "content": { - "authors": [], - "categories": [], - "contributors": [], - "entries": [ - { - "attributes": {}, - "content": { - "authors": [ - { - "attributes": {}, - "content": { - "email": { - "attributes": {}, - "content": "mail@example.com" - }, - "name": { - "attributes": {}, - "content": "John Doe" - }, - "uri": { - "attributes": {}, - "content": "http://example.org/" - } - } - } - ], - "categories": [], - "content": { - "attributes": { - "type": "xhtml", - "xml:base": "http://diveintomark.org/", - "xml:lang": "en" - }, - "content": "[Update: The Atom draft is finished.]" - }, - "contributors": [ - { - "attributes": {}, - "content": { - "email": null, - "name": { - "attributes": {}, - "content": "John Doe" - }, - "uri": null - } - } - ], - "id": { - "attributes": {}, - "content": "tag:example.org,2003:3.2397" - }, - "links": [ - { - "attributes": { - "href": "http://example.org/2005/04/02/atom", - "rel": "alternate", - "type": "text/html" - }, - "content": null - }, - { - "attributes": { - "href": "http://example.org/audio/ph34r_my_podcast.mp3", - "length": "1337", - "rel": "enclosure", - "type": "audio/mpeg" - }, - "content": null - } - ], - "published": { - "attributes": {}, - "content": "2003-12-13T08:29:29-04:00" - }, - "rights": null, - "source": null, - "summary": null, - "title": { - "attributes": {}, - "content": "Atom draft-07 snapshot" - }, - "updated": { - "attributes": {}, - "content": "2005-07-31T12:29:29+00:00" - } - } - } - ], - "generator": { - "attributes": { - "uri": "http://www.example.com/", - "version": "1.0" - }, - "content": "Example Toolkit" - }, - "icon": null, - "id": { - "attributes": {}, - "content": "tag:example.org,2003:3" - }, - "links": [ - { - "attributes": { - "href": "http://example.org/", - "hreflang": "en", - "rel": "alternate", - "type": "text/html" - }, - "content": null - }, - { - "attributes": { - "href": "http://example.org/feed.atom", - "rel": "self", - "type": "application/atom+xml" - }, - "content": null - } - ], - "logo": null, - "rights": { - "attributes": {}, - "content": "Copyright (c) 2003, John Doe" - }, - "subtitle": { - "attributes": { - "type": "html" - }, - "content": "A lot of effort\n went into making this effortless" - }, - "title": { - "attributes": { - "type": "text" - }, - "content": "Title" - }, - "updated": { - "attributes": {}, - "content": "2005-07-31T12:29:29+00:00" - } - } - }, - "version": null -} \ No newline at end of file diff --git a/tests/samples/atom.xml b/tests/samples/atom/data.xml similarity index 100% rename from tests/samples/atom.xml rename to tests/samples/atom/data.xml diff --git a/tests/samples/atom/result.pkl b/tests/samples/atom/result.pkl new file mode 100644 index 0000000000000000000000000000000000000000..11a703b4fe362287f0541c9e67386601490d3832 GIT binary patch literal 1510 zcmbVM&ubhv6n5iT?|N}*AgP;@n2JDQOOl<9H^F2HB_Ykl0UwG>55X9D_w7hnBMtfy z+krqXNiMoY{mV*E{bSlEY1ZD9J#}E1dD7GS^?je-7k~WSSxe8mF!0?spbb|t9Qa}m zFbipMs-y*Jvw=UFg9%5`WJPr7PpO4Uwab1h`fGmTtkPfj6_VDFkNMudVv_u#AoxDD z*&U<43(l`Q&9Q(E)Rc>G;MfgZrG7*6idlm@n~ggW+^}39D|~N;1z3*3mwrEo7ya&^ zTVMBfcCf#|Zu?$zd8;IZ&(YkB<_v_TXz%}n&;GOTzgl~>_9^@tKH&Qi-;~^M80GX7 zFn5Ghi2g&^)Mj!Zf4I=nWDlBM;?FV1jiv~ZN7S3(SY>nFm(=ZSI?urt2N2AB(=utV^ zEvdzn&aH?Jaw?Q@`YL*#x*1nx-9Q!mh5%VvhIt;2$9tFQ9;`^0k2P%kNFUc1$Bmjz zsj9F&f8bDJ{av0BWYupvaM^^rLNlGYzK+?SNDglmY9UyeTA%B!Mm0L ztdA{k9U-(8NYDtEZdLTn%SDYq;Rpfn z1xL~11PY-l6%N>~LdJsiZ7qyHgAG+BAaWt%p}-QqMi)+9mz(te}6qOos?u)EThf^K`dYlPr^lz0OXZ d!$h+<>qYt^Dm>sgj+4uO`2?5uR_2cz{tHNiFuMQ% literal 0 HcmV?d00001 diff --git a/tests/samples/atom_plain.json b/tests/samples/atom_plain.json deleted file mode 100644 index 67ab469..0000000 --- a/tests/samples/atom_plain.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "feed": { - "authors": [], - "categories": [], - "contributors": [], - "entries": [ - { - "authors": [ - { - "email": "mail@example.com", - "name": "John Doe", - "uri": "http://example.org/" - } - ], - "categories": [], - "content": "[Update: The Atom draft is finished.]", - "contributors": [ - { - "email": null, - "name": "John Doe", - "uri": null - } - ], - "id": "tag:example.org,2003:3.2397", - "links": [ - null, - null - ], - "published": "2003-12-13T08:29:29-04:00", - "rights": null, - "source": null, - "summary": null, - "title": "Atom draft-07 snapshot", - "updated": "2005-07-31T12:29:29+00:00" - } - ], - "generator": "Example Toolkit", - "icon": null, - "id": "tag:example.org,2003:3", - "links": [ - null, - null - ], - "logo": null, - "rights": "Copyright (c) 2003, John Doe", - "subtitle": "A lot of effort\n went into making this effortless", - "title": "Title", - "updated": "2005-07-31T12:29:29+00:00" - }, - "version": null -} \ No newline at end of file diff --git a/tests/samples/custom.xml b/tests/samples/custom.xml deleted file mode 100644 index d050924..0000000 --- a/tests/samples/custom.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - Custom tag data - \ No newline at end of file diff --git a/tests/samples/generic_atom_feed.json b/tests/samples/generic_atom_feed.json deleted file mode 100644 index 9ff4c81..0000000 --- a/tests/samples/generic_atom_feed.json +++ /dev/null @@ -1,252 +0,0 @@ -{ - "feed": { - "attributes": { - "xmlns": "http://www.w3.org/2005/Atom" - }, - "content": { - "authors": [ - { - "attributes": {}, - "content": { - "email": null, - "name": { - "attributes": {}, - "content": "FYIcenter.com" - }, - "uri": null - } - } - ], - "categories": [ - { - "attributes": { - "term": "Programming" - }, - "content": null - }, - { - "attributes": { - "term": "Computer" - }, - "content": null - }, - { - "attributes": { - "term": "Developer" - }, - "content": null - } - ], - "contributors": [], - "entries": [ - { - "attributes": {}, - "content": { - "authors": [ - { - "attributes": {}, - "content": { - "email": null, - "name": { - "attributes": {}, - "content": "FYIcenter.com" - }, - "uri": null - } - } - ], - "categories": [ - { - "attributes": { - "term": "Microsoft" - }, - "content": null - } - ], - "content": null, - "contributors": [], - "id": { - "attributes": {}, - "content": "http://dev.fyicenter.com/1000702_Use_Developer_Portal_Internally.html" - }, - "links": [ - { - "attributes": { - "href": "http://dev.fyicenter.com/1000702_Use_Developer_Portal_Internally.ht ml", - "rel": "alternate" - }, - "content": null - } - ], - "published": null, - "rights": null, - "source": null, - "summary": { - "attributes": { - "type": "html" - }, - "content": "How to \nuse the Developer Portal internally by you as the publisher? Normally, \nthe Developer Portal of an Azure API Management Service is used by \nclient developers. But as a publisher, you can also use the Developer \nPortal to test API operations internally. You can follow this tutorial \nto access the ... - Rank: 120; Updated: 2017-09-20 13:29:06 -> Source" - }, - "title": { - "attributes": {}, - "content": "Use Developer Portal Internally" - }, - "updated": { - "attributes": {}, - "content": "2017-09-20T13:29:08+02:00" - } - } - }, - { - "attributes": {}, - "content": { - "authors": [ - { - "attributes": {}, - "content": { - "email": null, - "name": { - "attributes": {}, - "content": "FYIcenter.com" - }, - "uri": null - } - } - ], - "categories": [ - { - "attributes": { - "term": "Microsoft" - }, - "content": null - } - ], - "content": null, - "contributors": [], - "id": { - "attributes": {}, - "content": "http://dev.fyicenter.com/1000701_Using_Azure_API_Management_Developer\n_Portal.html" - }, - "links": [ - { - "attributes": { - "href": "http://dev.fyicenter.com/1000701_Using_Azure_API_Management_Develop er_Portal.html", - "rel": "alternate" - }, - "content": null - } - ], - "published": null, - "rights": null, - "source": null, - "summary": { - "attributes": { - "type": "html" - }, - "content": "Where to \nfind tutorials on Using Azure API Management Developer Portal? Here is \na list of tutorials to answer many frequently asked questions compiled \nby FYIcenter.com team on Using Azure API Management Developer Portal: \nUse Developer Portal Internally What Can I See on Developer Portal What \nI You T... - Rank: 120; Updated: 2017-09-20 13:29:06 -> Source" - }, - "title": { - "attributes": {}, - "content": "Using Azure API Management Developer Portal" - }, - "updated": { - "attributes": {}, - "content": "2017-09-20T13:29:07+02:00" - } - } - }, - { - "attributes": {}, - "content": { - "authors": [ - { - "attributes": {}, - "content": { - "email": null, - "name": { - "attributes": {}, - "content": "FYIcenter.com" - }, - "uri": null - } - } - ], - "categories": [ - { - "attributes": { - "term": "Microsoft" - }, - "content": null - } - ], - "content": null, - "contributors": [], - "id": { - "attributes": {}, - "content": "http://dev.fyicenter.com/1000700_Add_API_to_API_Products.html" - }, - "links": [ - { - "attributes": { - "href": "http://dev.fyicenter.com/1000700_Add_API_to_API_Products.html", - "rel": "alternate" - }, - "content": null - } - ], - "published": null, - "rights": null, - "source": null, - "summary": { - "attributes": { - "type": "html" - }, - "content": "How to \nadd an API to an API product for internal testing on the Publisher \nPortal of an Azure API Management Service? You can follow this tutorial \nto add an API to an API product on the Publisher Portal of an Azure API \nManagement Service. 1. Click API from the left menu on the Publisher \nPortal. You s... - Rank: 119; Updated: 2017-09-20 13:29:06 -> Sour\nce" - }, - "title": { - "attributes": {}, - "content": "Add API to API Products" - }, - "updated": { - "attributes": {}, - "content": "2017-09-20T13:29:06+02:00" - } - } - } - ], - "generator": null, - "icon": null, - "id": { - "attributes": {}, - "content": "http://dev.fyicenter.com/atom_xml.php" - }, - "links": [ - { - "attributes": { - "href": "http://dev.fyicenter.com/atom_xml.php", - "rel": "self" - }, - "content": null - } - ], - "logo": null, - "rights": { - "attributes": {}, - "content": "Copyright (c) 2017 FYIcenter.com" - }, - "subtitle": { - "attributes": {}, - "content": "FYI (For Your Information) Center for Software Developers with \nlarge collection of FAQs, tutorials and tips codes for application and \nwWeb developers on Java, .NET, C, PHP, JavaScript, XML, HTML, CSS, RSS, \nMySQL and Oracle - dev.fyicenter.com." - }, - "title": { - "attributes": {}, - "content": "FYI Center for Software Developers" - }, - "updated": { - "attributes": {}, - "content": "2017-09-22T03:58:52+02:00" - } - } - }, - "version": null -} \ No newline at end of file diff --git a/tests/samples/generic_atom_feed.xml b/tests/samples/generic_atom_feed/data.xml similarity index 100% rename from tests/samples/generic_atom_feed.xml rename to tests/samples/generic_atom_feed/data.xml diff --git a/tests/samples/generic_atom_feed/result.pkl b/tests/samples/generic_atom_feed/result.pkl new file mode 100644 index 0000000000000000000000000000000000000000..e1cd354fb7f01fcda3c8a9c8a98ccc9c6d641458 GIT binary patch literal 4019 zcmdT{U2oeq6b)LZNwgKi(5?ga)w=lbMECYr9b|BZ^nLJWQ*zC z0hKBcQPxUJT}u7T4tgTeG}8GEUdVu|>{+&m4_V2~a6F=EPZZ;JxRp9YZ?u>eB$>O=0nL9z)1Hyw|v|8r0tIN<2e9czN zH*b`IQL{4nwWFlBT0SwJ_2-GCOY1vZ)lPs5+!@`wanvhAb!}7hK?`saML{zPqo5%V z8iG;Kus48#NPs9ibGRw;F0_OUO0P4DoIA5R(0s_Qs|fK|(Q*j!;+?r9U!8)J^Jb}ZfE-N^FJER&XYQ|s%NIYL zNBzmzN;+?*JQoqoUYgqlbL&&C3EtnE*@jQ<&HSG2X20V1H~iZ0aw-p%fH_CGJXv$t z`_D3Vsl_h0*at0krFg+u_{f@>s37dK7P~ss4fgp_FQ+KR?iu?~N5u%DUe3=Ba-?&} zk)e>lNJ&sWM(V+?*;t?4c$=#6m{Ey*L*3{Gkw4;!0ug~tWHQ;0i_2ZuGc^PuBlk)8nqf7- zIRo7Am=O(4l#DG@Fly`{&n=(gY*}%6_#djqG|+Lzp>w8!uxd_#HvwBJouUBdu(f1m z*K-G7y#`uxnzLK>O?G>z8FN-M*4Q`yOJP_&Ll|nEb>FvwpoRV0k-|?rttM#zyiE-l zb`He%ZFR@GZV77(ZJbAm6;+NZtu4bSa)vFYP1q^AItjy4eRiL4cZynlT0F0~E}Den zo}EMa9kwVg)Lm%uz}vSOcBKey8m2u1>}8S@^U50xHLd~ml{eTqoQ{&5?v6)K>==f8 z|CeYSqxOdgT)R?;3e)rrfqMdtFHA>cY6^RP-e?(j!^-{+n(s*xh6pfhfviT1O_*bE&^D&mplOdRmN{)a9Q6rS$We3(&jFf&!-?!s z@UUN{o+*K*aBi$WP?aO)lbFgJ#0sbRR9S;0juF7t5povGW&bhVJJM(y2>(D1NCn*1 z_YW)3tiaCZPQ{M3JsHHh0#CN@S77s@`E9n_71%XD&i0`F;J&r_qa+@u*dqJKPe*RC z^>41zDk;kGJXRdbzC2M&aTmkR&mnhX7TZ%-QQxL~V+_|{n7uoFlO{p@%K65PsUV)t hVxW=A(vORD`u)D!zwQdzt1j1SUsu;L8ANH~{sUMHg1GHow to \nuse the Developer Portal internally by you as the publisher? Normally, \nthe Developer Portal of an Azure API Management Service is used by \nclient developers. But as a publisher, you can also use the Developer \nPortal to test API operations internally. You can follow this tutorial \nto access the ... - Rank: 120; Updated: 2017-09-20 13:29:06 -> Source", - "title": "Use Developer Portal Internally", - "updated": "2017-09-20T13:29:08+02:00" - }, - { - "authors": [ - { - "email": null, - "name": "FYIcenter.com", - "uri": null - } - ], - "categories": [ - null - ], - "content": null, - "contributors": [], - "id": "http://dev.fyicenter.com/1000701_Using_Azure_API_Management_Developer\n_Portal.html", - "links": [ - null - ], - "published": null, - "rights": null, - "source": null, - "summary": "Where to \nfind tutorials on Using Azure API Management Developer Portal? Here is \na list of tutorials to answer many frequently asked questions compiled \nby FYIcenter.com team on Using Azure API Management Developer Portal: \nUse Developer Portal Internally What Can I See on Developer Portal What \nI You T... - Rank: 120; Updated: 2017-09-20 13:29:06 -> Source", - "title": "Using Azure API Management Developer Portal", - "updated": "2017-09-20T13:29:07+02:00" - }, - { - "authors": [ - { - "email": null, - "name": "FYIcenter.com", - "uri": null - } - ], - "categories": [ - null - ], - "content": null, - "contributors": [], - "id": "http://dev.fyicenter.com/1000700_Add_API_to_API_Products.html", - "links": [ - null - ], - "published": null, - "rights": null, - "source": null, - "summary": "How to \nadd an API to an API product for internal testing on the Publisher \nPortal of an Azure API Management Service? You can follow this tutorial \nto add an API to an API product on the Publisher Portal of an Azure API \nManagement Service. 1. Click API from the left menu on the Publisher \nPortal. You s... - Rank: 119; Updated: 2017-09-20 13:29:06 -> Sour\nce", - "title": "Add API to API Products", - "updated": "2017-09-20T13:29:06+02:00" - } - ], - "generator": null, - "icon": null, - "id": "http://dev.fyicenter.com/atom_xml.php", - "links": [ - null - ], - "logo": null, - "rights": "Copyright (c) 2017 FYIcenter.com", - "subtitle": "FYI (For Your Information) Center for Software Developers with \nlarge collection of FAQs, tutorials and tips codes for application and \nwWeb developers on Java, .NET, C, PHP, JavaScript, XML, HTML, CSS, RSS, \nMySQL and Oracle - dev.fyicenter.com.", - "title": "FYI Center for Software Developers", - "updated": "2017-09-22T03:58:52+02:00" - }, - "version": null -} \ No newline at end of file diff --git a/tests/samples/github-49/data.xml b/tests/samples/github-49/data.xml new file mode 100644 index 0000000..1a06060 --- /dev/null +++ b/tests/samples/github-49/data.xml @@ -0,0 +1,2109 @@ + + + + www.rbc.ru + https://www.rbc.ru + + 30 + ru + + http://pics.rbc.ru/img/fp_v4/skin/img/v6-logo.png + https://www.rbc.ru + Главные новости :: www.rbc.ru + + + <![CDATA[Чешский футболист пропустит Евро из-за падения с велосипеда]]> + https://www.rbc.ru/sport/09/06/2024/666592289a79475b6a241776 + Sun, 09 Jun 2024 14:42:31 +0300 + + Спорт + Анна Сатдинова + rssexport.rbc.ru:sport:666592289a79475b6a241776 + + 14:42:31 + 09.06.2024 + https://www.rbc.ru/sport/09/06/2024/666592289a79475b6a241776 + + 666592289a79475b6a241776 + article + 1717933351 + Sun, 09 Jun 2024 14:42:33 +0300 + sport + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/3/15/347179326576153.png + image/png + original + copyright + + Михал Садилек

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/0/82/347178424573820.jpeg + image/jpeg + original + limited + + Килиан Мбаппе

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/4/03/347178342040034.jpeg + image/jpeg + original + limited + + Аркадиуш Милик

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/5/25/347178314474255.jpeg + image/jpeg + original + limited + + Михаил Мудрик

]]>
+
+ +
+
+ + <![CDATA[В хоккейном СКА отреагировали на пожар на домашней арене]]> + https://www.rbc.ru/sport/09/06/2024/66658b889a794752eee761e9 + Sun, 09 Jun 2024 14:31:45 +0300 + + Спорт + Анна Сатдинова + rssexport.rbc.ru:sport:66658b889a794752eee761e9 + + 14:31:45 + 09.06.2024 + https://www.rbc.ru/sport/09/06/2024/66658b889a794752eee761e9 + + 66658b889a794752eee761e9 + article + 1717932705 + Sun, 09 Jun 2024 14:31:47 +0300 + sport + + + + + https://s0.rbk.ru/v6_top_pics/media/img/1/67/347179310741671.png + image/png + original + copyright + + «СКА Арена» в Санкт-Петербурге

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/1/86/347177547708861.jpeg + image/jpeg + original + limited + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/5/74/347079323125745.jpeg + image/jpeg + original + limited + + «СКА Арена»

]]>
+
+ + + + +
+
+ + <![CDATA[Парковки по всей Москве сделают бесплатными в День России]]> + https://www.rbc.ru/rbcfreenews/66658e8b9a7947bf5129beda + Sun, 09 Jun 2024 14:27:10 +0300 + + Общество + rssexport.rbc.ru:society:66658e8b9a7947bf5129beda + + 14:27:10 + 09.06.2024 + https://www.rbc.ru/rbcfreenews/66658e8b9a7947bf5129beda + + 66658e8b9a7947bf5129beda + short_news + 1717932430 + Sun, 09 Jun 2024 14:56:05 +0300 + society + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/6/92/347179332501926.jpeg + image/jpeg + original + copyright + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/6/26/347158669327266.jpeg + image/jpeg + original + limited + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/2/00/347142231644002.jpeg + image/jpeg + original + limited + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/6/65/347140246903656.jpeg + image/jpeg + original + limited + + + + + + + <![CDATA[В Белгороде и Курской области объявили ракетную опасность]]> + https://www.rbc.ru/rbcfreenews/66658f8f9a79473cc364f058 + Sun, 09 Jun 2024 14:24:59 +0300 + + Политика + rssexport.rbc.ru:politics:66658f8f9a79473cc364f058 + + 14:24:59 + 09.06.2024 + https://www.rbc.ru/rbcfreenews/66658f8f9a79473cc364f058 + + 66658f8f9a79473cc364f058 + short_news + 1717932299 + Sun, 09 Jun 2024 14:52:11 +0300 + politics + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/4/76/347179329546764.jpeg + image/jpeg + original + copyright + + Белгород

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/2/40/347179255944402.jpeg + image/jpeg + original + limited + + Белгород

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/8/74/347179234584748.jpeg + image/jpeg + original + limited + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/5/90/347179180733905.jpeg + image/jpeg + original + limited + + Воронеж

]]>
+
+ +
+
+ + <![CDATA[Гладков сообщил об атаке двух дронов на село Безымено]]> + https://www.rbc.ru/rbcfreenews/66658c0a9a794744d3f3efde + Sun, 09 Jun 2024 14:20:11 +0300 + + Политика + rssexport.rbc.ru:politics:66658c0a9a794744d3f3efde + + 14:20:11 + 09.06.2024 + https://www.rbc.ru/rbcfreenews/66658c0a9a794744d3f3efde + + 66658c0a9a794744d3f3efde + short_news + 1717932011 + Sun, 09 Jun 2024 14:50:28 +0300 + politics + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/2/86/347179315001862.jpeg + image/jpeg + original + copyright + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/2/40/347179255944402.jpeg + image/jpeg + original + limited + + Белгород

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/8/74/347179234584748.jpeg + image/jpeg + original + limited + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/5/90/347179180733905.jpeg + image/jpeg + original + limited + + Воронеж

]]>
+
+ +
+
+ + <![CDATA[Минздрав Газы сообщил о 274 погибших в ходе операции ЦАХАЛ в Нусейрате]]> + https://www.rbc.ru/politics/09/06/2024/6665872f9a794708d5a2ffe4 + Sun, 09 Jun 2024 14:12:05 +0300 + + Политика + Илья Пламенев + rssexport.rbc.ru:politics:6665872f9a794708d5a2ffe4 + + 14:12:05 + 09.06.2024 + https://www.rbc.ru/politics/09/06/2024/6665872f9a794708d5a2ffe4 + + 6665872f9a794708d5a2ffe4 + article + 1717931525 + Sun, 09 Jun 2024 14:18:40 +0300 + politics + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/8/62/347179305621628.jpeg + image/jpeg + original + copyright + + Нейсурат, сектор Газа

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/1/14/347179010398141.jpeg + image/jpeg + original + limited + + + + + + + + + + +
+ + <![CDATA[На греческом острове нашли тело британского телеведущего Мосли]]> + https://www.rbc.ru/rbcfreenews/666581469a79474b50b4c902 + Sun, 09 Jun 2024 14:03:23 +0300 + + Политика + rssexport.rbc.ru:politics:666581469a79474b50b4c902 + + 14:03:23 + 09.06.2024 + https://www.rbc.ru/rbcfreenews/666581469a79474b50b4c902 + + 666581469a79474b50b4c902 + short_news + 1717931003 + Sun, 09 Jun 2024 14:07:45 +0300 + politics + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/7/85/347179291561857.jpeg + image/jpeg + original + copyright + + Обстановка на месте происшествия на острове Сими, Греция

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/9/47/347177862568479.jpeg + image/jpeg + original + limited + + Майкл Мосли

]]>
+
+ +
+
+ + <![CDATA[Marca узнала о планах «Реала» купить самого дорогого немецкого футболиста]]> + https://www.rbc.ru/sport/09/06/2024/6665858a9a7947709634d767 + Sun, 09 Jun 2024 13:59:14 +0300 + + Спорт + Анна Сатдинова + rssexport.rbc.ru:sport:6665858a9a7947709634d767 + + 13:59:14 + 09.06.2024 + https://www.rbc.ru/sport/09/06/2024/6665858a9a7947709634d767 + + 6665858a9a7947709634d767 + article + 1717930754 + Sun, 09 Jun 2024 14:16:13 +0300 + sport + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/7/94/347179307185947.png + image/png + original + copyright + + Флориан Вирц

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/7/79/347175838185797.jpeg + image/jpeg + original + limited + + Футболисты ФК «Жирона»

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/9/75/347160438326759.jpeg + image/jpeg + original + limited + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/5/26/347163878988265.jpeg + image/jpeg + original + limited + + Трофей Лиги Европы

]]>
+
+ +
+
+ + <![CDATA[Большинство немцев выступили за возвращение обязательного призыва в армию]]> + https://www.rbc.ru/politics/09/06/2024/66657daf9a7947174df08354 + Sun, 09 Jun 2024 13:53:29 +0300 + + Политика + Илья Пламенев + rssexport.rbc.ru:politics:66657daf9a7947174df08354 + + 13:53:29 + 09.06.2024 + https://www.rbc.ru/politics/09/06/2024/66657daf9a7947174df08354 + + 66657daf9a7947174df08354 + article + 1717930409 + Sun, 09 Jun 2024 14:00:14 +0300 + politics + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/3/58/347179281459583.jpeg + image/jpeg + original + copyright + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/0/59/347179263271590.jpeg + image/jpeg + original + limited + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/2/90/347176011297902.jpeg + image/jpeg + original + limited + + Борис Писториус

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/3/87/347081866152873.jpeg + image/jpeg + original + limited + + Борис Писториус

]]>
+
+ +
+
+ + <![CDATA[В Херсонской области объявили авиационную опасность]]> + https://www.rbc.ru/rbcfreenews/666586ee9a7947ce6ee276fb + Sun, 09 Jun 2024 13:45:37 +0300 + + Политика + rssexport.rbc.ru:politics:666586ee9a7947ce6ee276fb + + 13:45:37 + 09.06.2024 + https://www.rbc.ru/rbcfreenews/666586ee9a7947ce6ee276fb + + 666586ee9a7947ce6ee276fb + short_news + 1717929937 + Sun, 09 Jun 2024 14:03:15 +0300 + politics + + + + + https://s0.rbk.ru/v6_top_pics/media/img/9/51/347179303402519.jpeg + image/jpeg + original + copyright + + Херсон

]]>
+
+ + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/6/87/347178532990876.jpeg + image/jpeg + original + limited + + Обстановка в селе Садовое, 7 июля 2024 г.

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/4/46/347178355570464.jpeg + image/jpeg + original + limited + + + +
+
+ + <![CDATA[Минобороны сообщило о сбитом украинском вертолете Ми-8]]> + https://www.rbc.ru/rbcfreenews/666584719a79473e002ab642 + Sun, 09 Jun 2024 13:36:12 +0300 + + Политика + rssexport.rbc.ru:politics:666584719a79473e002ab642 + + 13:36:12 + 09.06.2024 + https://www.rbc.ru/rbcfreenews/666584719a79473e002ab642 + + 666584719a79473e002ab642 + short_news + 1717929372 + Sun, 09 Jun 2024 13:55:01 +0300 + politics + + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/1/98/347179300588981.jpeg + image/jpeg + original + copyright + + Вертолёт Ми-8

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/8/78/347179254085788.jpeg + image/jpeg + original + limited + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/4/36/347178457849364.jpeg + image/jpeg + original + limited + + Вертолёт Ми-8

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/6/29/347178376874296.jpeg + image/jpeg + original + limited + + + +
+
+ + <![CDATA[Будущий игрок «Реала» Эндрик повторил достижение Пеле в сборной Бразилии]]> + https://www.rbc.ru/sport/09/06/2024/66657dcc9a794797be6910e8 + Sun, 09 Jun 2024 13:29:42 +0300 + + Спорт + Анна Сатдинова + rssexport.rbc.ru:sport:66657dcc9a794797be6910e8 + + + 13:29:42 + 09.06.2024 + https://www.rbc.ru/sport/09/06/2024/66657dcc9a794797be6910e8 + + 66657dcc9a794797be6910e8 + article + 1717928982 + Sun, 09 Jun 2024 13:36:59 +0300 + sport + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/8/69/347179274026698.png + image/png + original + copyright + + Эндрик (в центре)

]]>
+
+ + https://img.youtube.com/vi/d89n5rTI-q4/0.jpg + image/jpeg + original + copyright + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/9/81/347115319717819.jpeg + image/jpeg + original + limited + + Эндрик

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/3/38/347019316692383.jpeg + image/jpeg + original + limited + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/7/17/347157660389177.png + image/png + original + limited + + Джон Кеннеди

]]>
+
+ +
+
+ + <![CDATA[Орбан рассказал, от чего зависит мир на Украине]]> + https://www.rbc.ru/rbcfreenews/66657b489a794731ffe7280a + Sun, 09 Jun 2024 13:19:30 +0300 + + Политика + rssexport.rbc.ru:politics:66657b489a794731ffe7280a + + 13:19:30 + 09.06.2024 + https://www.rbc.ru/rbcfreenews/66657b489a794731ffe7280a + + 66657b489a794731ffe7280a + short_news + 1717928370 + Sun, 09 Jun 2024 13:27:05 +0300 + politics + + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/2/36/347179274146362.jpeg + image/jpeg + original + copyright + + Виктор Орбан

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/5/15/347178955131155.jpeg + image/jpeg + original + limited + + Виктор Орбан

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/2/27/346841457775272.jpg + image/jpeg + original + limited + + Марчин Пшидач

]]>
+
+ + + + +
+
+ + <![CDATA[В Минобороны Украины назвали число женщин в рядах ВСУ]]> + https://www.rbc.ru/politics/09/06/2024/6665736d9a7947fffe234918 + Sun, 09 Jun 2024 13:09:35 +0300 + + Политика + Юлия Овчинникова + rssexport.rbc.ru:politics:6665736d9a7947fffe234918 + + 13:09:35 + 09.06.2024 + https://www.rbc.ru/politics/09/06/2024/6665736d9a7947fffe234918 + + 6665736d9a7947fffe234918 + article + 1717927775 + Sun, 09 Jun 2024 13:21:15 +0300 + politics + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/8/78/347179254085788.jpeg + image/jpeg + original + copyright + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/3/45/347045423790453.jpeg + image/jpeg + original + limited + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/6/01/347034285362016.jpeg + image/jpeg + original + limited + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/7/97/347172567331977.jpeg + image/jpeg + original + limited + + + + + + + <![CDATA[В Миргороде прогремели взрывы]]> + https://www.rbc.ru/politics/09/06/2024/666579f39a79471a2aa3bb18 + Sun, 09 Jun 2024 13:04:35 +0300 + + Политика + Илья Пламенев + rssexport.rbc.ru:politics:666579f39a79471a2aa3bb18 + + 13:04:35 + 09.06.2024 + https://www.rbc.ru/politics/09/06/2024/666579f39a79471a2aa3bb18 + + 666579f39a79471a2aa3bb18 + article + 1717927475 + Sun, 09 Jun 2024 13:54:10 +0300 + politics + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/0/23/347179272525230.jpeg + image/jpeg + original + copyright + + + + + + + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/3/48/347179117697483.jpeg + image/jpeg + original + limited + + + + + + + <![CDATA[Уроженец Дагестана Имавов победил американца в главном бою турнира UFC]]> + https://www.rbc.ru/sport/09/06/2024/666576bf9a794710b7db95ad + Sun, 09 Jun 2024 12:58:17 +0300 + + Спорт + Анна Сатдинова + rssexport.rbc.ru:sport:666576bf9a794710b7db95ad + + 12:58:17 + 09.06.2024 + https://www.rbc.ru/sport/09/06/2024/666576bf9a794710b7db95ad + + 666576bf9a794710b7db95ad + article + 1717927097 + Sun, 09 Jun 2024 13:07:13 +0300 + sport + + + + + https://s0.rbk.ru/v6_top_pics/media/img/6/78/347179267448786.png + image/png + original + copyright + + Нассурдин Имавов

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/0/60/347175745717600.jpeg + image/jpeg + original + limited + + Чарльз Оливейра

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/7/27/347176585073277.jpeg + image/jpeg + original + limited + + Дастин Порье и Ислам Махачев

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/5/88/347173202481885.png + image/png + original + limited + + Дональд Трамп

]]>
+
+ +
+
+ + <![CDATA[Захарова заявила о «кознях Запада» перед ПМЭФ]]> + https://www.rbc.ru/rbcfreenews/6665767e9a794710b7db95a8 + Sun, 09 Jun 2024 12:55:00 +0300 + + Политика + rssexport.rbc.ru:politics:6665767e9a794710b7db95a8 + + 12:55:00 + 09.06.2024 + https://www.rbc.ru/rbcfreenews/6665767e9a794710b7db95a8 + + 6665767e9a794710b7db95a8 + short_news + 1717926900 + Sun, 09 Jun 2024 13:03:51 +0300 + politics + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/2/68/347179269365682.jpeg + image/jpeg + original + copyright + + Мария Захарова

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/2/13/347178455295132.jpeg + image/jpeg + original + limited + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/5/68/347177650436685.jpeg + image/jpeg + original + limited + + Владимир Путин и Александр Беглов

]]>
+
+ + + + +
+
+ + <![CDATA[В Германии решили увеличить число резервистов]]> + https://www.rbc.ru/politics/09/06/2024/666570559a794747ceae4f9c + Sun, 09 Jun 2024 12:52:02 +0300 + + Политика + Илья Пламенев + rssexport.rbc.ru:politics:666570559a794747ceae4f9c + + 12:52:02 + 09.06.2024 + https://www.rbc.ru/politics/09/06/2024/666570559a794747ceae4f9c + + 666570559a794747ceae4f9c + article + 1717926722 + Sun, 09 Jun 2024 13:03:56 +0300 + politics + + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/0/59/347179263271590.jpeg + image/jpeg + original + copyright + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/4/47/347177893251474.jpeg + image/jpeg + original + limited + + Пусковая установка зенитно-ракетного комплекса Patriot

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/0/17/347176779986170.jpeg + image/jpeg + original + limited + + Олаф Шольц

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/2/90/347176011297902.jpeg + image/jpeg + original + limited + + Борис Писториус

]]>
+
+ +
+
+ + <![CDATA[Гладков рассказал о последствиях атаки на Шебекино]]> + https://www.rbc.ru/rbcfreenews/666574689a7947fc21cd7a6a + Sun, 09 Jun 2024 12:30:57 +0300 + + Политика + rssexport.rbc.ru:politics:666574689a7947fc21cd7a6a + + 12:30:57 + 09.06.2024 + https://www.rbc.ru/rbcfreenews/666574689a7947fc21cd7a6a + + 666574689a7947fc21cd7a6a + short_news + 1717925457 + Sun, 09 Jun 2024 12:37:07 +0300 + politics + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/3/26/347179258202263.jpeg + image/jpeg + original + copyright + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/8/74/347179234584748.jpeg + image/jpeg + original + limited + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/5/90/347179180733905.jpeg + image/jpeg + original + limited + + Воронеж

]]>
+
+ + + + +
+
+ + <![CDATA[Жителей Белгорода во второй раз за день предупредили о ракетной опасности]]> + https://www.rbc.ru/rbcfreenews/6665750c9a794710b7db959e + Sun, 09 Jun 2024 12:29:05 +0300 + + Политика + rssexport.rbc.ru:politics:6665750c9a794710b7db959e + + 12:29:05 + 09.06.2024 + https://www.rbc.ru/rbcfreenews/6665750c9a794710b7db959e + + 6665750c9a794710b7db959e + short_news + 1717925345 + Sun, 09 Jun 2024 12:33:36 +0300 + politics + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/2/40/347179255944402.jpeg + image/jpeg + original + copyright + + Белгород

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/8/74/347179234584748.jpeg + image/jpeg + original + limited + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/5/90/347179180733905.jpeg + image/jpeg + original + limited + + Воронеж

]]>
+
+ + + + +
+
+ + <![CDATA[На петербургской «СКА Арене» за ₽60 млрд произошел пожар]]> + https://www.rbc.ru/sport/09/06/2024/66656e3c9a794764ba47759b + Sun, 09 Jun 2024 12:24:07 +0300 + + Спорт + Анна Сатдинова + rssexport.rbc.ru:sport:66656e3c9a794764ba47759b + + 12:24:07 + 09.06.2024 + https://www.rbc.ru/sport/09/06/2024/66656e3c9a794764ba47759b + + 66656e3c9a794764ba47759b + article + 1717925047 + Sun, 09 Jun 2024 12:29:00 +0300 + sport + + + + + https://s0.rbk.ru/v6_top_pics/media/img/0/96/347179243148960.png + image/png + original + copyright + + Матч звезд КХЛ на «СКА Арене»

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/3/38/347151035455383.jpeg + image/jpeg + original + limited + + Диего Коста

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/7/37/347089463952377.jpeg + image/jpeg + original + limited + + Евгений Плющенко

]]>
+
+ + + + +
+
+ + <![CDATA[Россияне получили восемь медалей на Азиатской олимпиаде по физике]]> + https://www.rbc.ru/rbcfreenews/66656f199a794764ba4775a1 + Sun, 09 Jun 2024 12:18:46 +0300 + + Общество + rssexport.rbc.ru:society:66656f199a794764ba4775a1 + + 12:18:46 + 09.06.2024 + https://www.rbc.ru/rbcfreenews/66656f199a794764ba4775a1 + + 66656f199a794764ba4775a1 + short_news + 1717924726 + Sun, 09 Jun 2024 12:25:40 +0300 + society + + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/5/98/347179249039985.jpeg + image/jpeg + original + copyright + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/1/95/347177360462951.jpeg + image/jpeg + original + limited + + Мирра Андреева

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/6/67/347176799049676.jpeg + image/jpeg + original + limited + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/5/76/347174196322765.jpeg + image/jpeg + original + limited + + + +
+
+ + <![CDATA[Times узнала, что легенда велоспорта может потерять трофеи из-за долгов]]> + https://www.rbc.ru/sport/09/06/2024/666564dc9a794773c50876ab + Sun, 09 Jun 2024 12:12:11 +0300 + + Спорт + Анна Сатдинова + rssexport.rbc.ru:sport:666564dc9a794773c50876ab + + 12:12:11 + 09.06.2024 + https://www.rbc.ru/sport/09/06/2024/666564dc9a794773c50876ab + + 666564dc9a794773c50876ab + article + 1717924331 + Sun, 09 Jun 2024 12:23:17 +0300 + sport + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/7/65/347179210481657.png + image/png + original + copyright + + Брэдли Уиггинс

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/2/03/347176686995032.jpeg + image/jpeg + original + limited + + Александр Власов

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/8/08/347105822152088.jpeg + image/jpeg + original + limited + + Христос Воликакис (в белом)

]]>
+
+ + + + +
+
+ + <![CDATA[Ефимов рассказал о редевелопменте почти 2 тыс. га бывших промзон в Москве]]> + https://www.rbc.ru/rbcfreenews/66633e709a7947818686c01f + Sun, 09 Jun 2024 12:08:02 +0300 + + Экономика + rssexport.rbc.ru:economics:66633e709a7947818686c01f + + 12:08:02 + 09.06.2024 + https://www.rbc.ru/rbcfreenews/66633e709a7947818686c01f + + 66633e709a7947818686c01f + short_news + 1717924082 + Sun, 09 Jun 2024 13:27:09 +0300 + economics + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/3/38/347177801323383.jpeg + image/jpeg + original + copyright + + Владимир Ефимов

]]>
+
+
+ + <![CDATA[Умер бывший директор ЗИЛа Валерий Сайкин]]> + https://www.rbc.ru/politics/09/06/2024/666569c99a79473c35ec8aa4 + Sun, 09 Jun 2024 12:06:35 +0300 + + Политика + Илья Пламенев + rssexport.rbc.ru:politics:666569c99a79473c35ec8aa4 + + 12:06:35 + 09.06.2024 + https://www.rbc.ru/politics/09/06/2024/666569c99a79473c35ec8aa4 + + 666569c99a79473c35ec8aa4 + article + 1717923995 + Sun, 09 Jun 2024 12:14:39 +0300 + politics + + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/3/67/347179238466673.jpeg + image/jpeg + original + copyright + + Валерий Сайкин, 1987 г.

]]>
+
+
+ + <![CDATA[Сеул возобновит трансляции на границе с КНДР в ответ на «мусорную войну»]]> + https://www.rbc.ru/rbcfreenews/666566869a7947faaadbf0be + Sun, 09 Jun 2024 11:54:35 +0300 + + Политика + rssexport.rbc.ru:politics:666566869a7947faaadbf0be + + 11:54:35 + 09.06.2024 + https://www.rbc.ru/rbcfreenews/666566869a7947faaadbf0be + + 666566869a7947faaadbf0be + short_news + 1717923275 + Sun, 09 Jun 2024 12:01:05 +0300 + politics + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/4/78/347179231116784.jpeg + image/jpeg + original + copyright + + + + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/8/99/347176563805998.jpeg + image/jpeg + original + limited + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/1/36/347173988907361.jpeg + image/jpeg + original + limited + + + + + + + <![CDATA[Над Белгородской областью сбили ракету «Нептун» и два дрона]]> + https://www.rbc.ru/rbcfreenews/66656bfb9a794747ceae4f91 + Sun, 09 Jun 2024 11:52:22 +0300 + + Политика + rssexport.rbc.ru:politics:66656bfb9a794747ceae4f91 + + 11:52:22 + 09.06.2024 + https://www.rbc.ru/rbcfreenews/66656bfb9a794747ceae4f91 + + 66656bfb9a794747ceae4f91 + short_news + 1717923142 + Sun, 09 Jun 2024 11:57:46 +0300 + politics + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/8/74/347179234584748.jpeg + image/jpeg + original + copyright + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/5/90/347179180733905.jpeg + image/jpeg + original + limited + + Воронеж

]]>
+
+ + + + + + + +
+
+ + <![CDATA[«Вкусно — и точка» передумала открывать рестораны в Абхазии]]> + https://www.rbc.ru/business/09/06/2024/666563739a7947752bc72774 + Sun, 09 Jun 2024 11:45:13 +0300 + + Бизнес + Илья Пламенев + rssexport.rbc.ru:business:666563739a7947752bc72774 + + 11:45:13 + 09.06.2024 + https://www.rbc.ru/business/09/06/2024/666563739a7947752bc72774 + + 666563739a7947752bc72774 + article + 1717922713 + Sun, 09 Jun 2024 11:54:26 +0300 + business + + + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/7/78/347179220201787.jpeg + image/jpeg + original + copyright + + + + + + + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/0/37/347176711656370.jpeg + image/jpeg + original + limited + + + + + + + <![CDATA[На юге Азербайджана двух пограничников убило ударом молнии]]> + https://www.rbc.ru/rbcfreenews/666563279a7947752bc7276f + Sun, 09 Jun 2024 11:21:46 +0300 + + Общество + rssexport.rbc.ru:society:666563279a7947752bc7276f + + 11:21:46 + 09.06.2024 + https://www.rbc.ru/rbcfreenews/666563279a7947752bc7276f + + 666563279a7947752bc7276f + short_news + 1717921306 + Sun, 09 Jun 2024 11:42:59 +0300 + society + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/6/64/347179215340646.jpeg + image/jpeg + original + copyright + + + + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/5/44/347171816956445.jpeg + image/jpeg + original + limited + + + + + + + + + + <![CDATA[Welt узнала о поиске Макроном союзников для отправки военных на Украину]]> + https://www.rbc.ru/politics/09/06/2024/6665590d9a794782e847f34c + Sun, 09 Jun 2024 11:13:25 +0300 + + Политика + Илья Пламенев + rssexport.rbc.ru:politics:6665590d9a794782e847f34c + + 11:13:25 + 09.06.2024 + https://www.rbc.ru/politics/09/06/2024/6665590d9a794782e847f34c + + 6665590d9a794782e847f34c + article + 1717920805 + Sun, 09 Jun 2024 11:49:58 +0300 + politics + + + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/6/06/347179195427066.jpeg + image/jpeg + original + copyright + + Эмманюэль Макрон

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/6/11/347177862057116.jpeg + image/jpeg + original + limited + + + + + + + https://s0.rbk.ru/v6_top_pics/media/img/5/34/347176768866345.jpeg + image/jpeg + original + limited + + Владимир Зеленский

]]>
+
+ + + + + https://s0.rbk.ru/v6_top_pics/media/img/5/09/347178878144095.jpeg + image/jpeg + original + limited + + + +
+
+
+
\ No newline at end of file diff --git a/tests/samples/github-49/result.pkl b/tests/samples/github-49/result.pkl new file mode 100644 index 0000000000000000000000000000000000000000..3f598b7b50b125621de01623a070215d850ecd3a GIT binary patch literal 26858 zcmd6w?T;JRb;h08a$@%_NP!eZKZHRM+d(98W=PJEOo29N(Kc-(6ll^qA5wwjaD#YsjrEyBy6UGpt(ESHg{5cxDUWjGt@LJp zt$!*%V&UXT#4gzU|I9rt3V>dvJAWZoT(MGb<~L%gu6mIXJr1 ze(LDbYWeB-_{zfK@x|HBa`|L;YPMCLJ$a&BDTlRkrJ96EqY}lnBo1qpql@z=)_V`F zJiFLk?>#bmvUQ?cwvQg3>&~B8nOW~Wu)ez5>OFK~b#}@Rx4g8x-2L9-!qN)&>u|s3 zvfeb~IIcCKsNQHLjcQVB$E~OuCP{2_>ix#-^6|y)(#h8Gx!L)r)_aGhTXW0Z^<~7d zxY|BGg-HDMKmRwY^M^}8qx2W6^Q9<=s->{ntVYdBSo(5M2?8&phnE*tmpWY}bZBLE zWiC5=KK++;tN&vEx%3)>zgp`5p#MBtxP%6-r`!GK`lm|it^OKsZ}A0h`H+uZPdD{p ziE}97pDUrlEiQ7CYj5-I7T;znJ)}wH`sw{arjuu$dBzK= zY(gprjdBo|HLLP%<%P_DZK}K6S(;s3@zy%?;FC+Ac;JEbyr$BBUW4qvq|s}H={2)A zv$pFDjkhwX=NRu+DczAJ_FrIDn#Nm9?0Ub)i8m#nQ%u~=Qc}T8`SLkttP4mUH|(OD zyt=|&?Nl@9tC=7#bAb)+v6F5cEv4slmV~*L?)aaUedLT9{tx6D7?sD8SEm zhzhckYv^OsIa>4Ho2DfI@RqYPzTA=p$z*VJeRNd9a%6kA>;r;H|BSq^+3GrnVUeZu zf==h4?R0w-K}ja@p;!kmm|p63=ey4=TbL^pMGl_cHXb0|>wbqzVT7&rUuGm{&9a9l zs$eoYJ2Nm$Ymd1h9)#gykVMlzT>=dv20ug^r?K+qI0P^$vI?*}7%pDrB8RSlJ98!% z?SQjp=r@i!dECZ;&vUr$V9?AML!tBEw*gnnNt_vQ)TmYCB(C1A0Y_s7ytptoy8>@? z7Cc>_b{1UebSiOmI;hnrvfyg7)+n&xr=mU_MQFDpO6hC%Levbu@v)h5 zRIcZy9M*y$tjEzon{p>;Ia97yrz+Ex?(|f5B2x~U;jVmSh|IKii*?MWpk_sNg+c7J zgq?3<;iq|lzGMpM!Z|4vWf_M<#)syaWf)l$%xTQNoN$o{atnU)aWNPOy!Zuv@dL9$ z1q2HkI7HEg_rw?&JDCA*pWyh5>3d%q%*f{u3L!Q#mj+~WQ=$MBDVi82=`kT@Wa8jh znI~SMv94dR0(LkO3n4OGNIL%oJO8=Rf&CmG%O(PR;t1f`DuG%4|GKxCL8UAn&#*@X((FDI&+F)}P=z3=DR?QGk+hW`pYWiW83tKuZQMm7R&9DEmNrS+__h3qS0>DNPTmx36 zM1xpK2A~uKNkRLuSsi0Y;?*Xo5~;inT~tCx=8~ox|94M#)Sc&ZH|F z%XAKf(Sw9iIwEJ1cbJlV22zk~Az6^G;7zV~LYjTcSooI+XZO+dkrq78iW)*N_XGFN z1UMEQU*iOdBJP4DC>*|Hwxaplge66eauEIh=W|K9o|WgKMp%o(dM!C<%!bw22f=nN zXjeOpAescTL8Td03i#ZrOd5x6X5~1Cyf`||+_B;Wdcs-&smo8DCa@LG5@8k|2HszK z`7Z;19GJxoB3!?AZ-MQP??O#o|kASP~BMcT(Q+@5K z@FD@^L&H>k-BG4%1pym7nBf6g#c&#mo#8m0v7GIh#lPViYVPq~cUv4AhS z7otzPC9RRUW07K9o<30*L$~(E0Y{_+ za)LfHiZxy@&s^dl0PefIT`!W<09t1St=AajhcZ*leR!(av8&pq?=y3aeVZe1K+c%n zTK|WN7H&3L(zQ(!pqdebl`T07pu`D86p2MOX~?z(Jc;mCu6&i_);^+GEZB)S zszi>jbVhxteZ90mg<;Y&E~7kS#~RhnHNgCxJ7Lq1xJDj+st1 zwdc8-Iu+cXvx!koojP%kmWBmF!B)janTa}3UgvhYXpkm?%dqmF;y)t<%Gkly;nFWp z{X2=5!sGSy#@-R|SA^PD%C)+Oc2p0mwMMO8Ip8pvOtn0<4U_8BbWpF6L!+(MBJfW89IpD-m}ThjcMZ z64_R|ZNqT*x?*5hgPdBK++wG7y97bTYW!Pj0f(xWBCip;sjL{%%@-os8>Me8tp3@; z)A)spLKFh#Y+x%83v)D~q-LMqYHa3x!KN$MsthD;;ya{ZMsLo8n~JXBym&n0#40oNxR;7T=!YGLDmfm)BdUB_oTU0y~> zJl&oo5Lau>N>UJrTPp7T43k(x8N`i&N|aJT^}I6pE-T_m6(CiK3SrAQld3xhT9qu4 zK#sfKf8G7Sv+Cpc(3!?QYmf?gk`@yllvE@qi@xW3{@wm zd@;o;0diRwX4UGQX@|VbwHnkvY*Sz#3u|8Isy$zeM)$?kGL+u>L8Zvt3FvI zgn=#pXL`}Ruggs=f;q2iUY$|6fT-M1t>3&|;9aeor)%<4gB+cav9*yI`T1B-7-|ej zKupx`;Z_PbF^XW(8|8o1M??zUC=jKFrb2s>As%MQ}xDtZRs0dJM!IXIRHxg=(%?Hvtl8c z>U1288cDkwH^QJhLBC3@jde!_FnS?<6$5fr2s0d*w4v$RP;!uNC?ESdMxer_Ez+?7 zE=<`6e5;&HbYR<6$M_czop+AVoT5;uqrE-9%1dQS7G1_G9{bMC3Wb%!?a9;1&4%s= zOZ}m^j^==KXXrk}slI&;8yAsL&Bl>CJ}|0d1x8NUDIro<=JThk$_LA#4x(PGDvt)v zQkWd^4n^dMBZfo>wIf$`5_G5QO-_E0B@xQfq+DYkRo5zz7>aCxRNBunN6H_&Y* zGPQPaXGlR4vzW*vb36FBI2=uctT9JfojO_Nz#DT(yXsdNRYH0QNmLIeSS3+uhK**W zXqCj@rthG{OH!_79}l(Wg*1*|l1{ z_bW@SsmB)F%L4M~V(#bDUzl|98}E>UDTh*e<+HN9{B{4Ec1gxFqgpkf{9ixlrd?8r zr(A%X25V8J+6X5KkO5#TYTC7xckIcLhQK3x6Thd3!QV=k%tBn2?At|Ji9?wVn>F|B zOwO9l&MgjD=3P}RibOF2Kqg`L5&%@k)7n0q1bhxyu&S>VC-`jDXNVitFei6sz!)aQ zIL%J|$FPwdb-TEl7Asqm9T&trg;bqMxaC4PqI`i1&PRSpt8ItSBA>LI z(5Jhk%-GJcmYOoN1zTu~0Y^07g7pn^gO1QEi~&k<5|jdJwPIGDaS*K}1JFt8CP_H{ zB42r(Vd5i*YF4-1E>TnT!r427{fZP7gK|{Kd2dwXPer`+t`-B{VJ%hCn65bJg{`R7 zs$p9m+YPpCVW{D&Bt;xPuIC7aHtI;9NkiSo0ZZOQ2g5sE$owE?C%`` zgm>yRyWCNQ4nYw!SLSwE2qVtntPB}9SxKcD9l>+BcbC_G@)8Pe%lI!ILfn&RDV+Lx z5f|ZuT}ZthPCnM2T3jB4r#Pur>q$M{S8lkk#pX%e&T8&KJDF-XYON^~Me)Xw+blMZ znzec}EGp%#8LJX6l0DG;(!x_MEqC1_t2mWd!b5ssx<~E1G9H!m)HJhob-q zOew;PPq~Cgfz-u1Cqk>la0{fv5O)dQ!jJC&igRW(fw-mgOo2+^%q#RtnKV10Pai50 zYYLmddzU`VA#y{j`Ln<1h!VtH$!ZTUkhl2r%HDXq|5eAR9OrB>ZdBr0TtDbFk+iLS z`8>=pHvt<2bG2qrlzM$5{fX=%)3OX|gw@J$C0<379zf_5f>3^Q7>>mOHDVZrAEC2l88BvOdAb-8Z^^Rw`?9BWR%B2?kgy^c z@RdwYF$k>v*sf;I0_Tt|l2N0Uw2rvVIm+L5SY+vE{3S5S@v2Y=*vd@7xTvTbq*i5$ zNn3iQx(El0rSfmKi4ERpqY$2)k20vJL7cZA)1BKUOdtFD#-Low>y&XNO2S&>!1-EG zt2w?_O*-9Hw>sVEOcan<-&j;j{HFNYYi2%*InGt0B=#}N=#&-hYVl!@5bvROqO4Hs zC)QBD<(`|=*6%;Ihf-c*$;#_~eyhEr&P7XtuJyC({^Py*aL?p>`Tu82H7w2h;iWHm% zN3-DJ7&3#)Vj|yKxU{W~?=mWNMie`_we-dbTp|lu#!SI5H73Qxd_Y{^)_&mvy$iq} z+A1AgOt)i0mMV%O$Xe4OOye|4bsQ|;xNK7)&^OXQt|(P0M|pv;R%csl6d(9%jB4x) zgwvfU>`W!Cc!B~U+lYf^t%w=^Jt&l^`3(_1u`plmi-Zs=BMN*bl94r{aIR9Y(qd^8 zq9fa<>a}Hdt?V98Jc`JD#jB#}50Ln%ka!-Oy29wN9Ty541VTr(O8@MjYY4T#_qQ^_)|g-uOQil*;hOsw(|^LB zW(|4uE_SO&=Iy+!c|Tbfd&x;~RP@5H$+6;mGbbjfkc@MHXuAt)Sd5+EH*47y_-iBp z+!JVu1eJrP_rHp{qjSP~F|d(Oz16$iXs}t!wRSf(!A<_ic8SxP-v`XkAAS3&?GG4s z&3$j;Vl+eu8xD)3O};z(Sx0eD?dS1M@V*~V5tJKwFsW8T`a*GVa21BQTk+tDtL;`b zNotJ=77GEMYBMN`BPZPAcV#T&S%H888S-1(UorLKI7M`Xn_r%~0Ud!2T<4oBjsht6 z7}`ayMAi0~k78rrg@i(3%+_j6|H0ZXZ>?p*lxIyJX zJnfFW>>VSTj>j^8uh5Bix7P-1mZEASs5Bb&+T8}D+wX3Vr^ANJk1{y5LL2=(7VN@$ zvl@@5w9x=LAO5h@*xJuhNEl&w%S18{v#;L0b(y7IgO^r8(;i{fPYMkSRc2pg(I zyCxZSdzOh1dbEaJ3qF+-Sk;YJn5P(*D^9SLhNg_O$|1RUh8k6m2tVVp$z!y<9vTs7*y*a zk5D?m=v1BZ(J85PYC%1TTN6bmwo?}FPyYTlW>0q605r6xWRSB8GE~B`J^&_v3Ym{Rgcg84Yk{yGh=ZUm$e& z&0&5Dia+4Mm4r1jhGzjm`G#L%U?k3r9oWc&gEzsDsmNO874RiYgb!>PiJD9%0ju|O zNxoLN;SlWHKeU1uV{%{set0Tf$OZX35q0>4J4@OY+;nH4ucV&~T`zs~UTE|ny+NRR z54y^MKSo61%|9h%cK68JO@D3zCp|_C@_2p+=HySvprz|e=t(^Y zD^aC#_gh6OV^7HF^31q}ll~DIl}eXAVD`YXI!`UA$DJUYo+Jzg_2M$&>GXAT%Yq-Q zhFnX&RT9H4F}adUs1*7XDh#+7mS2eDqo!}nM}sobWtoY(INFqGo24Bq+OgnbD=+Za zask(LRZmgwW{YL9lm^Icf0Bs!6Q-fgns}N|J{9EbAuJkYJ`7nZ4oUuLXyb+I*)HY5 z-RL4_f%%01rxhR!Ib2ttVXi?U>gJRR()Yt5)xCeRqMlAkRsgLURzO^RpQlm zmM8Vj!w85k;UBR_+Kp>(;DT*pP6s}LlTcjiL7qYv7W>w8M5=Wybfwa-#HPNrdE_u8d{(wj`jDU!jk|v#);HO zzkHx=wl`m+^_Wp5&YXvauA{Z7+*)<8bX>KmlbNYFEZ-$hG*~{Pu`pq$IN!L{AvP0{ zK-ZM_W!7R_zAd}>*t;5)!QnWC4z!r>C-i3DbV#$n$+uQ_I$ zUPjT~EipGNt389Cb!tsYW7$Id(iMVL9(YOi=)!=ayP|@&sbNH!ueLbkVv6if-dg7N2KAD4 zOiy~0(Gcau7j-m+Djt==Rb&i)=bG-v6B_%^e{_8mm-|YOi=;Hb1fM3#du{VVhGh9(>xD6l5V_VVIaOg5ft3`-K7*kF(qCv#Cha-F#=SN1J>TXlpe^`u1Cwfxq?{7h>RwHUeP z@I-a;BoD9W3Qjj1_>Id+Aq4w(X z>^zT?vFAm`mBg=cPHIuRlSD}}0lU=Wf}3H{^Mw`x$T^iN&^ns-%j#90M;R~39(Ju6 z14PE%WCoVfSak(7fv=t{(K8&gNmDAZ@D+$FOV-c?L}nCgdr{C#8lz7ED-_HCbFT|? zLpM~c1K~!#2!tc+$1rkyiI$To5GaZ>XGJNCE4LmHc4ZMa_ zR25{pq-P*X7xb-6mkPSL#Y18Q=Nl>*aQH^)>zzMYm~YKZJ-#f^43)5Kp!-slO@p+N zi5UA(1ZGR&sZGzs>W&-eEAv520HGKPbG$eSK^bN#Ad zQ^qvgu!WZL{5o(9tNWs*MbgMI+WT)gZ_)+WKMw397w#nZ#i46A4_mQSrPJx<0uK@ zyT-sB_T{j0)NhHaM_uUWbfr4MI?s@R)r^X^#I5~ZcWy-nk+l&}r&~^jjVn0;8gF6p z)>J^DDyQ=~n+WU-u^b^lep{+m9Lso>)iITrnJKttpdo5_wU^Jm?`^|ep`dbnJo&C- z*!vE(%0qk%%LnN#nDR6xNFPE`T2%|x9h9xv!f0QQbXRe?oN6g54Y~~*d5R~QX~OE~ z%S#Z+bzP#5tCgw>;vZFKxEPff(jJi**Ky!LN4`AeBt9-mq7VuyQM9>`zNUJKTY~NC zAqG^-LKRNj12j3{ECZH*($_KtYBzZaM$pz7RzdNv-1b0@#t-;kuTVfn*RqtMvFojE z?ABYYiB*30#sB)sCzn=T1nWK0Sy+5_ zY4*g-ihhOWnQr^|$=32pcWM3D%;U#;zct63#Q34Yl|KV*~r zjEa8AW_t1X)7A3wQ?v8-!!}RHN9GnzELbzvexxJ&Rf#XBZaF7QwQN;}K}s3DLiKj3 z*(?p7S?@>lko`K1yZvXgM_7yFeedForAll helps Restaurant's communicate with customers. Let your customers know the latest specials or events.
\n
\nRSS feed uses include:
\nDaily Specials
\nEntertainment
\nCalendar of Events
" - }, - "enclosure": null, - "guid": null, - "link": { - "attributes": {}, - "content": "http://www.feedforall.com/restaurant.htm" - }, - "pub_date": { - "attributes": {}, - "content": "Tue, 19 Oct 2004 11:09:11 -0400" - }, - "source": null, - "title": { - "attributes": {}, - "content": "RSS Solutions for Restaurants" - } - } - }, - { - "attributes": {}, - "content": { - "author": null, - "category": { - "attributes": { - "domain": "www.dmoz.com" - }, - "content": "Computers/Software/Internet/Site Management/Content Management" - }, - "comments": { - "attributes": {}, - "content": "http://www.feedforall.com/forum" - }, - "description": { - "attributes": {}, - "content": "FeedForAll helps Educational Institutions communicate with students about school wide activities, events, and schedules.
\n
\nRSS feed uses include:
\nHomework Assignments
\nSchool Cancellations
\nCalendar of Events
\nSports Scores
\nClubs/Organization Meetings
\nLunches Menus
" - }, - "enclosure": null, - "guid": null, - "link": { - "attributes": {}, - "content": "http://www.feedforall.com/schools.htm" - }, - "pub_date": { - "attributes": {}, - "content": "Tue, 19 Oct 2004 11:09:09 -0400" - }, - "source": null, - "title": { - "attributes": {}, - "content": "RSS Solutions for Schools and Colleges" - } - } - }, - { - "attributes": {}, - "content": { - "author": null, - "category": { - "attributes": { - "domain": "www.dmoz.com" - }, - "content": "Computers/Software/Internet/Site Management/Content Management" - }, - "comments": { - "attributes": {}, - "content": "http://www.feedforall.com/forum" - }, - "description": { - "attributes": {}, - "content": "FeedForAll helps Computer Service Companies communicate with clients about cyber security and related issues.
\n
\nUses include:
\nCyber Security Alerts
\nSpecials
\nJob Postings
" - }, - "enclosure": null, - "guid": null, - "link": { - "attributes": {}, - "content": "http://www.feedforall.com/computer-service.htm" - }, - "pub_date": { - "attributes": {}, - "content": "Tue, 19 Oct 2004 11:09:07 -0400" - }, - "source": null, - "title": { - "attributes": {}, - "content": "RSS Solutions for Computer Service Companies" - } - } - }, - { - "attributes": {}, - "content": { - "author": null, - "category": { - "attributes": { - "domain": "www.dmoz.com" - }, - "content": "Computers/Software/Internet/Site Management/Content Management" - }, - "comments": { - "attributes": {}, - "content": "http://www.feedforall.com/forum" - }, - "description": { - "attributes": {}, - "content": "FeedForAll helps Governments communicate with the general public about positions on various issues, and keep the community aware of changes in important legislative issues.
\n

\nRSS uses Include:
\nLegislative Calendar
\nVotes
\nBulletins
" - }, - "enclosure": null, - "guid": null, - "link": { - "attributes": {}, - "content": "http://www.feedforall.com/government.htm" - }, - "pub_date": { - "attributes": {}, - "content": "Tue, 19 Oct 2004 11:09:05 -0400" - }, - "source": null, - "title": { - "attributes": {}, - "content": "RSS Solutions for Governments" - } - } - }, - { - "attributes": {}, - "content": { - "author": null, - "category": { - "attributes": { - "domain": "www.dmoz.com" - }, - "content": "Computers/Software/Internet/Site Management/Content Management" - }, - "comments": { - "attributes": {}, - "content": "http://www.feedforall.com/forum" - }, - "description": { - "attributes": {}, - "content": "FeedForAll helps Politicians communicate with the general public about positions on various issues, and keep the community notified of their schedule.
\n
\nUses Include:
\nBlogs
\nSpeaking Engagements
\nStatements
\n
" - }, - "enclosure": null, - "guid": null, - "link": { - "attributes": {}, - "content": "http://www.feedforall.com/politics.htm" - }, - "pub_date": { - "attributes": {}, - "content": "Tue, 19 Oct 2004 11:09:03 -0400" - }, - "source": null, - "title": { - "attributes": {}, - "content": "RSS Solutions for Politicians" - } - } - }, - { - "attributes": {}, - "content": { - "author": null, - "category": { - "attributes": { - "domain": "www.dmoz.com" - }, - "content": "Computers/Software/Internet/Site Management/Content Management" - }, - "comments": { - "attributes": {}, - "content": "http://www.feedforall.com/forum" - }, - "description": { - "attributes": {}, - "content": "FeedForAll helps Meteorologists communicate with the general public about storm warnings and weather alerts, in specific regions. Using RSS meteorologists are able to quickly disseminate urgent and life threatening weather warnings.
\n
\nUses Include:
\nWeather Alerts
\nPlotting Storms
\nSchool Cancellations
" - }, - "enclosure": null, - "guid": null, - "link": { - "attributes": {}, - "content": "http://www.feedforall.com/weather.htm" - }, - "pub_date": { - "attributes": {}, - "content": "Tue, 19 Oct 2004 11:09:01 -0400" - }, - "source": null, - "title": { - "attributes": {}, - "content": "RSS Solutions for Meteorologists" - } - } - }, - { - "attributes": {}, - "content": { - "author": null, - "category": { - "attributes": { - "domain": "www.dmoz.com" - }, - "content": "Computers/Software/Internet/Site Management/Content Management" - }, - "comments": { - "attributes": {}, - "content": "http://www.feedforall.com/forum" - }, - "description": { - "attributes": {}, - "content": "FeedForAll helps Realtors and Real Estate companies communicate with clients informing them of newly available properties, and open house announcements. RSS helps to reach a targeted audience and spread the word in an inexpensive, professional manner.
\n

\nFeeds can be used for:
\nOpen House Dates
\nNew Properties For Sale
\nMortgage Rates
" - }, - "enclosure": null, - "guid": null, - "link": { - "attributes": {}, - "content": "http://www.feedforall.com/real-estate.htm" - }, - "pub_date": { - "attributes": {}, - "content": "Tue, 19 Oct 2004 11:08:59 -0400" - }, - "source": null, - "title": { - "attributes": {}, - "content": "RSS Solutions for Realtors & Real Estate Firms" - } - } - }, - { - "attributes": {}, - "content": { - "author": null, - "category": { - "attributes": { - "domain": "www.dmoz.com" - }, - "content": "Computers/Software/Internet/Site Management/Content Management" - }, - "comments": { - "attributes": {}, - "content": "http://www.feedforall.com/forum" - }, - "description": { - "attributes": {}, - "content": "FeedForAll helps Banks, Credit Unions and Mortgage companies communicate with the general public about rate changes in a prompt and professional manner.
\n
\nUses include:
\nMortgage Rates
\nForeign Exchange Rates
\nBank Rates
\nSpecials
" - }, - "enclosure": null, - "guid": null, - "link": { - "attributes": {}, - "content": "http://www.feedforall.com/banks.htm" - }, - "pub_date": { - "attributes": {}, - "content": "Tue, 19 Oct 2004 11:08:57 -0400" - }, - "source": null, - "title": { - "attributes": {}, - "content": "RSS Solutions for Banks / Mortgage Companies" - } - } - }, - { - "attributes": {}, - "content": { - "author": null, - "category": { - "attributes": { - "domain": "www.dmoz.com" - }, - "content": "Computers/Software/Internet/Site Management/Content Management" - }, - "comments": { - "attributes": {}, - "content": "http://www.feedforall.com/forum" - }, - "description": { - "attributes": {}, - "content": "FeedForAll helps Law Enforcement Professionals communicate with the general public and other agencies in a prompt and efficient manner. Using RSS police are able to quickly disseminate urgent and life threatening information.
\n
\nUses include:
\nAmber Alerts
\nSex Offender Community Notification
\nWeather Alerts
\nScheduling
\nSecurity Alerts
\nPolice Report
\nMeetings
" - }, - "enclosure": null, - "guid": null, - "link": { - "attributes": {}, - "content": "http://www.feedforall.com/law-enforcement.htm" - }, - "pub_date": { - "attributes": {}, - "content": "Tue, 19 Oct 2004 11:08:56 -0400" - }, - "source": null, - "title": { - "attributes": {}, - "content": "RSS Solutions for Law Enforcement" - } - } - } - ], - "language": { - "attributes": {}, - "content": "en-us" - }, - "last_build_date": { - "attributes": {}, - "content": "2004-10-19T13:39:14-04:00" - }, - "link": { - "attributes": {}, - "content": "http://www.feedforall.com/industry-solutions.htm" - }, - "managing_editor": { - "attributes": {}, - "content": "marketing@feedforall.com" - }, - "pub_date": { - "attributes": {}, - "content": "2004-10-19T13:38:55-04:00" - }, - "rating": null, - "skip_days": null, - "skip_hours": null, - "text_input": null, - "title": { - "attributes": {}, - "content": "FeedForAll Sample Feed" - }, - "ttl": null, - "web_master": { - "attributes": {}, - "content": "webmaster@feedforall.com" - } - } - }, - "version": { - "attributes": {}, - "content": "2.0" - } -} \ No newline at end of file diff --git a/tests/samples/rss_2.xml b/tests/samples/rss_2/data.xml similarity index 100% rename from tests/samples/rss_2.xml rename to tests/samples/rss_2/data.xml diff --git a/tests/samples/rss_2/result.pkl b/tests/samples/rss_2/result.pkl new file mode 100644 index 0000000000000000000000000000000000000000..2d6549e272784022a55b026dfbe519f323a6b828 GIT binary patch literal 7338 zcmds+O>Y~=8OIgak}ai84n>2eP0)#hC{7|RsnkhqK^0;%Qe(%K1Tk)NF@)jnkUQ4y z3_CL`N(KV-()O~qu;-$eeuaLKeuI9CUfTaNvrADTsYEH#g9Jz*N3-+H%WwYA%l_f| zU;g^Wod5ZHc)PrDB#f0>4gHr`D<_m2me)Rvn!|F5J7;94aKhsMMR_Amxl$sd&gnIJ zVqQ9t+u^g}?NQSLFI=k4aHqT(b0>P*oP_@6W=rRN3}$Sjt-Ef(jc7cCL8F9gv@sHU z!WHj{98+kt!c@kZhUxs*!*U_fIhSf!{%9~5L`kk+M6u3?wtzXE)1x$3Ot1W9>Rf-l z(V%`^A(E~(Jj)o2S=7bX@MVBSfW)la{<-)^(E&I*UUwhZ>!zOarL zhSP*;WkorkNp(n*2=l)^d;XYf^=y>7Y9YLQIT1ECvQIXuG5)>L+1$q3x3#&SWo)C- z*-S;&w`11dwTw2dP?C;|4Wvt1Tv(@b98|;}3&&2drqecdsPurjRIm&WSjTK%#FA&0 zVO8RYP9WOon9U{shZat|&k8Fnli2Gb5$oaqa&x1LV}|`qn_u60dwaWypIe)sahaX4 zc0H``yhWfmoID*d^Gz+D36*febeC;;yI3H`#PKS(88)@>TU*1KzOs|P8g}=Gg)#l< zWf)9fe>O~iv6H@0Jv0Ng=Dl&$Qnr)66&_fgq^ljLTH{E#N?1#0ndkv;zZdB{HDK?| z2F!-X$LLDm_qM*;eQ9oPjHp1)fj&W&bvS+y!gxm)K*!qwbctX* zcJfF%DeOvx(Tblw`iP{+#P_9&nA+aHwfQ-S9%ysO?prH+o+BGT3Y*1RT*V>-)c%gn zM2ygG_qD+y+Oft}tZ2-Nj&1Ck9#`^(AA>y+!b#PuIy^2ER$|er3N&45Qa_nN>dGXk zt;#8|wlGIB7Qi*{V-F{J1&y-=9h`a3vTDO1li-&BnxJ;Jla4UVinuV+ zop?%(AT>;ww6*}MfeFvh({C5P8qt;?w_T5WKZE4ej8 zj<}H;DiCN1I(H~U-@8@7OzxP#q8N$X8wFlaaQIIqbJ8A!4Gf|#Ey>l97{hLJ11`|J zUpRZOGW3P+o%g^GFZ95ql;nXQj}2YBSwHA+HC(>`^q_!O0fF{vE7`BUJAZpR!wDl4 zQWLIrdA4-*!&7z&eJ@X=Z_LUMOrO$Db|o|o00L_X#j9NLguGo$RUOwo$aF8jgV>HA zLcQ3Q>Qxbct#b}C>celJA$tS`IZ4fEr($^`&cZ%f(g5&he6u!hX zzRudY1Y$@TOwOQK%DW|sJS)=-fjS)73dxsG7P?SH1BrneM(n925NN^qnI$sPKHkX$ zbDI6Wkntgsf&_{wa;Yd)DGY?xdGDLaF1n=#OBG~(WVxQsC5f#a^6$dlvEYe4k$ahT z{;31skW>o}MXoQ0H&)?0B$UF#y!6%JA%#vjiJQs0^s ziWdT|`5PIM7jP@>LiSv(CcD9$F0{U3sg;1YaoXCj`sxUyO6@%@|%2V>DhTO709 zZWnb-v_lW7#Baxk-l3)zxIP<+gf`Tzs4_-A%Iogb!U5$ASogl5v@!In>ryi=g(z=k zNH+^?b5%y37izVr%hZdp?w=UhOI`KfH(PZ>D2!wBVh<0mpcWWMfv|FEAUX#*x2WP) zkNpfSq2W_15Ch4oJYO+cRYPx55#GsM49nAx-wazzH~zWwlOHdCf>#;C=hs1Ad6Rm* z&`J!ysah7PB@vn9XnOP?{5<;f^_S+pnEUf^fA~lI{t3UK`2K2!xgB&0nI&Uo|K|%B zxH9$bE8f&1TAov8cHwycpE7f~7)lL@uBuJ_`B;_ffpC0{-EKzBXf3+?UbWEciH_@6 zBy|P2Ly1|03m&E1pf-_2;Hu$7oHmTD&wU=RNeX&3a?QDnUU0~KLaeRy_G@F)Z}Ys5;GbIRsnZLRYN5^9CZtO6{=%HB+WLjd zsaBQqs5QGZ4Dv-Yoc#il+Y!!HV^!}iFPu?$yHGB`72*FeedForAll helps Restaurant's communicate with customers. Let your customers know the latest specials or events.
\n
\nRSS feed uses include:
\nDaily Specials
\nEntertainment
\nCalendar of Events
" - }, - "enclosure": null, - "guid": null, - "link": { - "attributes": {}, - "content": "http://www.feedforall.com/restaurant.htm" - }, - "pub_date": { - "attributes": {}, - "content": "Tue, 19 Oct 2004 11:09:11 -0400" - }, - "source": null, - "title": { - "attributes": {}, - "content": "RSS Solutions for Restaurants" - } - } - }, - { - "attributes": {}, - "content": { - "author": null, - "category": { - "attributes": { - "domain": "www.dmoz.com" - }, - "content": "Computers/Software/Internet/Site Management/Content Management" - }, - "comments": { - "attributes": {}, - "content": "http://www.feedforall.com/forum" - }, - "description": { - "attributes": {}, - "content": "FeedForAll helps Educational Institutions communicate with students about school wide activities, events, and schedules.
\n
\nRSS feed uses include:
\nHomework Assignments
\nSchool Cancellations
\nCalendar of Events
\nSports Scores
\nClubs/Organization Meetings
\nLunches Menus
" - }, - "enclosure": null, - "guid": null, - "link": { - "attributes": {}, - "content": "http://www.feedforall.com/schools.htm" - }, - "pub_date": { - "attributes": {}, - "content": "Tue, 19 Oct 2004 11:09:09 -0400" - }, - "source": null, - "title": { - "attributes": {}, - "content": "RSS Solutions for Schools and Colleges" - } - } - }, - { - "attributes": {}, - "content": { - "author": null, - "category": { - "attributes": { - "domain": "www.dmoz.com" - }, - "content": "Computers/Software/Internet/Site Management/Content Management" - }, - "comments": { - "attributes": {}, - "content": "http://www.feedforall.com/forum" - }, - "description": { - "attributes": {}, - "content": "FeedForAll helps Computer Service Companies communicate with clients about cyber security and related issues.
\n
\nUses include:
\nCyber Security Alerts
\nSpecials
\nJob Postings
" - }, - "enclosure": null, - "guid": null, - "link": { - "attributes": {}, - "content": "http://www.feedforall.com/computer-service.htm" - }, - "pub_date": { - "attributes": {}, - "content": "Tue, 19 Oct 2004 11:09:07 -0400" - }, - "source": null, - "title": { - "attributes": {}, - "content": "RSS Solutions for Computer Service Companies" - } - } - }, - { - "attributes": {}, - "content": { - "author": null, - "category": { - "attributes": { - "domain": "www.dmoz.com" - }, - "content": "Computers/Software/Internet/Site Management/Content Management" - }, - "comments": { - "attributes": {}, - "content": "http://www.feedforall.com/forum" - }, - "description": { - "attributes": {}, - "content": "FeedForAll helps Governments communicate with the general public about positions on various issues, and keep the community aware of changes in important legislative issues.
\n

\nRSS uses Include:
\nLegislative Calendar
\nVotes
\nBulletins
" - }, - "enclosure": null, - "guid": null, - "link": { - "attributes": {}, - "content": "http://www.feedforall.com/government.htm" - }, - "pub_date": { - "attributes": {}, - "content": "Tue, 19 Oct 2004 11:09:05 -0400" - }, - "source": null, - "title": { - "attributes": {}, - "content": "RSS Solutions for Governments" - } - } - }, - { - "attributes": {}, - "content": { - "author": null, - "category": { - "attributes": { - "domain": "www.dmoz.com" - }, - "content": "Computers/Software/Internet/Site Management/Content Management" - }, - "comments": { - "attributes": {}, - "content": "http://www.feedforall.com/forum" - }, - "description": { - "attributes": {}, - "content": "FeedForAll helps Politicians communicate with the general public about positions on various issues, and keep the community notified of their schedule.
\n
\nUses Include:
\nBlogs
\nSpeaking Engagements
\nStatements
\n
" - }, - "enclosure": null, - "guid": null, - "link": { - "attributes": {}, - "content": "http://www.feedforall.com/politics.htm" - }, - "pub_date": { - "attributes": {}, - "content": "Tue, 19 Oct 2004 11:09:03 -0400" - }, - "source": null, - "title": { - "attributes": {}, - "content": "RSS Solutions for Politicians" - } - } - }, - { - "attributes": {}, - "content": { - "author": null, - "category": { - "attributes": { - "domain": "www.dmoz.com" - }, - "content": "Computers/Software/Internet/Site Management/Content Management" - }, - "comments": { - "attributes": {}, - "content": "http://www.feedforall.com/forum" - }, - "description": { - "attributes": {}, - "content": "FeedForAll helps Meteorologists communicate with the general public about storm warnings and weather alerts, in specific regions. Using RSS meteorologists are able to quickly disseminate urgent and life threatening weather warnings.
\n
\nUses Include:
\nWeather Alerts
\nPlotting Storms
\nSchool Cancellations
" - }, - "enclosure": null, - "guid": null, - "link": { - "attributes": {}, - "content": "http://www.feedforall.com/weather.htm" - }, - "pub_date": { - "attributes": {}, - "content": "Tue, 19 Oct 2004 11:09:01 -0400" - }, - "source": null, - "title": { - "attributes": {}, - "content": "RSS Solutions for Meteorologists" - } - } - }, - { - "attributes": {}, - "content": { - "author": null, - "category": { - "attributes": { - "domain": "www.dmoz.com" - }, - "content": "Computers/Software/Internet/Site Management/Content Management" - }, - "comments": { - "attributes": {}, - "content": "http://www.feedforall.com/forum" - }, - "description": { - "attributes": {}, - "content": "FeedForAll helps Realtors and Real Estate companies communicate with clients informing them of newly available properties, and open house announcements. RSS helps to reach a targeted audience and spread the word in an inexpensive, professional manner.
\n

\nFeeds can be used for:
\nOpen House Dates
\nNew Properties For Sale
\nMortgage Rates
" - }, - "enclosure": null, - "guid": null, - "link": { - "attributes": {}, - "content": "http://www.feedforall.com/real-estate.htm" - }, - "pub_date": { - "attributes": {}, - "content": "Tue, 19 Oct 2004 11:08:59 -0400" - }, - "source": null, - "title": { - "attributes": {}, - "content": "RSS Solutions for Realtors & Real Estate Firms" - } - } - }, - { - "attributes": {}, - "content": { - "author": null, - "category": { - "attributes": { - "domain": "www.dmoz.com" - }, - "content": "Computers/Software/Internet/Site Management/Content Management" - }, - "comments": { - "attributes": {}, - "content": "http://www.feedforall.com/forum" - }, - "description": { - "attributes": {}, - "content": "FeedForAll helps Banks, Credit Unions and Mortgage companies communicate with the general public about rate changes in a prompt and professional manner.
\n
\nUses include:
\nMortgage Rates
\nForeign Exchange Rates
\nBank Rates
\nSpecials
" - }, - "enclosure": null, - "guid": null, - "link": { - "attributes": {}, - "content": "http://www.feedforall.com/banks.htm" - }, - "pub_date": { - "attributes": {}, - "content": "Tue, 19 Oct 2004 11:08:57 -0400" - }, - "source": null, - "title": { - "attributes": {}, - "content": "RSS Solutions for Banks / Mortgage Companies" - } - } - }, - { - "attributes": {}, - "content": { - "author": null, - "category": { - "attributes": { - "domain": "www.dmoz.com" - }, - "content": "Computers/Software/Internet/Site Management/Content Management" - }, - "comments": { - "attributes": {}, - "content": "http://www.feedforall.com/forum" - }, - "description": { - "attributes": {}, - "content": "FeedForAll helps Law Enforcement Professionals communicate with the general public and other agencies in a prompt and efficient manner. Using RSS police are able to quickly disseminate urgent and life threatening information.
\n
\nUses include:
\nAmber Alerts
\nSex Offender Community Notification
\nWeather Alerts
\nScheduling
\nSecurity Alerts
\nPolice Report
\nMeetings
" - }, - "enclosure": null, - "guid": null, - "link": { - "attributes": {}, - "content": "http://www.feedforall.com/law-enforcement.htm" - }, - "pub_date": { - "attributes": {}, - "content": "Tue, 19 Oct 2004 11:08:56 -0400" - }, - "source": null, - "title": { - "attributes": {}, - "content": "RSS Solutions for Law Enforcement" - } - } - } - ], - "language": { - "attributes": {}, - "content": "en-us" - }, - "last_build_date": { - "attributes": {}, - "content": "2004-10-19T13:39:14-04:00" - }, - "link": { - "attributes": {}, - "content": "http://www.feedforall.com/industry-solutions.htm" - }, - "managing_editor": { - "attributes": {}, - "content": "marketing@feedforall.com" - }, - "pub_date": { - "attributes": {}, - "content": "2004-10-19T13:38:55-04:00" - }, - "rating": null, - "skip_days": null, - "skip_hours": null, - "text_input": null, - "title": { - "attributes": {}, - "content": "FeedForAll Sample Feed" - }, - "ttl": null, - "web_master": { - "attributes": {}, - "content": "webmaster@feedforall.com" - } - } - }, - "version": { - "attributes": {}, - "content": "2.0" - } -} \ No newline at end of file diff --git a/tests/samples/rss_2_no_category_attr.xml b/tests/samples/rss_2_no_category_attr/data.xml similarity index 100% rename from tests/samples/rss_2_no_category_attr.xml rename to tests/samples/rss_2_no_category_attr/data.xml diff --git a/tests/samples/rss_2_no_category_attr/result.pkl b/tests/samples/rss_2_no_category_attr/result.pkl new file mode 100644 index 0000000000000000000000000000000000000000..55292f7f42c3ac1f9ce02866409e65ee07f6da8c GIT binary patch literal 7288 zcmds+&u$yX9mk#8k|m{04guOGXqu^wDo!gcDc5OiK^0;%Qe(%K1Tk)NF@)jnkUQ4y z3_CL`N(Kt_()O~qun*8nU!gD3H|SgR(tdw4yA&moN|dA*5s<(g&j0z$_xET2bmMRN zPp!vf|qsSarpVg7e!&mVKG+D56X z7Q)Nd6JcW``!q(?$A30Do7-6Xwl)v5jBPYJo2kh9c5L+bEu)Pql%!K(1L;y07uM+< z=Mk}|!m$&q>9mX;Dm`E>6)Zyo>zM6}Sn|v=tV$fw2}Bzmv$^E|(ZXr>Sz(1`5_?@F zVmu!DJE#kp(spyEAFKY2jsDvA)yKKvk ziv^-j9ItYlVN(mgwKaq38$0QnVRyd^=F0g*=a|y4{60aJfAnIQ zzP*#aQ#G1_TJym;YUxjR()U7xtijHmUnjTm3mG6T+6T(T=t13J#6jowUstOccX;MF$LF&pRsjW);SzDMR z84KW=_pyhQyn@DAf)38S0a>-7lSy#Pe@{?5d*msKn8`70BQb{E<_1ilH@`6UUS;Tk z?wz;5k1w>qq?BZVpN@51n_1uK?=(!l|MsYWRRMwaYAe~VzCM3@I>QOW6;czXc6qjR z^+PK=g}&FP(Kj~A|Cv6eo$N|z8UO^=5{g%u;t6@Xn5x>Zdz9&3fCs)EKZJU*E!C?W z`&#E5WYoLyp0X=$C(i^AV;&uww3E+-6WYL2#-*=AhOgzz4Ft#OnJIjUX?&d>=Msn^ zWH32{VkvKy$n&g*W^mMD$W}k;YTCa)43$EwL$)U*gF<1u_tmb(~b-;Ytwow zoP!&C&VjtTcKQDLhqGdlXp-E0!87cYWy=UVVHUR#yyEz_CAROpq5fdDP~vd2RSJBa zn8Nbkr?EU5nP40roBT!ZV@~oNSDv0!h|)n?kF+l*4OC(P0{Ic5Q;%ie=svji0SgU) zC&f~jbzrNMhPxkxEb?%NNC_xo9dXJya~%AV%gBoa&Luow>csZ(d*b~71S{|-6^ij+ z9HVy&Q@_G6ZdV|N@!?iZi5COB&qUHSzn<7CAokzM2}Zz=E<3nD7NcX8UlES)(z-tN z>-q$nACTV>1GYEX0EPquYvY>xL7u@uAz5epzWSBE2bYL+9&x01Sc8qWhXRnPk?2$_H?| zaOs0Mo!8&h+2mz>uqsYlPGRt$VDL=B(GwMf@7%bg9U~E&l7XB?9Z4*CG7Qq9V#ux+ z$8qXJ7oG(L>a3QVl9M$K=Hx8m}N17)ODya%mts2RXOM;#SRmjFM3B zF(rtBWR;$;n5?p)3zUR+G8e=0^y`2ob+|wLGyeX9zmR-?GsD~tI)%)Vv9$lo8|b(i>iswT zP&ZNXauNS7?C-lwGZ*Dz$SA;xs`l=kv1HaG;rJT6(~O$YT6F(|YCSg+9oKI{>O^mc z;;#tzI7+!e3L=SsPs52gZ5Uf0?;PHS6!ZqxHS_^OV1sEf(D_ z$6)&2{o{N0qn_+mXIdq!e>gV%HqZO;@u{SqI=u&}7TTOWgj5M$Q<#%gTfbL1m85bG zDP@<2PCjdfBc4YLJEFEKtkT-$g)<5-5z2X3Jlr+x$&wSt?m#N!9O=m(%KiZyKV$K< z=${gPf`>Xme_`)0?*gWf$p40`trzhRl6#5VI_q*9Q;_7{SDde+xbY-npCda3udjLo zh1w*Ca4q2wP}PK9yr338gitbiEe2J}v_53q!LuEl=B>islLk`{g%9CKvpYzAbtRIP Z@R$8;RFyjDP#t)!$c=_$4x3s;{{sZ8EF1s; literal 0 HcmV?d00001 diff --git a/tests/samples/rss_2_no_category_attr_plain.json b/tests/samples/rss_2_no_category_attr_plain.json deleted file mode 100644 index d404ff4..0000000 --- a/tests/samples/rss_2_no_category_attr_plain.json +++ /dev/null @@ -1,141 +0,0 @@ -{ - "channel": { - "category": "Computers/Software/Internet/Site Management/Content Management", - "cloud": null, - "copyright": "Copyright 2004 NotePage, Inc.", - "description": "RSS is a fascinating technology. The uses for RSS are expanding daily. Take a closer look at how various industries are using the benefits of RSS in their businesses.", - "docs": "http://blogs.law.harvard.edu/tech/rss", - "generator": "FeedForAll Beta1 (0.0.1.8)", - "image": { - "description": "FeedForAll Sample Feed", - "height": 48, - "link": "http://www.feedforall.com/industry-solutions.htm", - "title": "FeedForAll Sample Feed", - "url": "http://www.feedforall.com/ffalogo48x48.gif", - "width": 48 - }, - "items": [ - { - "author": null, - "category": "Computers/Software/Internet/Site Management/Content Management", - "comments": "http://www.feedforall.com/forum", - "description": "FeedForAll helps Restaurant's communicate with customers. Let your customers know the latest specials or events.
\n
\nRSS feed uses include:
\nDaily Specials
\nEntertainment
\nCalendar of Events
", - "enclosure": null, - "guid": null, - "link": "http://www.feedforall.com/restaurant.htm", - "pub_date": "Tue, 19 Oct 2004 11:09:11 -0400", - "source": null, - "title": "RSS Solutions for Restaurants" - }, - { - "author": null, - "category": "Computers/Software/Internet/Site Management/Content Management", - "comments": "http://www.feedforall.com/forum", - "description": "FeedForAll helps Educational Institutions communicate with students about school wide activities, events, and schedules.
\n
\nRSS feed uses include:
\nHomework Assignments
\nSchool Cancellations
\nCalendar of Events
\nSports Scores
\nClubs/Organization Meetings
\nLunches Menus
", - "enclosure": null, - "guid": null, - "link": "http://www.feedforall.com/schools.htm", - "pub_date": "Tue, 19 Oct 2004 11:09:09 -0400", - "source": null, - "title": "RSS Solutions for Schools and Colleges" - }, - { - "author": null, - "category": "Computers/Software/Internet/Site Management/Content Management", - "comments": "http://www.feedforall.com/forum", - "description": "FeedForAll helps Computer Service Companies communicate with clients about cyber security and related issues.
\n
\nUses include:
\nCyber Security Alerts
\nSpecials
\nJob Postings
", - "enclosure": null, - "guid": null, - "link": "http://www.feedforall.com/computer-service.htm", - "pub_date": "Tue, 19 Oct 2004 11:09:07 -0400", - "source": null, - "title": "RSS Solutions for Computer Service Companies" - }, - { - "author": null, - "category": "Computers/Software/Internet/Site Management/Content Management", - "comments": "http://www.feedforall.com/forum", - "description": "FeedForAll helps Governments communicate with the general public about positions on various issues, and keep the community aware of changes in important legislative issues.
\n

\nRSS uses Include:
\nLegislative Calendar
\nVotes
\nBulletins
", - "enclosure": null, - "guid": null, - "link": "http://www.feedforall.com/government.htm", - "pub_date": "Tue, 19 Oct 2004 11:09:05 -0400", - "source": null, - "title": "RSS Solutions for Governments" - }, - { - "author": null, - "category": "Computers/Software/Internet/Site Management/Content Management", - "comments": "http://www.feedforall.com/forum", - "description": "FeedForAll helps Politicians communicate with the general public about positions on various issues, and keep the community notified of their schedule.
\n
\nUses Include:
\nBlogs
\nSpeaking Engagements
\nStatements
\n
", - "enclosure": null, - "guid": null, - "link": "http://www.feedforall.com/politics.htm", - "pub_date": "Tue, 19 Oct 2004 11:09:03 -0400", - "source": null, - "title": "RSS Solutions for Politicians" - }, - { - "author": null, - "category": "Computers/Software/Internet/Site Management/Content Management", - "comments": "http://www.feedforall.com/forum", - "description": "FeedForAll helps Meteorologists communicate with the general public about storm warnings and weather alerts, in specific regions. Using RSS meteorologists are able to quickly disseminate urgent and life threatening weather warnings.
\n
\nUses Include:
\nWeather Alerts
\nPlotting Storms
\nSchool Cancellations
", - "enclosure": null, - "guid": null, - "link": "http://www.feedforall.com/weather.htm", - "pub_date": "Tue, 19 Oct 2004 11:09:01 -0400", - "source": null, - "title": "RSS Solutions for Meteorologists" - }, - { - "author": null, - "category": "Computers/Software/Internet/Site Management/Content Management", - "comments": "http://www.feedforall.com/forum", - "description": "FeedForAll helps Realtors and Real Estate companies communicate with clients informing them of newly available properties, and open house announcements. RSS helps to reach a targeted audience and spread the word in an inexpensive, professional manner.
\n

\nFeeds can be used for:
\nOpen House Dates
\nNew Properties For Sale
\nMortgage Rates
", - "enclosure": null, - "guid": null, - "link": "http://www.feedforall.com/real-estate.htm", - "pub_date": "Tue, 19 Oct 2004 11:08:59 -0400", - "source": null, - "title": "RSS Solutions for Realtors & Real Estate Firms" - }, - { - "author": null, - "category": "Computers/Software/Internet/Site Management/Content Management", - "comments": "http://www.feedforall.com/forum", - "description": "FeedForAll helps Banks, Credit Unions and Mortgage companies communicate with the general public about rate changes in a prompt and professional manner.
\n
\nUses include:
\nMortgage Rates
\nForeign Exchange Rates
\nBank Rates
\nSpecials
", - "enclosure": null, - "guid": null, - "link": "http://www.feedforall.com/banks.htm", - "pub_date": "Tue, 19 Oct 2004 11:08:57 -0400", - "source": null, - "title": "RSS Solutions for Banks / Mortgage Companies" - }, - { - "author": null, - "category": "Computers/Software/Internet/Site Management/Content Management", - "comments": "http://www.feedforall.com/forum", - "description": "FeedForAll helps Law Enforcement Professionals communicate with the general public and other agencies in a prompt and efficient manner. Using RSS police are able to quickly disseminate urgent and life threatening information.
\n
\nUses include:
\nAmber Alerts
\nSex Offender Community Notification
\nWeather Alerts
\nScheduling
\nSecurity Alerts
\nPolice Report
\nMeetings
", - "enclosure": null, - "guid": null, - "link": "http://www.feedforall.com/law-enforcement.htm", - "pub_date": "Tue, 19 Oct 2004 11:08:56 -0400", - "source": null, - "title": "RSS Solutions for Law Enforcement" - } - ], - "language": "en-us", - "last_build_date": "2004-10-19T13:39:14-04:00", - "link": "http://www.feedforall.com/industry-solutions.htm", - "managing_editor": "marketing@feedforall.com", - "pub_date": "2004-10-19T13:38:55-04:00", - "rating": null, - "skip_days": null, - "skip_hours": null, - "text_input": null, - "title": "FeedForAll Sample Feed", - "ttl": null, - "web_master": "webmaster@feedforall.com" - }, - "version": "2.0" -} \ No newline at end of file diff --git a/tests/samples/rss_2_plain.json b/tests/samples/rss_2_plain.json deleted file mode 100644 index d404ff4..0000000 --- a/tests/samples/rss_2_plain.json +++ /dev/null @@ -1,141 +0,0 @@ -{ - "channel": { - "category": "Computers/Software/Internet/Site Management/Content Management", - "cloud": null, - "copyright": "Copyright 2004 NotePage, Inc.", - "description": "RSS is a fascinating technology. The uses for RSS are expanding daily. Take a closer look at how various industries are using the benefits of RSS in their businesses.", - "docs": "http://blogs.law.harvard.edu/tech/rss", - "generator": "FeedForAll Beta1 (0.0.1.8)", - "image": { - "description": "FeedForAll Sample Feed", - "height": 48, - "link": "http://www.feedforall.com/industry-solutions.htm", - "title": "FeedForAll Sample Feed", - "url": "http://www.feedforall.com/ffalogo48x48.gif", - "width": 48 - }, - "items": [ - { - "author": null, - "category": "Computers/Software/Internet/Site Management/Content Management", - "comments": "http://www.feedforall.com/forum", - "description": "FeedForAll helps Restaurant's communicate with customers. Let your customers know the latest specials or events.
\n
\nRSS feed uses include:
\nDaily Specials
\nEntertainment
\nCalendar of Events
", - "enclosure": null, - "guid": null, - "link": "http://www.feedforall.com/restaurant.htm", - "pub_date": "Tue, 19 Oct 2004 11:09:11 -0400", - "source": null, - "title": "RSS Solutions for Restaurants" - }, - { - "author": null, - "category": "Computers/Software/Internet/Site Management/Content Management", - "comments": "http://www.feedforall.com/forum", - "description": "FeedForAll helps Educational Institutions communicate with students about school wide activities, events, and schedules.
\n
\nRSS feed uses include:
\nHomework Assignments
\nSchool Cancellations
\nCalendar of Events
\nSports Scores
\nClubs/Organization Meetings
\nLunches Menus
", - "enclosure": null, - "guid": null, - "link": "http://www.feedforall.com/schools.htm", - "pub_date": "Tue, 19 Oct 2004 11:09:09 -0400", - "source": null, - "title": "RSS Solutions for Schools and Colleges" - }, - { - "author": null, - "category": "Computers/Software/Internet/Site Management/Content Management", - "comments": "http://www.feedforall.com/forum", - "description": "FeedForAll helps Computer Service Companies communicate with clients about cyber security and related issues.
\n
\nUses include:
\nCyber Security Alerts
\nSpecials
\nJob Postings
", - "enclosure": null, - "guid": null, - "link": "http://www.feedforall.com/computer-service.htm", - "pub_date": "Tue, 19 Oct 2004 11:09:07 -0400", - "source": null, - "title": "RSS Solutions for Computer Service Companies" - }, - { - "author": null, - "category": "Computers/Software/Internet/Site Management/Content Management", - "comments": "http://www.feedforall.com/forum", - "description": "FeedForAll helps Governments communicate with the general public about positions on various issues, and keep the community aware of changes in important legislative issues.
\n

\nRSS uses Include:
\nLegislative Calendar
\nVotes
\nBulletins
", - "enclosure": null, - "guid": null, - "link": "http://www.feedforall.com/government.htm", - "pub_date": "Tue, 19 Oct 2004 11:09:05 -0400", - "source": null, - "title": "RSS Solutions for Governments" - }, - { - "author": null, - "category": "Computers/Software/Internet/Site Management/Content Management", - "comments": "http://www.feedforall.com/forum", - "description": "FeedForAll helps Politicians communicate with the general public about positions on various issues, and keep the community notified of their schedule.
\n
\nUses Include:
\nBlogs
\nSpeaking Engagements
\nStatements
\n
", - "enclosure": null, - "guid": null, - "link": "http://www.feedforall.com/politics.htm", - "pub_date": "Tue, 19 Oct 2004 11:09:03 -0400", - "source": null, - "title": "RSS Solutions for Politicians" - }, - { - "author": null, - "category": "Computers/Software/Internet/Site Management/Content Management", - "comments": "http://www.feedforall.com/forum", - "description": "FeedForAll helps Meteorologists communicate with the general public about storm warnings and weather alerts, in specific regions. Using RSS meteorologists are able to quickly disseminate urgent and life threatening weather warnings.
\n
\nUses Include:
\nWeather Alerts
\nPlotting Storms
\nSchool Cancellations
", - "enclosure": null, - "guid": null, - "link": "http://www.feedforall.com/weather.htm", - "pub_date": "Tue, 19 Oct 2004 11:09:01 -0400", - "source": null, - "title": "RSS Solutions for Meteorologists" - }, - { - "author": null, - "category": "Computers/Software/Internet/Site Management/Content Management", - "comments": "http://www.feedforall.com/forum", - "description": "FeedForAll helps Realtors and Real Estate companies communicate with clients informing them of newly available properties, and open house announcements. RSS helps to reach a targeted audience and spread the word in an inexpensive, professional manner.
\n

\nFeeds can be used for:
\nOpen House Dates
\nNew Properties For Sale
\nMortgage Rates
", - "enclosure": null, - "guid": null, - "link": "http://www.feedforall.com/real-estate.htm", - "pub_date": "Tue, 19 Oct 2004 11:08:59 -0400", - "source": null, - "title": "RSS Solutions for Realtors & Real Estate Firms" - }, - { - "author": null, - "category": "Computers/Software/Internet/Site Management/Content Management", - "comments": "http://www.feedforall.com/forum", - "description": "FeedForAll helps Banks, Credit Unions and Mortgage companies communicate with the general public about rate changes in a prompt and professional manner.
\n
\nUses include:
\nMortgage Rates
\nForeign Exchange Rates
\nBank Rates
\nSpecials
", - "enclosure": null, - "guid": null, - "link": "http://www.feedforall.com/banks.htm", - "pub_date": "Tue, 19 Oct 2004 11:08:57 -0400", - "source": null, - "title": "RSS Solutions for Banks / Mortgage Companies" - }, - { - "author": null, - "category": "Computers/Software/Internet/Site Management/Content Management", - "comments": "http://www.feedforall.com/forum", - "description": "FeedForAll helps Law Enforcement Professionals communicate with the general public and other agencies in a prompt and efficient manner. Using RSS police are able to quickly disseminate urgent and life threatening information.
\n
\nUses include:
\nAmber Alerts
\nSex Offender Community Notification
\nWeather Alerts
\nScheduling
\nSecurity Alerts
\nPolice Report
\nMeetings
", - "enclosure": null, - "guid": null, - "link": "http://www.feedforall.com/law-enforcement.htm", - "pub_date": "Tue, 19 Oct 2004 11:08:56 -0400", - "source": null, - "title": "RSS Solutions for Law Enforcement" - } - ], - "language": "en-us", - "last_build_date": "2004-10-19T13:39:14-04:00", - "link": "http://www.feedforall.com/industry-solutions.htm", - "managing_editor": "marketing@feedforall.com", - "pub_date": "2004-10-19T13:38:55-04:00", - "rating": null, - "skip_days": null, - "skip_hours": null, - "text_input": null, - "title": "FeedForAll Sample Feed", - "ttl": null, - "web_master": "webmaster@feedforall.com" - }, - "version": "2.0" -} \ No newline at end of file diff --git a/tests/samples/rss_2_with_1_item.json b/tests/samples/rss_2_with_1_item.json deleted file mode 100644 index d78c35c..0000000 --- a/tests/samples/rss_2_with_1_item.json +++ /dev/null @@ -1,133 +0,0 @@ -{ - "channel": { - "attributes": {}, - "content": { - "category": { - "attributes": { - "domain": "www.dmoz.com" - }, - "content": "Computers/Software/Internet/Site Management/Content Management" - }, - "cloud": null, - "copyright": { - "attributes": {}, - "content": "Copyright 2004 NotePage, Inc." - }, - "description": { - "attributes": {}, - "content": "RSS is a fascinating technology. The uses for RSS are expanding daily. Take a closer look at how various industries are using the benefits of RSS in their businesses." - }, - "docs": { - "attributes": {}, - "content": "http://blogs.law.harvard.edu/tech/rss" - }, - "generator": { - "attributes": {}, - "content": "FeedForAll Beta1 (0.0.1.8)" - }, - "image": { - "attributes": {}, - "content": { - "description": { - "attributes": {}, - "content": "FeedForAll Sample Feed" - }, - "height": { - "attributes": {}, - "content": 48 - }, - "link": { - "attributes": {}, - "content": "http://www.feedforall.com/industry-solutions.htm" - }, - "title": { - "attributes": {}, - "content": "FeedForAll Sample Feed" - }, - "url": { - "attributes": {}, - "content": "http://www.feedforall.com/ffalogo48x48.gif" - }, - "width": { - "attributes": {}, - "content": 48 - } - } - }, - "items": [ - { - "attributes": {}, - "content": { - "author": null, - "category": { - "attributes": { - "domain": "www.dmoz.com" - }, - "content": "Computers/Software/Internet/Site Management/Content Management" - }, - "comments": { - "attributes": {}, - "content": "http://www.feedforall.com/forum" - }, - "description": { - "attributes": {}, - "content": "FeedForAll helps Restaurant's communicate with customers. Let your customers know the latest specials or events.
\n
\nRSS feed uses include:
\nDaily Specials
\nEntertainment
\nCalendar of Events
" - }, - "enclosure": null, - "guid": null, - "link": { - "attributes": {}, - "content": "http://www.feedforall.com/restaurant.htm" - }, - "pub_date": { - "attributes": {}, - "content": "Tue, 19 Oct 2004 11:09:11 -0400" - }, - "source": null, - "title": { - "attributes": {}, - "content": "RSS Solutions for Restaurants" - } - } - } - ], - "language": { - "attributes": {}, - "content": "en-us" - }, - "last_build_date": { - "attributes": {}, - "content": "2004-10-19T13:39:14-04:00" - }, - "link": { - "attributes": {}, - "content": "http://www.feedforall.com/industry-solutions.htm" - }, - "managing_editor": { - "attributes": {}, - "content": "marketing@feedforall.com" - }, - "pub_date": { - "attributes": {}, - "content": "2004-10-19T13:38:55-04:00" - }, - "rating": null, - "skip_days": null, - "skip_hours": null, - "text_input": null, - "title": { - "attributes": {}, - "content": "FeedForAll Sample Feed" - }, - "ttl": null, - "web_master": { - "attributes": {}, - "content": "webmaster@feedforall.com" - } - } - }, - "version": { - "attributes": {}, - "content": "2.0" - } -} \ No newline at end of file diff --git a/tests/samples/rss_2_with_1_item.xml b/tests/samples/rss_2_with_1_item/data.xml similarity index 100% rename from tests/samples/rss_2_with_1_item.xml rename to tests/samples/rss_2_with_1_item/data.xml diff --git a/tests/samples/rss_2_with_1_item/result.pkl b/tests/samples/rss_2_with_1_item/result.pkl new file mode 100644 index 0000000000000000000000000000000000000000..2d3b0cec6513910eaece8a64b5845f97f316c245 GIT binary patch literal 1897 zcmcIlTW=dh6b?%4B<9iwBm{_xp$HnPX1%T=kw(U9F^$v~3X1z$tl8bOo{?u~R&$Bt zN|ks4UgoXKU*H$f133fO`N8~#y=>iHwFq}3>E{Q7Edr|p*rV7es<==WmKDFdd93PR<=p?>-G8&P?_$ZEBZ+)YjP5~YCEVrVw zzJ4~Fk(mRZD+xHGag}+D6Q_iBSJ$1}4?K3^7{N ze~y#MDdv8v^nD@7c$iEWh|*k&e$$XpI45~%7g=%3Na~DL1vV-o--0D;%xNPdOQ}}G zG9UsCj3uUolv7~{W(DV=1JO9qlR^Cx5)aiU&VV5tYwa>PY3})CoMW3YzEJwB8=sz@ z#`xTrd_%cdlUe7sR(=o$#bW0}i%Bh-QUNlfny8#SsN-US=o8y3?W8HHt4mA$o}hB! zaJbsS^gtfEuJHS*D%YAXm~C&bPdh==>L<#=4`_UwJd|nF4bBRZc|i^0YR%q9Nh7%T z&w*FT-&^95WD>;`z~E z_&mDz!5dqTw|=e8s-N-w1>a_nt_egnPaGH7r4eS6Hp0z!>InDQ^k3buYYp80d2RO> zAVE`$l+ncd@Y2A34VI3`K^(==C_4V4&2J}DX}9H{wOf)1wJ?#OtB6s3PIVSR=7tth zHq@qTbPqS(h3($9R)ihp#jBCP;C|cbmfQTTtG6%DDF#zV#}`M((Sqk~cRy+1zjq1# zj25K;5+oh;u;Xo_@zo)?%y0$u`p|Tou~~HATk*`Y#>wNjX?dT)W`0{CyY(7~ng#KF z>;RVwtjWN_g`IPWOdU>U$;&xI0x)>muTL3WQuD_qncrAYDI1Qb0Kh1Qkh{|Bnym!T678MB=9|GB9vMZY6(L+!-?U_ s1%j#z&ylNw2WNtH;JO5-H0KscE+;h_8N^(ZB