mirror of
https://github.com/Horhik/dotfiles.git
synced 2024-11-08 01:43:13 +00:00
8 lines
162 B
Python
8 lines
162 B
Python
#!/usr/bin/python
|
|
from feedparser import parse
|
|
|
|
URL = 'https://www.archlinux.org/feeds/news/'
|
|
ENTRIES = 1
|
|
|
|
[print(x.title) for x in parse(URL).entries[:ENTRIES]]
|