MCPcopy Create free account
hub / github.com/colmap/colmap / compose_url

Function compose_url

python/util/flickr_downloader.py:70–81  ·  view source on GitHub ↗
(
    page: int, api_key: str, text: str, min_date: float, max_date: float
)

Source from the content-addressed store, hash-verified

68
69
70def compose_url(
71 page: int, api_key: str, text: str, min_date: float, max_date: float
72) -> str:
73 return URL % (
74 api_key,
75 text,
76 SORT,
77 PER_PAGE,
78 page,
79 str(min_date),
80 str(max_date),
81 )
82
83
84def parse_page(

Callers 1

parse_pageFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected