mirror of
https://github.com/Horhik/dotfiles.git
synced 2024-11-05 00:13: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]]
|