Skip to content

Instantly share code, notes, and snippets.

@grybakov
grybakov / download-file-from-google-using-wget.txt
Last active March 28, 2019 09:02
Download file from Google Drive using wget (Linux)
# Download file from Google Drive using wget (Linux)
wget --no-check-certificate 'https://docs.google.com/uc?export=download&id=FILEID' -O FILENAME
# Link: https://gist.github.com/iamtekeste/3cdfd0366ebfd2c0d805#gistcomment-2297114
@grybakov
grybakov / send-allure-results.py
Last active August 4, 2021 07:35
Script send results and generete allure report for Allure Server kochetkov-ma / allure-server
# Script send results and generete allure report for Allure Server kochetkov-ma / allure-server
# https://github.com/kochetkov-ma/allure-server
# https://hub.docker.com/r/kochetkovma/allure-server
import sys
import requests
import argparse
def main():