You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 28, 2024. It is now read-only.
parser = argparse.ArgumentParser("A CLI Script to check if bookmarks exist in raindrop.io.")
parser.add_argument('-b', help="Specify one bookmark, or multiple delimited by spaces. This will skip the add bookmarks prompt the first time.", nargs='+')
args = parser.parse_args()
while True:
urls = []
if args.b is not None: urls = args.b
else:
print(f"{Fore.GREEN}Check if bookmarks exist. Enter URL(s) in: {clear()}")
text = "placeholder"
while text != "": text = input(); urls.append(text)