Les données retournées sont au format XML.
Document trouvé et modifié depuis Pastebin.
import requests | |
import json | |
import pathlib | |
""" | |
This script is designed to import your Google Photos albums into Immich. | |
It expects: | |
- A directory containing all your Google Photos albums, exported from Google Takeout. Each album should be a directory, and each photo should be a file inside that directory. | |
- Your photos should ALREADY be uploaded to Immich. This script will not upload them for you, it will only try to find them in your library to add them to existing or new albums. |
/** | |
* Converts an ISO 3166-1 alpha-2 country code to the corresponding Unicode flag emoji. | |
* | |
* ``` | |
* "FR".countryCodeToUnicodeFlag() // 🇫🇷 | |
* "US".countryCodeToUnicodeFlag() // 🇺🇸 | |
* ``` | |
*/ | |
fun String.countryCodeToUnicodeFlag(): String { | |
return this |
# sort in date/month directories | |
exiftool -r "-Directory<DateTimeOriginal" -d "%Y/%m" -v . | |
# use CreationDate if DateTimeOriginal didn't work | |
exiftool "-Directory<CreationDate" -d "%Y/%m" -v . |
1. No private data leave the app, including the camera feed. | |
2. Actually, no data even leaves the app. It doesn't even require Internet permissions. It only ever interfaces with Torque. |
#!/usr/bin/env python | |
# | |
# Copyright 2007-2013 The Python-Twitter Developers | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# |
import Foundation | |
public typealias JSON = AnyObject | |
public func JSONWithData(data: NSData) throws -> JSON? { | |
return NSJSONSerialization.JSONObjectWithData(data, options: []) | |
} |
#!/bin/bash | |
if [ $# -eq 0 ]; then | |
echo "Usage: $0 <message> [title]" | |
exit | |
fi | |
MESSAGE=$1 | |
TITLE=$2 |
### colors | |
RED="\e[0;31m" | |
GREEN="\e[0;32m" | |
CLR="\e[0m" | |
echo "" | |
### check internet connectivity | |
INTERNET_WGET=`wget -q --tries=10 --timeout=20 -O - http://google.com > /dev/null` | |
INTERNET_STATUS="${RED}DOWN$CLR" |
#!/bin/sh | |
# Root path of the directory to backup | |
ROOT_DATA_DIR="/media/Data" | |
# Root path for the backup directory | |
ROOT_BACKUP_DIR="/media/outadoc/Stanley/Backup" | |
# Begin backup script, and print a quote | |
echo "Commencing backup procedure." |
Les données retournées sont au format XML.
Document trouvé et modifié depuis Pastebin.