Skip to content
forked from E-P-T/Homework

Homework for Python Foundation course

Notifications You must be signed in to change notification settings

0iskak/RSS-Reader

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

How to run

Install requirements

pip install -r .\requirements.txt

Application

python .\src\rss_reader.py

Tests

python .\src\test_all.py

Print format

JSON

News:

{
  "feed": string,
  "items": array of Items
}

Item:

{
  "title": string,
  "date": datetime,
  "link": string,
  "images": array of strings
}

String

Same as JSON but without brackets and quotes

News:

feed: string
items: 
  array of Items

Item:

title: string
date: datetime
link: string
images: 
  array of strings

Caching system

All items were fetched will be stored in cached.json which is located (will be created if it doesn't exist) in source folder and will be stored in JSON format with checking for duplicates

About

Homework for Python Foundation course

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%