sudo apt-get install gnupg
gpg --full-generate-key
Install new VMware Workstation Pro 16 or upgrade from 15 by download below as trial version first: https://www.vmware.com/products/workstation-pro/workstation-pro-evaluation.html
After install or upgrade just insert the key and enjoy.
*No virus *No spam just license key
ZF3R0-FHED2-M80TY-8QYGC-NPKYF
#!/usr/bin/python | |
import os | |
import sys | |
import zipfile | |
root_path = '' | |
version_info = '' | |
directory_list = {'oxauth': '/opt/gluu/jetty/oxauth/logs/', | |
'identity': '/opt/gluu/jetty/identity/logs/', |
import requests | |
from requests.exceptions import HTTPError | |
from bs4 import BeautifulSoup | |
def scrape_url(url, headers=None): | |
try: | |
page = requests.get(url, headers) | |
page.raise_for_status() | |
except HTTPError as e: |
def square_number(list_of_number): | |
return [num ** 2 for num in list_of_number] | |
def test_square_number(): | |
assert square_number([1, 2, 3, 4, 5]) == [1, 4, 9, 16, 25] |
def square_number(list_of_number): | |
""" | |
@param list_of_number: a given list of integer number | |
@return: list of square number | |
>>> square_number([1, 2, 3, 4]) | |
[1, 4, 9, 16] | |
>>> square_number([10, 20, 30]) | |
[100, 400, 900] |