37 lines
1.0 KiB
Python
37 lines
1.0 KiB
Python
# Using official Unsplash API to get images
|
|
# curl https://api.unsplash.com/collections/1459961/photos
|
|
# But we will scrape >:)
|
|
|
|
import logging
|
|
import requests
|
|
import re
|
|
from providers.provider import Provider
|
|
|
|
class unsplash(Provider):
|
|
name = "Unsplash"
|
|
url = "https://unsplash.com/collections/1459961/photo-of-the-day-(archive)"
|
|
|
|
def __init__(self, settings, session):
|
|
super().__init__(settings, session)
|
|
|
|
def get_image_url(self):
|
|
query = "https://unsplash.com/collections/1459961/photo-of-the-day-(archive)"
|
|
logging.debug(f"Query: {query}")
|
|
|
|
response = self.session.get(query).text
|
|
# logging.debug(f"Response: {response}")
|
|
|
|
regex = r"href=\"\/photos\/(.*?)\""
|
|
matches = re.search(regex, response)
|
|
logging.debug(f"Matches: {matches}")
|
|
image_slug = matches.group(1)
|
|
logging.debug(f"Image slug: {image_slug}")
|
|
|
|
image_id = image_slug.split("-")[-1]
|
|
logging.debug(f"Image ID: {image_id}")
|
|
|
|
image_url = f"https://unsplash.com/photos/{image_id}/download"
|
|
logging.debug(f"Image URL: {image_url}")
|
|
return image_url
|
|
|