1
0

Additional tests
Some checks failed
Python Package / Python-Test (push) Successful in 20s
Python Package / Python-Package (push) Failing after 22s

This commit is contained in:
Jon Michael Aanes 2024-05-26 10:35:30 +02:00
parent 7e6f39aecf
commit f4a71899e0
Signed by: Jmaa
SSH Key Fingerprint: SHA256:Ab0GfHGCblESJx7JRE4fj4bFy/KRpeLhi41y4pF3sNA

View File

@ -19,6 +19,36 @@ PARSABLE_SOCIAL_IDS_COMBINED = [
SocialSiteId.TUMBLR,
'triviallytrue',
),
# Cohost formats
(
'https://cohost.org/andrewelmore?page=0',
SocialSiteId.COHOST_PROFILE,
'andrewelmore',
),
(
'https://cohost.org/andrewelmore',
SocialSiteId.COHOST_PROFILE,
'andrewelmore',
),
# Reddit formats
('https://old.reddit.com/user/Harpsibored/submitted/',
SocialSiteId.REDDIT_USER ,
'Harpsibored',
),
('https://old.reddit.com/user/Harpsibored/submitted',
SocialSiteId.REDDIT_USER ,
'Harpsibored',
),
('https://old.reddit.com/user/Harpsibored/',
SocialSiteId.REDDIT_USER ,
'Harpsibored',
),
('https://old.reddit.com/user/Harpsibored',
SocialSiteId.REDDIT_USER ,
'Harpsibored',
),
]
PARSABLE_SOCIAL_IDS = [
@ -37,7 +67,6 @@ PARSABLE_SOCIAL_IDS = [
PARSABLE_SOCIAL_SITE_IDS = [
('https://www.deviantart.com/solquiet', SocialSiteId.DEVIANT_ART_ACCOUNT),
('https://solquiet.deviantart.com/', SocialSiteId.DEVIANT_ART_ACCOUNT),
('https://cohost.org/example', SocialSiteId.COHOST_PROFILE),
('https://instagram.com/_richardparry_', SocialSiteId.INSTAGRAM_PAGE),
('https://instagram.com/j_kmor/', SocialSiteId.INSTAGRAM_PAGE),
('https://instagram.com/cullensartbox/', SocialSiteId.INSTAGRAM_PAGE),