This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # Example showing how to check the last-modified time of a Google | |
| # Sheet using gspread, and compare it to a local file's modification | |
| # time. This uses the Google Drive API (via gspread's built-in | |
| # get_file_drive_metadata method) rather than the Sheets API, since | |
| # the Sheets API doesn't expose file modification times. | |
| # | |
| # The same service account credentials used for gspread authentication | |
| # work for the Drive API call with no additional setup. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import UIKit | |
| // Extension from lkoskela, https://gist.github.com/lkoskela/c06670ded4d01a1832bd90066e76a0a8 | |
| extension UIColor { | |
| /// Relative luminance of a color according to W3's WCAG 2.0: | |
| /// https://www.w3.org/TR/WCAG20/#relativeluminancedef | |
| var luminance: CGFloat { | |
| var red: CGFloat = 0 | |
| var green: CGFloat = 0 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.