This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Alicja Cięciwa cb8886666c login page
2020-10-27 12:57:58 +01:00

21 lines
339 B
Python

# -*- coding: utf-8 -*-
import os
OPEN_MIRRORS = [
"https://raw.githubusercontent.com/pyupio/safety-db/master/data/",
]
API_MIRRORS = [
"https://pyup.io/api/v1/safety/"
]
REQUEST_TIMEOUT = 5
CACHE_VALID_SECONDS = 60 * 60 * 2 # 2 hours
CACHE_FILE = os.path.join(
os.path.expanduser("~"),
".safety",
"cache.json"
)