aboutsummaryrefslogtreecommitdiff
path: root/content/notes/parse-rss-with-lua.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/notes/parse-rss-with-lua.md')
-rw-r--r--content/notes/parse-rss-with-lua.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/content/notes/parse-rss-with-lua.md b/content/notes/parse-rss-with-lua.md
index 1efeae5..c28c20c 100644
--- a/content/notes/parse-rss-with-lua.md
+++ b/content/notes/parse-rss-with-lua.md
@@ -8,6 +8,7 @@ tags: [lua, rss]
8--- 8---
9 9
10Example of parsing RSS feeds with Lua. Before running the script install: 10Example of parsing RSS feeds with Lua. Before running the script install:
11
11- feedparser with `luarocks install feedparser` 12- feedparser with `luarocks install feedparser`
12- luasocket with `luarocks install luasocket` 13- luasocket with `luarocks install luasocket`
13 14
@@ -37,3 +38,4 @@ else
37 print("! Request failed. Status:", status) 38 print("! Request failed. Status:", status)
38end 39end
39``` 40```
41