forked from OreosLab/checkinpanel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrss.sample.sql
48 lines (48 loc) · 1.37 KB
/
rss.sample.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
INSERT INTO rss (feed, title, url, date_type, before)
VALUES (
'https://rsshub.app/telegram/channel/Oreomsg',
'猫粮投喂',
'https://t.me/Oreomsg',
'%a, %d %b %Y %H:%M:%S %Z',
'3'
);
INSERT INTO rss (feed, title, url, date_type, before)
VALUES (
'https://rsshub.app/telegram/channel/NewlearnerChannel',
'Newlearnerの自留地',
'https://t.me/NewlearnerChannel',
'%a, %d %b %Y %H:%M:%S %Z',
'3'
);
INSERT INTO rss (feed, title, url, date_type, before)
VALUES (
'https://rsshub.app/telegram/channel/appinnfeed',
'Appinn Feed',
'https://t.me/appinnfeed',
'%a, %d %b %Y %H:%M:%S %Z',
'3'
);
INSERT INTO rss (feed, title, url, date_type, before)
VALUES (
'http://feeds.feedburner.com/zhihu-daily',
'知乎日报',
'https://daily.zhihu.com',
'%a, %d %b %Y %H:%M:%S %z',
'1'
);
INSERT INTO rss (feed, title, url, date_type, before)
VALUES (
'https://www.zhihu.com/rss',
'知乎',
'https://www.zhihu.com',
'%a, %d %b %Y %H:%M:%S %z',
'1'
);
INSERT INTO rss (feed, title, url, date_type, before)
VALUES (
'https://feeds.feedburner.com/ruanyifeng',
'阮一峰的网络日志',
'https://www.ruanyifeng.com/blog',
'%a, %d %b %Y %H:%M:%S %z',
'3'
);