content stringlengths 5 1.05M |
|---|
# -*- coding: utf-8 -*-
"""
equip.analysis.dataflow
~~~~~~~~~~~~~~~~~~~~~~~
Different kind of data flow analyzes.
:copyright: (c) 2014 by Romain Gaucher (@rgaucher)
:license: Apache 2, see LICENSE for more details.
"""
from .fixedpoint import Dataflow, \
ForwardDataflow, \
BackwardDataflow
from .lattice import Lattice
from .state import States, \
State, \
Transfer
|
"""
'utils.py' implements utility methods for the fuse program.
"""
from wikipedia import page
from string import punctuation
from settings import LANGUAGE, Color
from wikipedia.exceptions import DisambiguationError
from wordfreq import word_frequency as known_freq
COMMON_WORD_FREQ = 0.001 # Lower bound on known frequency to determine if word is common
ENTER_CONCEPT_MSG = '{}Enter Concept {} : {}'
DISAMBIGUATION_ERROR_MSG = \
'{}{} is too ambiguous. Please choose from one of the following options...{}'
CONNECTION_RESULT_MSG = """
Concept {}"{}"{} and Concept {}"{}"{} connected by Concept {}"{}"{} because:
\t{}"{}"{} related to {}"{}"{} related to {}"{}"{}.
\t{}"{}"{} related to {}"{}"{} related to {}"{}"{}."""
# Returns string cleaned of punctuation/digits
# @params
# text <str> : text
# @return
# <str> lowercase string w/o punctuation or digits
def clean(text):
return ''.join(c.lower() for c in text if c not in punctuation and not c.isdigit())
# Returns dictionary of word frequencies in text
# @params
# text <str> : text
# @return
# <{str:inti,}> map of word to frequency in text
def get_word_freqs(text):
words = clean(text.replace('\n', ' ')).split(' ')
freqs = {}
for word in words:
if not word or len(word) < 3 or known_freq(word, LANGUAGE) > COMMON_WORD_FREQ:
continue
if word in freqs:
freqs[word] += 1
else:
freqs[word] = 1
return {w : f / float(len(freqs)) for w,f in freqs.items()}
# Prompts user for concept, returns user-supplied concept and concept's Wikipedia page
# @params
# i <int> : number of concept being requsted from user
# @return
# (<str>, <WikipediaPage>) tuple containing user-supplied concept
# and corresponding WikipediaPage object
def get_concept_page(i):
is_valid = False
while not is_valid:
concept = input(ENTER_CONCEPT_MSG.format(Color.OKBLUE, i, Color.ENDC))
try:
concept_page = page(concept, auto_suggest=False)
is_valid = True
except DisambiguationError as e:
print(DISAMBIGUATION_ERROR_MSG.format(Color.WARNING, concept, Color.ENDC))
print('\n'.join(['\t{}'.format(option) for option in e.options]))
return (concept, concept_page)
# Returns frequency of connection word in each section of concept's page
# @params
# connection <str> : word to count frequency of in each section
# of concept's page
# concept_page <WikipediaPage> : wikipedia page of corresponding concept
# @return
# <{str:int,}> map of section titles to frequnecy of connection word in section
# with given title
def get_connection_section_freqs(connection, concept_page):
concept_section_freqs = {title : 0 for title in concept_page.sections}
for title in concept_page.sections:
_title = title
if not concept_page.section(title):
_title += 'Edit' # Handle pages with unverified information
if concept_page.section(_title) and ' {} '.format(connection) in concept_page.section(_title).lower():
concept_section_freqs[title] \
+= get_word_freqs(concept_page.section(_title))[connection]
return concept_section_freqs
# Returns string formatted with result of relation discovery
# @params
# concept1 <str> : first concept
# concept1_section <str> : first concept section title
# concept2 <str> : second concept
# concept2_section <str> : second concept section title
# connnection <str> : connecting concept
# @return
# <str> formatted string with result of relation discovery
def connection_result_output(concept1, concept1_section, \
concept2, concept2_section, connection):
return CONNECTION_RESULT_MSG.format(Color.OKGREEN, concept1, Color.ENDC, \
Color.OKGREEN, concept2, Color.ENDC, \
Color.WARNING, connection, Color.ENDC, \
Color.WARNING, connection, Color.ENDC, \
Color.HEADER, concept1_section, Color.ENDC, \
Color.OKGREEN, concept1, Color.ENDC, \
Color.WARNING, connection, Color.ENDC, \
Color.HEADER, concept2_section, Color.ENDC, \
Color.OKGREEN, concept2, Color.ENDC)
|
from django.shortcuts import render
from django.views.generic import CreateView, DetailView, ListView
from django.views.decorators.csrf import csrf_exempt
from django.contrib.auth.decorators import login_required
from django.utils.decorators import method_decorator
from django.forms.models import model_to_dict
from .forms import PotholeForm
from .models import Pothole, pothole_photo_directory
from django.core.files.storage import FileSystemStorage
from django.http import JsonResponse
import json
from django.contrib.gis.geos import Point
from django.core.serializers import serialize
# Create your views here.
@method_decorator([csrf_exempt, login_required], name='dispatch')
class PotholeCreateView(CreateView):
form_class = PotholeForm
model = Pothole
template_name = 'pothole/modal_form.html'
extra_context = {}
def get_context_data(self, *args, **kwargs):
self.extra_context['action'] = self.request.path
kwargs.update(self.extra_context)
return super().get_context_data(*args, **kwargs)
def post(self, request, *args, **kwargs):
data = dict()
form = self.form_class(request.POST, request.FILES)
if form.is_valid():
geom = json.loads(request.POST['geometry'])
geom = geom['coordinates']
last_id = 0 if Pothole.objects.all().first() == None else Pothole.objects.all().first().id
pothole = Pothole.objects.create(
pk=last_id+1,
width=request.POST['width'],
depth=request.POST['depth'],
response_time_needed=request.POST['response_time_needed'],
geometry=Point(geom[1],geom[0]),
photo=None,
created_by=request.user
)
myfile = request.FILES['photo']
fs = FileSystemStorage()
filename = fs.save(pothole_photo_directory(pothole,myfile.name), myfile)
pothole.photo = filename
pothole.save()
string_json = serialize('geojson', [pothole],
geometry_field='geometry',
fields=('id','width','depth','response_time_needed','photo'))
geojson = json.loads(string_json)
geojson['features'][0]['properties']['id'] = str(pothole.id)
geojson['features'][0]['properties']['get_width_display'] = pothole.get_width_display()
geojson['features'][0]['properties']['get_depth_display'] = pothole.get_depth_display()
geojson['features'][0]['properties']['get_response_time_needed_display'] = pothole.get_response_time_needed_display()
geojson['features'][0]['properties']['photo'] = pothole.photo.url
data['success'] = geojson
print(data['success'])
return JsonResponse(data)
else:
data['error'] = "form not valid!"
return JsonResponse(data, status=500)
def get(self, request, *args, **kwargs):
self.object = None
return self.render_to_response(self.get_context_data(*args, **kwargs))
class PotholeDetailView(DetailView):
model = Pothole
queryset = Pothole.objects.all()
def get_object(self, queryset=None):
id = int(self.request.GET.get('id',0))
print(id)
if not id == 0:
return self.queryset.get(id=id)
def render_to_response(self, context, **response_kwargs):
data = dict()
pothole = self.get_object()
string_json = serialize('geojson', [pothole],
geometry_field='geometry',
fields=('id', 'width', 'depth', 'response_time_needed', 'photo'))
geojson = json.loads(string_json)
geojson['features'][0]['properties']['id'] = str(pothole.id)
geojson['features'][0]['properties']['get_width_display'] = pothole.get_width_display()
geojson['features'][0]['properties']['get_depth_display'] = pothole.get_depth_display()
geojson['features'][0]['properties']['get_response_time_needed_display'] = pothole.get_response_time_needed_display()
geojson['features'][0]['properties']['photo'] = pothole.photo.url
data['success'] = geojson
return JsonResponse(data)
class PotholeListView(ListView):
model = Pothole
queryset = Pothole.objects.all()
def get_object(self, queryset=None):
width = self.request.GET.get('width', 'all')
depth = self.request.GET.get('depth', 'all')
response = self.request.GET.get('response', 'all')
print(width, depth, response)
criteria = dict()
if not width == 'all':
criteria['width'] = width
if not depth == 'all':
criteria['depth'] = depth
if not response == 'all':
criteria['response_time_needed'] = response
return self.queryset.filter(**criteria)
def render_to_response(self, context, **response_kwargs):
data = dict()
pothole = self.get_object()
pothole = list(pothole)
string_json = serialize('geojson', pothole,
geometry_field='geometry',
fields=('id', 'width', 'width_display', 'depth', 'response_time_needed', 'photo'))
geojson = json.loads(string_json)
for index,item in enumerate(geojson['features']):
# print(index,item)
item['properties']['id'] = str(pothole[index].id)
item['properties']['get_width_display'] = pothole[index].get_width_display()
item['properties']['get_depth_display'] = pothole[index].get_depth_display()
item['properties']['get_response_time_needed_display'] = pothole[index].get_response_time_needed_display()
item['properties']['photo'] = pothole[index].photo.url
data['success'] = geojson
return JsonResponse(data) |
if __name__ == '__main__':
with open('input0', 'r') as file:
start = int(file.readline().strip())
departs = [int(i) if i.isdigit() else False for i in file.readline().split(',')]
schedule = {}
for idx, d in enumerate(departs):
if d:
schedule[d] = idx
depart_offset = start % len(departs)
bus = min({k: v for k, v in schedule.items() if v >= depart_offset}, key=schedule.get)
depart = departs.index(bus)
print(bus)
print(depart)
print(bus * (depart_offset % depart))
|
from torch.optim.lr_scheduler import _LRScheduler
from torch.optim.lr_scheduler import MultiStepLR
from torch.optim.lr_scheduler import ExponentialLR
from torch.optim.lr_scheduler import CosineAnnealingLR
from torch.optim.lr_scheduler import ReduceLROnPlateau
from transformers import get_constant_schedule_with_warmup
from transformers import get_linear_schedule_with_warmup
class ConstantLR(_LRScheduler):
def __init__(self, optimizer, last_epoch=-1):
super(ConstantLR, self).__init__(optimizer, last_epoch)
def get_lr(self):
return [base_lr for base_lr in self.base_lrs]
class PolynomialLR(_LRScheduler):
def __init__(self, optimizer, max_iter, decay_iter=1,
gamma=0.9, last_epoch=-1):
super(PolynomialLR, self).__init__(optimizer, last_epoch)
self.decay_iter = decay_iter
self.max_iter = max_iter
self.gamma = gamma
def get_lr(self):
if self.last_epoch % self.decay_iter or self.last_epoch % self.max_iter:
return [base_lr for base_lr in self.base_lrs]
else:
factor = (1 - self.last_epoch / float(self.max_iter)) ** self.gamma
return [base_lr * factor for base_lr in self.base_lrs]
SCHEDULERS = {
"ConstantLR": ConstantLR,
"PolynomialLR": PolynomialLR,
"MultiStepLR": MultiStepLR,
"CosineAnnealingLR": CosineAnnealingLR,
"ExponentialLR": ExponentialLR,
"ReduceLROnPlateau": ReduceLROnPlateau,
"WarmUpConstant": get_constant_schedule_with_warmup,
"WarmUpLinear": get_linear_schedule_with_warmup,
}
def fetch_scheduler(optimizer, kwargs):
if kwargs is None:
print("No lr schedulers is used.")
return ConstantLR(optimizer)
name = kwargs["name"]
kwargs.pop("name")
print("Using schedulers: %s with params: %s" % (name, kwargs))
return SCHEDULERS[name](optimizer, **kwargs)
|
# simple_rl imports.
from simple_rl.planning.PlannerClass import Planner
def HierarchicalPlanner(Planner):
def __init__(self, mdp_hierarchy, planner):
self.mdp_hierarchy = mdp_hierarchy
self.planner = planner
def plan(self, low_level_start_state):
'''
Args:
low_level_start_state (simple_rl.State)
Returns:
(list)
'''
def make_mdp_hierarchy(mdp, state_abs) |
# Copyright 2016 Confluent Inc.
#
# 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
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
import os
import psutil
import shutil
import tempfile
from ducktape.tests.loggermaker import LoggerMaker, close_logger
class DummyFileLoggerMaker(LoggerMaker):
def __init__(self, log_dir, n_handles):
"""Create a logger with n_handles file handles, with files in log_dir"""
self.log_dir = log_dir
self.n_handles = n_handles
@property
def logger_name(self):
return "a.b.c"
def configure_logger(self):
for i in range(self.n_handles):
fh = logging.FileHandler(os.path.join(self.log_dir, "log-" + str(i)))
self._logger.addHandler(fh)
def open_files():
# current process
p = psutil.Process()
return p.open_files()
class CheckLogger(object):
def setup_method(self, _):
self.temp_dir = tempfile.mkdtemp()
def check_close_logger(self):
"""Check that calling close_logger properly cleans up resources."""
initial_open_files = open_files()
n_handles = 100
l = DummyFileLoggerMaker(self.temp_dir, n_handles)
# accessing logger attribute lazily triggers configuration of logger
the_logger = l.logger
assert len(open_files()) == len(initial_open_files) + n_handles
close_logger(the_logger)
assert len(open_files()) == len(initial_open_files)
def teardown_method(self, _):
if os.path.exists(self.temp_dir):
shutil.rmtree(self.temp_dir)
|
#!/usr/bin/env python
import io
from setuptools import setup, find_packages
version_tuple = __import__('pymysql').VERSION
if version_tuple[3] is not None:
version = "%d.%d.%d_%s" % version_tuple
else:
version = "%d.%d.%d" % version_tuple[:3]
with io.open('./README.rst', encoding='utf-8') as f:
readme = f.read()
setup(
name="PyMySQL",
version=version,
url='https://github.com/PyMySQL/PyMySQL/',
author='yutaka.matsubara',
author_email='yutaka.matsubara@gmail.com',
maintainer='INADA Naoki',
maintainer_email='songofacandy@gmail.com',
description='Pure Python MySQL Driver',
long_description=readme,
license="MIT",
packages=find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Database',
],
)
|
import binascii
import functools
import base64
from django.contrib import auth
def basic_authentication(func):
"Decorator for http basic authentication on views."
@functools.wraps(func)
def _basic_authentication(request, *args, **kwargs):
header_value = request.META.get('HTTP_AUTHORIZATION')
if not header_value:
return func(request, *args, **kwargs)
if not header_value.startswith('Basic '):
return func(request, *args, **kwargs)
try:
decoded_value = base64.b64decode(header_value[6:]).decode('utf8')
except binascii.Error:
return func(request, *args, **kwargs)
value_items = decoded_value.split(':')
if len(value_items) != 2:
return func(request, *args, **kwargs)
username, password = value_items
user = auth.authenticate(request, username=username, password=password)
if user is not None:
auth.login(request, user)
return func(request, *args, **kwargs)
return _basic_authentication
|
# Copyright 2020 ZTE Corporation.
# All Rights Reserved.
#
# 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
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from oslo_log import log as logging
from oslo_utils.fixture import uuidsentinel as uuids
from cyborg import context as cyborg_context
from cyborg.tests.unit.api.controllers.v2 import base as v2_test
from cyborg.tests.unit import policy_fixture
LOG = logging.getLogger(__name__)
class BasePolicyTest(v2_test.APITestV2):
def setUp(self):
super(BasePolicyTest, self).setUp()
self.policy = self.useFixture(policy_fixture.PolicyFixture())
self.admin_project_id = uuids.admin_project_id
self.project_id = uuids.project_id
self.foo_project_id = uuids.foo_project_id
self.project_id_other = uuids.project_id_other
# legacy default role: "default:admin_or_owner"
self.legacy_admin_context = cyborg_context.RequestContext(
user_id="legacy_admin", project_id=self.admin_project_id,
roles='admin')
self.legacy_owner_context = cyborg_context.RequestContext(
user_id="legacy_owner", project_id=self.admin_project_id,
roles='member')
# system scoped users
self.system_admin_context = cyborg_context.RequestContext(
user_id="sys_admin",
roles='admin', system_scope='all')
self.system_member_context = cyborg_context.RequestContext(
user_id="sys_member",
roles='member', system_scope='all')
self.system_reader_context = cyborg_context.RequestContext(
user_id="sys_reader", roles='reader', system_scope='all')
self.system_foo_context = cyborg_context.RequestContext(
user_id="sys_foo", roles='foo', system_scope='all')
# project scoped users
self.project_admin_context = cyborg_context.RequestContext(
user_id="project_admin", project_id=self.project_id,
roles='admin')
self.project_member_context = cyborg_context.RequestContext(
user_id="project_member", project_id=self.project_id,
roles='member')
self.project_reader_context = cyborg_context.RequestContext(
user_id="project_reader", project_id=self.project_id,
roles='reader')
self.project_foo_context = cyborg_context.RequestContext(
user_id="project_foo", project_id=self.project_id,
roles='foo')
self.other_project_member_context = cyborg_context.RequestContext(
user_id="other_project_member",
project_id=self.project_id_other,
roles='member')
self.all_contexts = [
self.legacy_admin_context, self.legacy_owner_context,
self.system_admin_context, self.system_member_context,
self.system_reader_context, self.system_foo_context,
self.project_admin_context, self.project_member_context,
self.project_reader_context, self.other_project_member_context,
self.project_foo_context,
]
|
from django.db import models
# Template Model
class Crypto(models.Model):
id = models.IntegerField(primary_key=True, default=0)
name = models.CharField(max_length=100) # Name of the stock
price = models.CharField(max_length=20) # Opening stock price
change = models.CharField(max_length=20) # Closing stock price
percentChange = models.CharField(max_length=20) # Amount of sales
def __str__(self):
return self.name
class Stock(models.Model):
id = models.IntegerField(primary_key=True, default=0)
name = models.CharField(max_length=100) # Name of the stock
price = models.CharField(max_length=20) # Opening stock price
change = models.CharField(max_length=20) # Closing stock price
volume = models.CharField(max_length=20) # Amount of sales
def __str__(self):
return self.name
class Indice(models.Model):
id = models.IntegerField(primary_key=True, default=0)
name = models.CharField(max_length=100) # Name of the stock
price = models.CharField(max_length=20) # Opening stock price
change = models.CharField(max_length=20) # Closing stock price
percentChange = models.CharField(max_length=20) # Amount of sales
def __str__(self):
return self.name
class MSFTHistorical(models.Model):
date = models.CharField(primary_key=True, max_length=10, default="")
high = models.FloatField()
low = models.FloatField()
open = models.FloatField()
close = models.FloatField()
adjClose = models.FloatField()
volume = models.FloatField()
def __str__(self):
return self.date
|
"""Oral Argument Audio Scraper for Court of Appeals for the Sixth Circuit
CourtID: ca6
Court Short Name: 6th Cir.
Authors: Brian W. Carver, Michael Lissner
Reviewer: None
History:
2014-11-06: Started by Brian W. Carver and wrapped up by mlr.
"""
import re
from datetime import datetime
from urlparse import urlparse, parse_qs
from juriscraper.OralArgumentSite import OralArgumentSite
class Site(OralArgumentSite):
def __init__(self):
super(Site, self).__init__()
self.court_id = self.__module__
self.url = 'http://www.ca6.uscourts.gov/internet/court_audio/aud1.php'
self.regex = re.compile('((?:\d{2}[- ]\d{4}\s+)+)(.*)')
def _get_download_urls(self):
"""Two options are currently provided by the site. The first is a link
to "save" the file, which gives you a zip containing the file. The
second is a link to "play" the file, which takes you to a flash player.
The good news is that the link to "play" it contains a real like to
actually download it inside the 'link' param.
"""
path_to_flash_page = '//tr/td[2]/a/@href[contains(., "?link=")]'
links_to_flash = list(self.html.xpath(path_to_flash_page))
return [parse_qs(urlparse(url).query)['link'][0] for url in
links_to_flash]
def _get_case_names(self):
path = '//table[@class="table_border"]/tr/td[1]/text()'
case_names = []
for s in self.html.xpath(path):
case_names.append(self.regex.search(s).group(2))
return case_names
def _get_case_dates(self):
dates = []
# Multiple items are listed under a single date.
table_path = '//table[@class="table_border"]'
date_path = './/td[1]/strong/text()'
# For every table full of OA's...
for table in self.html.xpath(table_path):
# Find the date str...
date_str = table.xpath(date_path)[0] # 10-10-2014 - Friday
d = datetime.strptime(date_str[:10], '%m-%d-%Y').date()
# The count of OAs on a date is the number of rows minus the header
# row.
total_rows = len(table.xpath('.//tr')) - 1
dates.extend([d] * total_rows)
return dates
def _get_docket_numbers(self):
path = '//table[@class="table_border"]/tr/td[1]/text()'
return [self.regex.search(s).group(1).strip().replace(' ', '-') for
s in self.html.xpath(path)]
|
"""This is the unittest comes with the utils.py,
Run `pytest -vv` in the directory after you make any changes to utils.py.
TODO: Add more test cases, cover testing the CLI itself.
"""
import time
import hvac
import os
import pytest
import requests_mock
import tempfile
from unittest.mock import patch
from . import utils
curr_path = os.path.abspath(os.path.dirname(__file__))
def test_compose_label_returns_expected_dict_for_valid_default_string():
default_string = (
'{'
+ str('"comment": "scaling-test-{}"'.format(time.strftime('%Y-%m-%d')))
+ '}'
)
assert utils.compose_label(default_string) == {
"comment": "scaling-test-{}".format(time.strftime('%Y-%m-%d'))
}
def test_compose_label_returns_none_for_invalid_string():
assert utils.compose_label('random_string') is None
def test_compose_label_returns_none_for_non_string():
assert utils.compose_label(None) is None
def test_load_es_query_returns_valid_dict():
assert (
utils.load_es_query(curr_path + '/test_data/smartseq2-query.json')['query'][
'bool'
]['must'][0]['match'][
'files.process_json.processes.content.library_construction_approach'
]
== 'Smart-seq2'
)
def test_prepare_notification_returns_valid_notification_body():
bundle_uuid, bundle_version = 'uuid', 'version'
subscription_id, transaction_id = 's_id', 't_id'
label = {'test-label-key': 'test-label-value'}
es_query_path = curr_path + '/test_data/smartseq2-query.json'
workflow_name = "AdapterSmartSeq2SingleCell"
expected = {
'match': {'bundle_uuid': bundle_uuid, 'bundle_version': bundle_version},
'subscription_id': subscription_id,
'transaction_id': transaction_id,
'es_query': utils.load_es_query(es_query_path),
'labels': label,
}
assert expected == utils.prepare_notification(
bundle_uuid,
bundle_version,
subscription_id,
workflow_name,
es_query_path,
label,
transaction_id,
)
@pytest.fixture()
def requests_mocker():
with requests_mock.Mocker() as m:
yield m
def test_subscription_probe_gets_back_smartseq2_subscription_id(requests_mocker):
lira_url = 'http://pipelines.dev.data.humancellatlas.org'
def _request_callback(request, context):
context.status_code = 200
return {
'workflow_info': {
'AdapterSmartSeq2SingleCell': {'subscription_id': 'ss2_id'},
'Optimus': {'subscription_id': 'optimus_id'},
}
}
requests_mocker.get(lira_url + '/version', json=_request_callback)
assert utils.subscription_probe(lira_url, 'AdapterSmartSeq2SingleCell') == 'ss2_id'
def test_subscription_probe_gets_back_optimus_subscription_id(requests_mocker):
lira_url = 'http://pipelines.dev.data.humancellatlas.org'
def _request_callback(request, context):
context.status_code = 200
return {
'workflow_info': {
'AdapterSmartSeq2SingleCell': {'subscription_id': 'ss2_id'},
'Optimus': {'subscription_id': 'optimus_id'},
}
}
requests_mocker.get(lira_url + '/version', json=_request_callback)
assert utils.subscription_probe(lira_url, 'Optimus') == 'optimus_id'
def test_dump_metrics_dumps_files():
temp_dir = tempfile.mkdtemp()
temp_metrics_file = os.path.join(temp_dir, 'metrics.json')
utils.dump_metrics(temp_metrics_file, key='value')
with open(temp_metrics_file) as f:
assert f.read() == '{"key": "value"}'
def test_send_notification_returns_ok_with_valid_params(requests_mocker):
lira_url = 'http://pipelines.dev.data.humancellatlas.org'
def _valid_request_callback(request, context):
context.status_code = 201
return {'id': 'Submitted'}
auth_dict = {'method': 'token', 'value': {'auth_token': 'token'}}
requests_mocker.post(lira_url + '/notifications', json=_valid_request_callback)
assert (
201
== utils.send_notification(
lira_url, auth_dict, {'notification': 'placeholder'}
).status_code
)
def _mock_load_hmac_cred(vault_client, path_to_hmac_cred):
hmac_key_id = 'fake-id'
hmac_key_value = 'fake-value'
return hmac_key_id, hmac_key_value
def _mock_get_vault_client(vault_server_url, path_to_vault_token):
return hvac.Client()
@patch('scale_test.utils.utils._get_vault_client', _mock_get_vault_client, create=True)
@patch('scale_test.utils.utils._load_hmac_creds', _mock_load_hmac_cred, create=True)
def test_prepare_auth_returns_valid_auth_dict_for_hmac_method():
test_user_input_auth_dict = {
'method': 'hmac',
'value': {},
'vault_server_url': 'test.vault.server:8000',
'path_to_vault_token': '~/.vault-token',
'path_to_hmac_cred': 'secret/test_org/test_team/dev/hmac',
}
auth_dict = utils.prepare_auth(test_user_input_auth_dict)
assert auth_dict['value']['hmac_key_id'] == 'fake-id'
assert auth_dict['value']['hmac_key_value'] == 'fake-value'
def test_prepare_auth_returns_valid_auth_dict_for_token_method():
test_user_input_auth_dict = {
'method': 'token',
'value': {'auth_token': 'test-token'},
}
auth_dict = utils.prepare_auth(test_user_input_auth_dict)
assert auth_dict['value']['auth_token'] == 'test-token'
def test_get_latest_bundle_no_duplicates():
bundle_list = [
{'bundle_uuid': '123', 'bundle_version': '2019-09-23T000000.000000Z'},
{'bundle_uuid': '456', 'bundle_version': '2019-09-23T000000.000000Z'},
]
results = utils.get_latest_bundle_versions(bundle_list)
assert len(results) == 2
def test_get_latest_bundle_returns_most_recent():
bundle_list = [
{'bundle_uuid': '123', 'bundle_version': '2019-09-23T000000.000000Z'},
{'bundle_uuid': '123', 'bundle_version': '2019-09-23T120000.000000Z'},
{'bundle_uuid': '123', 'bundle_version': '2019-09-24T000000.000000Z'},
]
results = utils.get_latest_bundle_versions(bundle_list)
latest_bundle_version = {
'bundle_uuid': '123',
'bundle_version': '2019-09-24T000000.000000Z',
}
assert len(results) == 1
assert results[0]['bundle_uuid'] == latest_bundle_version['bundle_uuid']
assert results[0]['bundle_version'] == latest_bundle_version['bundle_version']
def test_choose_more_recent_bundle():
old = {'bundle_uuid': '123', 'bundle_version': '2019-09-23T000000.000000Z'}
new = {'bundle_uuid': '123', 'bundle_version': '2019-09-24T000000.000000Z'}
result = utils.choose_more_recent_bundle(old, new)
assert result['bundle_version'] == new['bundle_version']
|
"""openjtalk module command line util """
import io
import wave
from argparse import ArgumentParser
from itertools import chain
import pyaudio
from . import openjtalk
def main():
parser = ArgumentParser()
parser.add_argument('-t', '--text')
for m in openjtalk.OPTION_MAPPINGS:
parser.add_argument(m.option, type=str, help=m.help)
ns_args = parser.parse_args()
d_args = vars(ns_args)
text = d_args.pop('text')
agent_args = chain.from_iterable(
('-' + k, v) for k, v in d_args.items() if v is not None)
agent = openjtalk.Agent.from_args(agent_args)
print(agent)
pa = pyaudio.PyAudio()
try:
wave_bytes = agent.talk(text)
with io.BytesIO(wave_bytes) as bytes_io:
with wave.open(bytes_io, 'rb') as wf:
sampwidth = wf.getsampwidth()
nchannels = wf.getnchannels()
rate = wf.getframerate()
pa_format = pa.get_format_from_width(sampwidth)
stream = pa.open(rate, nchannels, pa_format, output=True)
try:
chunk = 4096
while True:
frame_data = wf.readframes(chunk)
if not frame_data:
break
stream.write(frame_data)
finally:
stream.stop_stream()
stream.close()
finally:
pa.terminate()
if __name__ == "__main__":
main()
|
import numpy as np
from sklearn.datasets import make_blobs
from sklearn.tree import export_graphviz
import matplotlib.pyplot as plt
from .plot_2d_separator import (plot_2d_separator, plot_2d_classification,
plot_2d_scores)
from .plot_helpers import cm2 as cm, discrete_scatter
def visualize_coefficients(coefficients, feature_names, n_top_features=25):
"""Visualize coefficients of a linear model.
Parameters
----------
coefficients : nd-array, shape (n_features,)
Model coefficients.
feature_names : list or nd-array of strings, shape (n_features,)
Feature names for labeling the coefficients.
n_top_features : int, default=25
How many features to show. The function will show the largest (most
positive) and smallest (most negative) n_top_features coefficients,
for a total of 2 * n_top_features coefficients.
"""
coefficients = coefficients.squeeze()
if coefficients.ndim > 1:
# this is not a row or column vector
raise ValueError("coeffients must be 1d array or column vector, got"
" shape {}".format(coefficients.shape))
coefficients = coefficients.ravel()
if len(coefficients) != len(feature_names):
raise ValueError("Number of coefficients {} doesn't match number of"
"feature names {}.".format(len(coefficients),
len(feature_names)))
# get coefficients with large absolute values
coef = coefficients.ravel()
positive_coefficients = np.argsort(coef)[-n_top_features:]
negative_coefficients = np.argsort(coef)[:n_top_features]
interesting_coefficients = np.hstack([negative_coefficients,
positive_coefficients])
# plot them
plt.figure(figsize=(15, 5))
colors = [cm(1) if c < 0 else cm(0)
for c in coef[interesting_coefficients]]
plt.bar(np.arange(2 * n_top_features), coef[interesting_coefficients],
color=colors)
feature_names = np.array(feature_names)
plt.subplots_adjust(bottom=0.3)
plt.xticks(np.arange(1, 1 + 2 * n_top_features),
feature_names[interesting_coefficients], rotation=60,
ha="right")
plt.ylabel("Coefficient magnitude")
plt.xlabel("Feature")
def heatmap(values, xlabel, ylabel, xticklabels, yticklabels, cmap=None,
vmin=None, vmax=None, ax=None, fmt="%0.2f"):
if ax is None:
ax = plt.gca()
# plot the mean cross-validation scores
img = ax.pcolor(values, cmap=cmap, vmin=vmin, vmax=vmax)
img.update_scalarmappable()
ax.set_xlabel(xlabel)
ax.set_ylabel(ylabel)
ax.set_xticks(np.arange(len(xticklabels)) + .5)
ax.set_yticks(np.arange(len(yticklabels)) + .5)
ax.set_xticklabels(xticklabels)
ax.set_yticklabels(yticklabels)
ax.set_aspect(1)
for p, color, value in zip(img.get_paths(), img.get_facecolors(),
img.get_array()):
x, y = p.vertices[:-2, :].mean(0)
if np.mean(color[:3]) > 0.5:
c = 'k'
else:
c = 'w'
ax.text(x, y, fmt % value, color=c, ha="center", va="center")
return img
def make_handcrafted_dataset():
# a carefully hand-designed dataset lol
X, y = make_blobs(centers=2, random_state=4, n_samples=30)
y[np.array([7, 27])] = 0
mask = np.ones(len(X), dtype=np.bool)
mask[np.array([0, 1, 5, 26])] = 0
X, y = X[mask], y[mask]
return X, y
def print_topics(topics, feature_names, sorting, topics_per_chunk=6,
n_words=20):
for i in range(0, len(topics), topics_per_chunk):
# for each chunk:
these_topics = topics[i: i + topics_per_chunk]
# maybe we have less than topics_per_chunk left
len_this_chunk = len(these_topics)
# print topic headers
print(("topic {:<8}" * len_this_chunk).format(*these_topics))
print(("-------- {0:<5}" * len_this_chunk).format(""))
# print top n_words frequent words
for i in range(n_words):
try:
print(("{:<14}" * len_this_chunk).format(
*feature_names[sorting[these_topics, i]]))
except:
pass
print("\n")
def get_tree(tree, **kwargs):
try:
# python3
from io import StringIO
except ImportError:
# python2
from StringIO import StringIO
f = StringIO()
export_graphviz(tree, f, **kwargs)
import graphviz
return graphviz.Source(f.getvalue())
__all__ = ['plot_2d_separator', 'plot_2d_classification', 'plot_2d_scores',
'cm', 'visualize_coefficients', 'print_topics', 'heatmap',
'discrete_scatter']
|
# Maximum joint number is 10.
# a0[0,1,2,3,4,5,6,7,8,9]
# a1[0,1,2,3,4,5,6,7,8,9]
# ...
# a15[0,1,2,3,4,5,6,7,8,9]
# Total possible combinations = (Pr10)^(16-1) = (10!)^15 (A huge number.)
# So we randomly shuffle them, and if repeats, re-shuffle to get a new one.
import numpy as np
from common import seeds
with seeds.temp_seed(0):
for j in range(2):
joint_orders = []
for i in range(16):
joint_order = np.arange(10)
np.random.shuffle(joint_order)
joint_orders.append(joint_order)
joint_orders = np.array(joint_orders)
print(joint_orders) |
# -*- Mode: python; tab-width: 4; indent-tabs-mode:nil; coding:utf-8 -*-
# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
#
# MDAnalysis --- https://www.mdanalysis.org
# Copyright (c) 2006-2017 The MDAnalysis Development Team and contributors
# (see the file AUTHORS for the full list of names)
#
# Released under the GNU Public Licence, v2 or any higher version
#
# Please cite your use of MDAnalysis in published work:
#
# R. J. Gowers, M. Linke, J. Barnoud, T. J. E. Reddy, M. N. Melo, S. L. Seyler,
# D. L. Dotson, J. Domanski, S. Buchoux, I. M. Kenney, and O. Beckstein.
# MDAnalysis: A Python package for the rapid analysis of molecular dynamics
# simulations. In S. Benthall and S. Rostrup editors, Proceedings of the 15th
# Python in Science Conference, pages 102-109, Austin, TX, 2016. SciPy.
# doi: 10.25080/majora-629e541a-00e
#
# N. Michaud-Agrawal, E. J. Denning, T. B. Woolf, and O. Beckstein.
# MDAnalysis: A Toolkit for the Analysis of Molecular Dynamics Simulations.
# J. Comput. Chem. 32 (2011), 2319--2327, doi:10.1002/jcc.21787
#
"""
Null output --- :mod:`MDAnalysis.coordinates.null`
==================================================
The :class:`NullWriter` provides a Writer instance that behaves like
any other writer but effectively ignores its input and does not write
any output files. This is similar to writing to ``/dev/null``.
This class exists to allow developers writing generic code and tests.
Classes
-------
.. autoclass:: NullWriter
:members:
"""
from __future__ import absolute_import
from . import base
class NullWriter(base.WriterBase):
"""A trajectory Writer that does not do anything.
The NullWriter is the equivalent to ``/dev/null``: it behaves like
a Writer but ignores all input. It can be used in order to
suppress output.
"""
format = 'NULL'
multiframe = True
units = {'time': 'ps', 'length': 'Angstrom'}
def __init__(self, filename, **kwargs):
pass
def _write_next_frame(self, obj):
pass
|
# Generated by Django 2.1.2 on 2018-11-03 18:31
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('app', '0031_auto_20181103_1226'),
]
operations = [
migrations.AlterField(
model_name='story',
name='author',
field=models.ForeignKey(default=None, on_delete=django.db.models.deletion.CASCADE, to='app.UserWithProfile', verbose_name='autor'),
),
]
|
#Criar uma aplicação que leia um número e diga qual número vem depois e antes.
|
import torch
from torchaudio_unittest.common_utils import PytorchTestCase
from .utils import skipIfNoTransducer
from .torchscript_consistency_impl import RNNTLossTorchscript
@skipIfNoTransducer
class TestRNNTLoss(RNNTLossTorchscript, PytorchTestCase):
device = torch.device('cpu')
|
import sys
import os
import argparse
import cv2
import torch
from torch.autograd import Variable
from torchvision import transforms
import torch.backends.cudnn as cudnn
import torchvision
import torch.nn.functional as F
from PIL import Image
import pandas as pd
import my_hopenet
import utils
from sklearn.decomposition import PCA
# Argument parser
def parse_args():
"""Parse input arguments."""
parser = argparse.ArgumentParser(description='Head pose estimation using the Hopenet network.')
parser.add_argument('--gpu', dest='gpu_id', help='GPU device id to use [0]',
default=0, type=int)
parser.add_argument('--snapshot', dest='snapshot', help='Path of model snapshot.',
default='', type=str)
parser.add_argument('--video', dest='video_path', help='Path of video')
parser.add_argument('--bboxes', dest='bboxes', help='Bounding box annotations of frames')
parser.add_argument('--output_string', dest='output_string', help='String appended to output file')
parser.add_argument('--fps', dest='fps', help='Frames per second of source video', type=float, default=30.)
parser.add_argument(("--out_dir"), dest="outdir", help="Output directory", type=str, required=True)
args = parser.parse_args()
return args
if __name__ == '__main__':
args = parse_args()
cudnn.enabled = True
batch_size = 1
gpu = args.gpu_id
snapshot_path = args.snapshot
out_dir = args.outdir
video_path = args.video_path
if not os.path.exists(out_dir):
os.makedirs(out_dir)
if not os.path.exists(args.video_path):
sys.exit('Video does not exist')
# ResNet50 structure
model = my_hopenet.Hopenet(torchvision.models.resnet.Bottleneck, [3, 4, 6, 3], 66)
print('Loading snapshot.')
# Load snapshot
saved_state_dict = torch.load(snapshot_path)
model.load_state_dict(saved_state_dict)
print('Loading meta_data.')
transformations = transforms.Compose([transforms.Scale(224),
transforms.CenterCrop(224), transforms.ToTensor(),
transforms.Normalize(mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225])])
model.cuda(gpu)
print('Ready to test network.')
# Test the Model
model.eval() # Change model to 'eval' mode (BN uses moving mean/var).
total = 0
idx_tensor = [idx for idx in range(66)]
idx_tensor = torch.FloatTensor(idx_tensor).cuda(gpu)
video = cv2.VideoCapture(video_path)
# New cv2
width = int(video.get(cv2.CAP_PROP_FRAME_WIDTH)) # float
height = int(video.get(cv2.CAP_PROP_FRAME_HEIGHT)) # float
# Define the codec and create VideoWriter object
fourcc = cv2.VideoWriter_fourcc(*'MJPG')
out = cv2.VideoWriter(out_dir + '%s_hopenet.avi' % args.output_string, fourcc, args.fps, (width, height))
out_df = pd.DataFrame([], columns=["frame_num","face_id","total_detected_faces","x_min","y_min","x_max","y_max",
"score","x1","y1","x2","y2","x3","y3","x4","y4","x5","y5","yaw","pitch","roll"])
l4s = []
frame_num = 0
bbox_line_df = pd.read_csv(args.bboxes)
idx = 0
while idx < bbox_line_df.shape[0]:
line = bbox_line_df.iloc[idx]
det_frame_num = int(line.frame_num)
print("{} \\ {} - {} -> {:.2f}".format(idx, bbox_line_df.shape[0], args.output_string, idx/bbox_line_df.shape[0]))
# Save all frames as they are if they don't have bbox annotation.
while frame_num < det_frame_num:
ret, frame = video.read()
if ret == False:
out.release()
video.release()
sys.exit(0)
out.write(frame)
frame_num += 1
# Start processing frame with bounding box
ret,frame = video.read()
if ret == False:
print("Couldnt read next frame.")
break
cv2_frame = cv2.cvtColor(frame,cv2.COLOR_BGR2RGB)
while True:
x_min, y_min, x_max, y_max = int(line.bb_x1), int(line.bb_y1), int(line.bb_x2), int(line.bb_y2)
bbox_width = abs(x_max - x_min)
bbox_height = abs(y_max - y_min)
x_min -= 50
x_max += 50
y_min -= 50
y_max += 30
x_min = max(x_min, 0)
y_min = max(y_min, 0)
x_max = min(frame.shape[1], x_max)
y_max = min(frame.shape[0], y_max)
# Crop face loosely
img = cv2_frame[y_min:y_max, x_min:x_max]
img = Image.fromarray(img)
# Transform
img = transformations(img)
img_shape = img.size()
img = img.view(1, img_shape[0], img_shape[1], img_shape[2])
img = Variable(img).cuda(gpu)
yaw, pitch, roll, l4 = model(img)
yaw_predicted = F.softmax(yaw)
pitch_predicted = F.softmax(pitch)
roll_predicted = F.softmax(roll)
# Get continuous predictions in degrees.
yaw_predicted = torch.sum(yaw_predicted.data[0] * idx_tensor) * 3 - 99
pitch_predicted = torch.sum(pitch_predicted.data[0] * idx_tensor) * 3 - 99
roll_predicted = torch.sum(roll_predicted.data[0] * idx_tensor) * 3 - 99
l4s.append(l4)
data = [frame_num, line.face_id, line.total_detected_faces, line.bb_x1, line.bb_y1, line.bb_x2, line.bb_y2,
line.score, line.x1, line.y1, line.x2, line.y2, line.x3, line.y3, line.x4, line.y4, line.x5, line.y5,
float(yaw_predicted), float(pitch_predicted), float(roll_predicted)]
data_df = pd.DataFrame([data], columns=out_df.columns)
out_df = out_df.append(data_df, ignore_index=True)
utils.draw_axis(frame, yaw_predicted, pitch_predicted, roll_predicted, tdx = (x_min + x_max) / 2, tdy= (y_min + y_max) / 2, size = bbox_height/2)
# Plot expanded bounding box
cv2.rectangle(frame, (x_min, y_min), (x_max, y_max), (0,255,0), 1)
# Peek next frame detection
try:
next_frame_num = int(bbox_line_df.iloc[idx+1].frame_num)
except Exception:
print("Reached end of file.")
next_frame_num = -1
if next_frame_num == det_frame_num:
idx += 1
line = bbox_line_df.iloc[idx]
det_frame_num = int(line.frame_num)
else:
break
idx += 1
out.write(frame)
frame_num += 1
out.release()
video.release()
l4_df = pd.DataFrame(l4s)
l4_df.to_csv("{}{}_l4_no_pca.csv".format(out_dir, args.output_string), index=False)
# print("Starting PCA reduction to 100 features.")
# pca = PCA(n_components=100)
# trans = pca.fit_transform(l4s)
# print("PCA finished.")
#
# out_df["l4"] = list(trans)
#
# out_df.to_csv("{}{}_l4.csv".format(out_dir, args.output_string), index=False)
# print("Written to file - Exiting.") |
import asyncio
import pytest
from .models import db, User, UserType
pytestmark = pytest.mark.asyncio
async def test(bind):
await User.create(nickname="test")
assert isinstance(await User.query.gino.first(), User)
bind.update_execution_options(return_model=False)
assert not isinstance(await User.query.gino.first(), User)
async with db.acquire() as conn:
assert isinstance(
await conn.execution_options(return_model=True).first(User.query), User
)
assert not isinstance(
await User.query.execution_options(return_model=False).gino.first(), User
)
assert isinstance(
await User.query.execution_options(return_model=True).gino.first(), User
)
assert not isinstance(await User.query.gino.first(), User)
bind.update_execution_options(return_model=True)
assert isinstance(await User.query.gino.first(), User)
# noinspection PyProtectedMember
async def test_compiled_first_not_found(bind):
async with bind.acquire() as conn:
with pytest.raises(LookupError, match="No such execution option"):
result = conn._execute("SELECT NOW()", (), {})
result.context._compiled_first_opt("nonexist")
# noinspection PyUnusedLocal
async def test_query_ext(bind):
q = User.query
assert q.gino.query is q
u = await User.create(nickname="test")
assert isinstance(await User.query.gino.first(), User)
row = await User.query.gino.return_model(False).first()
assert not isinstance(row, User)
assert row == (
u.id,
"test",
{"age": 18, "birthday": "1970-01-01T00:00:00.000000"},
UserType.USER,
None,
)
row = await User.query.gino.model(None).first()
assert not isinstance(row, User)
assert row == (
u.id,
"test",
{"age": 18, "birthday": "1970-01-01T00:00:00.000000"},
UserType.USER,
None,
)
row = await db.select([User.id, User.nickname, User.type]).gino.first()
assert not isinstance(row, User)
assert row == (u.id, "test", UserType.USER)
user = await db.select([User.id, User.nickname, User.type]).gino.model(User).first()
assert isinstance(user, User)
assert user.id is not None
assert user.nickname == "test"
assert user.type == UserType.USER
with pytest.raises(asyncio.TimeoutError):
await db.select([db.func.SLEEP(1), User.id]).gino.timeout(0.1).status()
|
import keras
from generators.DataGenerator import *
def get_model(name):
if name == "single":
model_path = os.path.join('..', 'models', 'categorical_model_six_full_improved_v5.h5')
return keras.models.load_model(model_path, compile=False)
elif name == "sequential":
multi_model_path = os.path.join('..', 'models', 'categorical_model_six_full_improved_v5.h5')
recurrent_model_path = os.path.join('..', 'models', 'recurrent_model_improved_v5.h5')
multi_class_model = keras.models.load_model(multi_model_path, compile=False)
recurrent_model = keras.models.load_model(recurrent_model_path, compile=False)
return multi_class_model, recurrent_model
else:
raise ValueError("Name %s not recognized." % (name,))
def predict_single_file(file):
loaded_multi_class_model = get_model("single")
preprocessed_image = Preprocessor.preprocess(file)
preprocessed_image = np.repeat(preprocessed_image[..., np.newaxis], 3, -1)
preprocessed_image = np.expand_dims(preprocessed_image, axis=0)
classes_predictions = loaded_multi_class_model.predict(preprocessed_image)[0]
return classes_predictions
def predict_file_sequence(files):
def preprocess_func(file_path):
return Preprocessor.preprocess(file_path)
loaded_multi_class_model, loaded_recurrent_model = get_model("sequential")
preprocessed_files = np.array(list(map(preprocess_func, files)))
preprocessed_files = np.array([np.repeat(p[..., np.newaxis], 3, -1) for p in preprocessed_files])
predictions = loaded_multi_class_model.predict(preprocessed_files)
predictions = predictions.reshape(1, *predictions.shape)
classes_predictions = loaded_recurrent_model.predict(predictions)[0]
return classes_predictions
|
import logging
import numpy as np
import tensorflow_datasets as tfds
from .dataset import Dataset
from .preprocessing import apply_normalization, get_feature_preproc_fn, select_num_samples_per_cls,\
split_train_val_given_ratio_val
__author__ = 'Otilia Stretcu'
CLASS_NAMES = {
'mnist': ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
'svhn_cropped': ['1', '2', '3', '4', '5', '6', '7', '8', '9', '0'],
'cifar10': ['airplane', 'automobile', 'bird', 'cat', 'deer', 'dog', 'frog',
'horse', 'ship', 'truck'],
'cifar100': [
'apple', 'aquarium_fish', 'baby', 'bear', 'beaver', 'bed', 'bee', 'beetle',
'bicycle', 'bottle', 'bowl', 'boy', 'bridge', 'bus', 'butterfly', 'camel',
'can', 'castle', 'caterpillar', 'cattle', 'chair', 'chimpanzee', 'clock',
'cloud', 'cockroach', 'couch', 'crab', 'crocodile', 'cup', 'dinosaur',
'dolphin', 'elephant', 'flatfish', 'forest', 'fox', 'girl', 'hamster',
'house', 'kangaroo', 'keyboard', 'lamp', 'lawn_mower', 'leopard', 'lion',
'lizard', 'lobster', 'man', 'maple_tree', 'motorcycle', 'mountain', 'mouse',
'mushroom', 'oak_tree', 'orange', 'orchid', 'otter', 'palm_tree', 'pear',
'pickup_truck', 'pine_tree', 'plain', 'plate', 'poppy', 'porcupine',
'possum', 'rabbit', 'raccoon', 'ray', 'road', 'rocket', 'rose',
'sea', 'seal', 'shark', 'shrew', 'skunk', 'skyscraper', 'snail', 'snake',
'spider', 'squirrel', 'streetcar', 'sunflower', 'sweet_pepper', 'table',
'tank', 'telephone', 'television', 'tiger', 'tractor', 'train', 'trout',
'tulip', 'turtle', 'wardrobe', 'whale', 'willow_tree', 'wolf', 'woman',
'worm'],
'fashion_mnist': ['T-shirt/top', 'Trouser', 'Pullover', 'Dress', 'Coat',
'Sandal', 'Shirt', 'Sneaker', 'Bag', 'Ankle boot'],
}
def load_data(dataset_name, ratio_val, normalization=None, ratio_test=None,
max_samples=None, data_path=None):
"""Loads the dataset with the provided name.
Args:
dataset_name: A string representing the dataset name.
ratio_val: A float number between [0, 1] representing the ratio of the training data to
set aside for validation.
normalization: A string representing the type of data normalization to perform.
ratio_test: A float number between [0, 1] representing the ratio of the training data to
set aside for test, in case a test set is not provided.
max_samples: Maximum number of train examples allowed. If a validation set is not provided,
the validation set is split out from the max_samples examples.
data_path: String representing a
Returns:
"""
if dataset_name == 'tiny_imagenet':
from .tiny_imagenet import load_tiny_imagenet
data = load_tiny_imagenet(
data_path=data_path,
ratio_val=ratio_val,
normalization=normalization,
max_samples=max_samples)
elif dataset_name == 'shapes':
from .shapes import load_shapes
data = load_shapes(
dataset_name=dataset_name,
path=data_path,
normalization=normalization,
ratio_test=ratio_test,
ratio_val=ratio_val,
max_samples=max_samples)
else:
data = load_data_tf_datasets(
dataset_name,
normalization=normalization,
ratio_val=ratio_val,
ratio_test=ratio_test,
max_samples=max_samples,
coarse_labels=dataset_name == 'cifar100-coarse')
return data
def load_data_tf_datasets(dataset_name, normalization=None, ratio_val=None, ratio_test=None,
max_samples=None, coarse_labels=False, online_preprocessing=None):
if dataset_name == 'svhn':
dataset_name += '_cropped'
# Load train data.
data = tfds.load(dataset_name, batch_size=-1)
data_subset = tfds.as_numpy(data['train'])
train_inputs = data_subset['image']
train_labels = data_subset['coarse_label'] if coarse_labels else data_subset['label']
# Remove dimension of size 1 from the labels.
train_labels = np.squeeze(train_labels)
if max_samples is not None and train_inputs.shape[0] > max_samples:
num_cls = max(train_labels) + 1
assert max_samples > num_cls, \
'The requested number of samples, %d, is not higher than the total ' \
'number of classes, %d.' % (max_samples, num_cls)
num_samples_per_cls = int(max_samples // num_cls)
train_inputs, train_labels, _, _ = select_num_samples_per_cls(
num_samples_per_cls, train_inputs, train_labels, num_cls=num_cls)
# Load test data.
if 'test' in data:
data_subset = tfds.as_numpy(data['test'])
test_inputs = data_subset['image']
test_labels = data_subset['coarse_label'] if coarse_labels else data_subset['label']
# Remove dimension of size 1 from the labels.
test_labels = np.squeeze(test_labels)
else:
logging.info('No test data, splitting %f from train...', ratio_test)
# Split.
train_inputs, train_labels, test_inputs, test_labels = \
split_train_val_given_ratio_val(train_inputs, train_labels, ratio_val=ratio_test)
# Load validation data.
if 'validation' in data:
data_subset = tfds.as_numpy(data['validation'])
val_inputs = data_subset['image']
val_labels = data_subset['coarse_label'] if coarse_labels else data_subset['label']
# Remove dimension of size 1 from the labels.
val_labels = np.squeeze(val_labels)
else:
logging.info('No validation data, splitting %f from train...', ratio_val)
train_inputs, train_labels, val_inputs, val_labels = split_train_val_given_ratio_val(
train_inputs, train_labels, ratio_val=ratio_val)
# Potentially apply normalization.
train_inputs, test_inputs, val_inputs = apply_normalization(
train_inputs, test_inputs, val_inputs=val_inputs,
normalization=normalization)
# Get the class names.
class_names = CLASS_NAMES[dataset_name] if dataset_name in CLASS_NAMES else None
# Select the preprocessing function to apply online as batches are requested.
feature_preproc_fn = get_feature_preproc_fn(online_preprocessing)
# Create dataset.
data = Dataset.build_from_splits(
name=dataset_name+'-coarse' if coarse_labels else dataset_name,
inputs_train=train_inputs,
labels_train=train_labels,
inputs_test=test_inputs,
labels_test=test_labels,
ratio_val=ratio_val,
inputs_val=val_inputs,
labels_val=val_labels,
class_names=class_names,
feature_preproc_fn=feature_preproc_fn)
return data
|
import requests
class EmployeeService(object):
def __init__(self, api_authorization, api_url, merchant_id):
self.url = api_url.rstrip('/')
self.merchant_id = merchant_id
self.auth = api_authorization
# Employees
def get_employees(self):
# Define Payload
payload = {}
# Send Request
r = requests.get(self.url + '/v3/merchants/' + self.merchant_id + '/employees/', auth=self.auth, timeout=30,
params=payload)
return r.json()
def create_employee(self, employee):
# Define Payload
payload = employee
# Send Request
r = requests.post(self.url + '/v3/merchants/' + self.merchant_id + '/employees/', auth=self.auth,
timeout=30, json=payload)
return r.json()
def get_employee_by_id(self, employee_id):
# Define Payload
payload = {}
# Send Request
r = requests.get(self.url + '/v3/merchants/' + self.merchant_id + '/employees/' + employee_id, auth=self.auth,
timeout=30,
params=payload)
return r.json()
def update_employee_by_id(self, employee):
# Define Payload
payload = employee
# Send Request
r = requests.post(self.url + '/v3/merchants/' + self.merchant_id + '/employees/' + employee["id"], auth=self.auth,
timeout=30,
params=payload)
return r.json()
def delete_employee_by_id(self, employee_id):
# Define Payload
payload = {}
# Send Request
r = requests.delete(self.url + '/v3/merchants/' + self.merchant_id + '/employees/' + employee_id,
auth=self.auth,
timeout=30,
params=payload)
return r.json()
# Shifts
def get_shifts(self):
# Define Payload
payload = {}
# Send Request
r = requests.get(self.url + '/v3/merchants/' + self.merchant_id + '/shifts/', auth=self.auth,
timeout=30,
params=payload)
return r.json()
def get_shift_by_id(self, shift_id):
# Define Payload
payload = {}
# Send Request
r = requests.get(self.url + '/v3/merchants/' + self.merchant_id + '/shifts/' + shift_id, auth=self.auth,
timeout=30,
params=payload)
return r.json()
def get_shifts_by_employee_id(self, employee_id):
# Define Payload
payload = {}
# Send Request
r = requests.get(self.url + '/v3/merchants/' + self.merchant_id + '/employees/' + employee_id + '/shifts',
auth=self.auth,
timeout=30,
params=payload)
return r.json()
def create_shift_by_employee_id(self, employee_id, shift):
# Define Payload
payload = shift
# Send Request
r = requests.post(self.url + '/v3/merchants/' + self.merchant_id + '/employees/' + employee_id + '/shifts',
auth=self.auth,
timeout=30,
json=payload)
return r.json()
def get_employee_shift_by_shift_id(self, employee_id, shift_id):
# Define Payload
payload = {}
# Send Request
r = requests.get(self.url + '/v3/merchants/' + self.merchant_id + '/employees/' + employee_id + '/shifts/'
+ shift_id,
auth=self.auth,
timeout=30,
params=payload)
return r.json()
def update_employee_shift_by_shift_id(self, employee_id, shift):
# Define Payload
payload = {}
# Send Request
r = requests.post(
self.url + '/v3/merchants/' + self.merchant_id + '/employees/' + employee_id + '/shifts/' + shift["id"],
auth=self.auth,
timeout=30,
json=payload)
return r.json()
def delete_employee_shift_by_shift_id(self, employee_id, shift_id):
# Define Payload
payload = {}
# Send Request
r = requests.delete(
self.url + '/v3/merchants/' + self.merchant_id + '/employees/' + employee_id + '/shifts/' + shift_id,
auth=self.auth,
timeout=30,
params=payload)
return r.json()
# Shifts CSV
def get_shifts_csv(self):
# Define Payload
payload = {}
# Send Request
r = requests.get(
self.url + '/v3/merchants/' + self.merchant_id + '/shifts.csv',
auth=self.auth,
timeout=30,
params=payload)
return r.json()
# Orders
def get_orders_by_employee_id(self, employee_id):
# Define Payload
payload = {}
# Send Request
r = requests.get(
self.url + '/v3/merchants/' + self.merchant_id + '/employees/' + employee_id + '/orders',
auth=self.auth,
timeout=30,
params=payload)
return r.json()
# EmployeeCards
def get_employee_cards(self):
# Define Payload
payload = {}
# Send Request
r = requests.get(
self.url + '/v3/merchants/' + self.merchant_id + '/employee_cards',
auth=self.auth,
timeout=30,
params=payload)
return r.json()
def create_employee_cards(self, employee_card):
# Define Payload
payload = employee_card
# Send Request
r = requests.post(
self.url + '/v3/merchants/' + self.merchant_id + '/employee_cards',
auth=self.auth,
timeout=30,
json=payload)
return r.json()
def get_employee_card_by_id(self, employee_card_id):
# Define Payload
payload = {}
# Send Request
r = requests.get(
self.url + '/v3/merchants/' + self.merchant_id + '/employee_cards/' + employee_card_id,
auth=self.auth,
timeout=30,
params=payload)
return r.json()
def delete_employee_card_by_id(self, employee_card_id):
# Define Payload
payload = {}
# Send Request
r = requests.delete(
self.url + '/v3/merchants/' + self.merchant_id + '/employee_cards/' + employee_card_id,
auth=self.auth,
timeout=30,
params=payload)
return r.json()
|
# 加载自定义库
import sys
from pathlib import Path
from importlib import import_module
DOC_ROOT = Path(__file__).absolute().parents[2]
MOD_PATH = str(DOC_ROOT/'xinetzone/src')
# print(MOD_PATH)
if MOD_PATH not in sys.path:
sys.path.extend([MOD_PATH])
tvmx = import_module('tvmx')
# 设定 TVM 项目的根目录
# TVM_ROOT = Path('/media/pc/data/4tb/lxw/study/tvm')
TVM_ROOT = Path(__file__).absolute().resolve().parents[2]
# print(TVM_ROOT)
tvm, vta = tvmx.import_tvm(TVM_ROOT)
# 查看 TVM 和 VTA 路径
print(f'{tvm}\n{vta}') |
from typing import Optional, Any, Type, Union
class Node:
def __init__(self, value: Union[float, int] = None, left = None, right = None):
self.value = value
self.left = left
self.right = right
def __str__(self):
return f"Value: {self.value}"
class BST:
def __init__(self, root: Node = None):
self.root: Node = root
def add_at_head(self, node: Node = None):
if self.root is None:
self.root = Node
else:
next_node = self.root
# while next_node is not None:
# if next_node.left.value < node.value:
#
pass
if __name__ == '__main__':
bst = BST()
bst.add_at_head(Node(5)) |
'''
Probem Task : This program will find longest substring with alternating odd/even or even/odd digits
Problem Link : https://edabit.com/challenge/RB6iWFrCd6rXWH3vi
'''
def LongestAlternativeSubstring(digits):
sol = digits[0];
for i in range(1,len(digits)):
if (int(digits[i - 1]) % 2 != int(digits[i]) % 2):
sol += digits[i]
else:
sol += " " + digits[i]
ret = max(sol.split(" "),key=len)
return ret if len(ret)>=2 else False
digits = input("Enter string ")
print("Result : ",LongestAlternativeSubstring(digits))
|
from django.apps import AppConfig
class DjangoStoragesConfig(AppConfig):
name = "minio_storage"
|
import json
import math
import warnings
warnings.filterwarnings('ignore')
from .logger import logger
from GIS_Tools import ProxyGrabber
import requests
from time import sleep
def y2lat(y):
return (2 * math.atan(math.exp(y / 6378137)) - math.pi / 2) / (math.pi / 180)
def x2lon(x):
return x / (math.pi / 180.0) / 6378137.0
def xy2lonlat(x, y):
return [x2lon(x), y2lat(y)]
USER_AGENT = 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 \
Safari/537.36'
class TimeoutException(Exception):
pass
def get_rosreestr_headers():
return {
'pragma': 'no-cache',
'referer': 'https://pkk.rosreestr.ru/',
'user-agent': USER_AGENT,
'x-requested-with': 'XMLHttpRequest',
}
def make_request(url):
grabber = ProxyGrabber.get_grabber(allowed_countries=['Russian Federation', 'RU'])
if url:
logger.debug(url)
try:
headers = get_rosreestr_headers()
response = requests.get(
url,
headers=headers,
proxies=grabber.get_proxy(),
timeout=10,
verify=False
)
logger.debug(f'Response [{response.status_code}]')
if response.status_code == 503:
logger.debug(f'Code 503')
sleep(1)
return make_request(url)
else:
is_error = is_error_response(url, response.content)
if is_error:
raise Exception(is_error)
return response.content
except requests.exceptions.RequestException as e:
logger.debug(f'Request exception: {str(e)}')
grabber.next_proxy()
return make_request(url)
except RecursionError:
raise RecursionError('Cant find working proxy')
except Exception as er:
logger.error(er)
return False
def make_request_json(url):
response = make_request(url)
try:
data = json.loads(response.decode("utf-8"))
except json.JSONDecodeError:
logger.warning('Bad json reponse')
ProxyGrabber.get_grabber().next_proxy()
return make_request_json(url)
else:
return data
def is_error_response(url, response):
is_error = False
try:
data = json.loads(response)
error = data.get('error')
if error:
message = error.get('message')
is_error = message if message else 'error'
except Exception:
pass
return is_error
|
import numpy as np
import scipy
def SEIR(x, M_g, M_f, pop, ts, pop0, sd=[]):
#the Adaptive metapopulation SEIR model
dt = 1.
tmstep = 1
#integrate forward for one day
num_loc = pop.shape[0]
(_, num_ens) = x.shape
#S,E,Id,Iu,obs,beta,mu,theta_g,theta_f,Z,alpha,D
Sidx = np.arange(1, 5*num_loc, 5).T
Eidx = np.arange(2, 5*num_loc, 5).T
Ididx = np.arange(3, 5*num_loc, 5).T
Iuidx = np.arange(4, 5*num_loc, 5).T
obsidx = np.arange(5, 5*num_loc+5, 5).T
betaidx = 5*num_loc+1
muidx = 5*num_loc+2
thetagidx = 5*num_loc+3
thetafidx = 5*num_loc+4
Zidx = 5*num_loc+5
gammaidx = 5*num_loc+6
Didx = 5*num_loc+7
S = np.zeros((num_loc, num_ens, tmstep+1))
E = np.zeros((num_loc, num_ens, tmstep+1))
Id = np.zeros((num_loc, num_ens, tmstep+1))
Iu = np.zeros((num_loc, num_ens, tmstep+1))
Incidence = np.zeros((num_loc, num_ens, tmstep+1))
Incidence_u = np.zeros((num_loc, num_ens, tmstep+1))
#initialize S,E,Id,Iu and parameters
S[:,:,0] = x[Sidx-1,:]
E[:,:,0] = x[Eidx-1,:]
Id[:,:,0] = x[Ididx-1,:]
Iu[:,:,0] = x[Iuidx-1,:]
beta = x[betaidx-1,:].reshape(1, -1)
mu = x[muidx-1,:].reshape(1, -1)
theta_g = x[thetagidx-1,:].reshape(1, -1)
theta_f = x[thetafidx-1,:].reshape(1, -1)
Z = x[Zidx-1,:].reshape(1, -1)
gamma = x[gammaidx-1,:].reshape(1, -1)
D = x[Didx-1,:].reshape(1, -1)
beta = np.repeat(beta, num_loc, axis=0)
mu = np.repeat(mu, num_loc, axis=0)
sd = np.repeat(sd[:, ts].reshape(-1, 1), num_ens, axis=1)
gamma = np.repeat(gamma, num_loc, axis=0)
beta = (1 + gamma * sd) * beta
num_ad = num_loc
alpha_jidx = np.arange(5*num_loc+8, 5*num_loc+8+num_ad).T
alpha = x[alpha_jidx-1,:].reshape(num_ad, -1)
#start integration
tcnt = -1
for t in np.arange(ts+1+dt, (ts+1+tmstep)+(dt), dt):
tcnt = tcnt+1
dt1 = dt
#first step
ESenter_g = dt1 * np.repeat(theta_g, num_loc, axis=0)*np.dot(M_g[:,:,ts], S[:,:,tcnt]/(pop-Id[:,:,tcnt]))
ESleft_g = np.minimum(dt1 * np.repeat(theta_g, num_loc, axis=0)*(S[:,:,tcnt]/(pop-Id[:,:,tcnt]))*np.repeat(np.sum(M_g[:,:,ts], 0, keepdims=True).T, num_ens, axis=1), dt1 * S[:,:,tcnt])
EEenter_g = dt1 * np.repeat(theta_g, num_loc, axis=0)*np.dot(M_g[:,:,ts], E[:,:,tcnt]/(pop-Id[:,:,tcnt]))
EEleft_g = np.minimum(dt1 * np.repeat(theta_g, num_loc, axis=0)*(E[:,:,tcnt]/(pop-Id[:,:,tcnt]))*np.repeat(np.sum(M_g[:,:,ts], 0, keepdims=True).T, num_ens, axis=1), dt1 * E[:,:,tcnt])
EIuenter_g = dt1 * np.repeat(theta_g, num_loc, axis=0)*np.dot(M_g[:,:,ts], Iu[:,:,tcnt]/(pop-Id[:,:,tcnt]))
EIuleft_g = np.minimum(dt1 * np.repeat(theta_g, num_loc, axis=0)*(Iu[:,:,tcnt]/(pop-Id[:,:,tcnt]))*np.repeat(np.sum(M_g[:,:,ts], 0, keepdims=True).T, num_ens, axis=1), dt1 * Iu[:,:,tcnt])
ESenter_f = dt1 * np.repeat(theta_f, num_loc, axis=0)*np.dot(M_f[:,:,ts], S[:,:,tcnt]/(pop-Id[:,:,tcnt]))
ESleft_f = np.minimum(dt1 * np.repeat(theta_f, num_loc, axis=0)*(S[:,:,tcnt]/(pop-Id[:,:,tcnt]))*np.repeat(np.sum(M_f[:,:,ts], 0, keepdims=True).T, num_ens, axis=1), dt1 * S[:,:,tcnt])
EEenter_f = dt1 * np.repeat(theta_f, num_loc, axis=0)*np.dot(M_f[:,:,ts], E[:,:,tcnt]/(pop-Id[:,:,tcnt]))
EEleft_f = np.minimum(dt1 * np.repeat(theta_f, num_loc, axis=0)*(E[:,:,tcnt]/(pop-Id[:,:,tcnt]))*np.repeat(np.sum(M_f[:,:,ts], 0, keepdims=True).T, num_ens, axis=1), dt1 * E[:,:,tcnt])
EIuenter_f = dt1 * np.repeat(theta_f, num_loc, axis=0)*np.dot(M_f[:,:,ts], Iu[:,:,tcnt]/(pop-Id[:,:,tcnt]))
EIuleft_f = np.minimum(dt1 * np.repeat(theta_f, num_loc, axis=0)*(Iu[:,:,tcnt]/(pop-Id[:,:,tcnt]))*np.repeat(np.sum(M_f[:,:,ts], 0, keepdims=True).T, num_ens, axis=1), dt1 * Iu[:,:,tcnt])
Eexpd = dt1 * beta*S[:,:,tcnt]*Id[:,:,tcnt]/pop
Eexpu = dt1 * mu*beta*S[:,:,tcnt]*Iu[:,:,tcnt]/pop
Einfd = dt1 * alpha*E[:,:,tcnt]/Z
Einfu = dt1 * (1.-alpha)*E[:,:,tcnt]/Z
Erecd = dt1 * Id[:,:,tcnt]/D
Erecu = dt1 * Iu[:,:,tcnt]/D
ESenter_g[ESenter_g<0] = 0.
ESleft_g[ESleft_g<0] = 0.
EEenter_g[EEenter_g<0] = 0.
EEleft_g[EEleft_g<0] = 0.
EIuenter_g[EIuenter_g<0] = 0.
EIuleft_g[EIuleft_g<0] = 0.
ESenter_f[ESenter_f<0] = 0.
ESleft_f[ESleft_f<0] = 0.
EEenter_f[EEenter_f<0] = 0.
EEleft_f[EEleft_f<0] = 0.
EIuenter_f[EIuenter_f<0] = 0.
EIuleft_f[EIuleft_f<0] = 0.
Eexpd[Eexpd<0] = 0.
Eexpu[Eexpu<0] = 0.
Einfd[Einfd<0] = 0.
Einfu[Einfu<0] = 0.
Erecd[Erecd<0] = 0.
Erecu[Erecu<0] = 0.
sk1 = -Eexpd-Eexpu+ESenter_g-ESleft_g+ESenter_f-ESleft_f
ek1 = Eexpd+Eexpu-Einfd-Einfu+EEenter_g-EEleft_g+EEenter_f-EEleft_f
idk1 = Einfd-Erecd
iuk1 = Einfu-Erecu+EIuenter_g-EIuleft_g+EIuenter_f-EIuleft_f
ik1i = Einfd
ik1i_u = Einfu
#second step
Ts1 = S[:,:,tcnt]+sk1/2.
Te1 = E[:,:,tcnt]+ek1/2.
Tis1 = Id[:,:,tcnt]+idk1/2.
Tia1 = Iu[:,:,tcnt]+iuk1/2.
ESenter_g = dt1 * np.repeat(theta_g, num_loc, axis=0)*np.dot(M_g[:,:,ts], Ts1/(pop-Tis1))
ESleft_g = np.minimum(dt1 * np.repeat(theta_g, num_loc, axis=0)*(Ts1/(pop-Tis1))*np.repeat(np.sum(M_g[:,:,ts], 0, keepdims=True).T, num_ens, axis=1), dt1 * Ts1)
EEenter_g = dt1 * np.repeat(theta_g, num_loc, axis=0)*np.dot(M_g[:,:,ts], Te1/(pop-Tis1))
EEleft_g = np.minimum(dt1 * np.repeat(theta_g, num_loc, axis=0)*(Te1/(pop-Tis1))*np.repeat(np.sum(M_g[:,:,ts], 0, keepdims=True).T, num_ens, axis=1), dt1 * Te1)
EIuenter_g = dt1 * np.repeat(theta_g, num_loc, axis=0)*np.dot(M_g[:,:,ts], Tia1/(pop-Tis1))
EIuleft_g = np.minimum(dt1 * np.repeat(theta_g, num_loc, axis=0)*(Tia1/(pop-Tis1))*np.repeat(np.sum(M_g[:,:,ts], 0, keepdims=True).T, num_ens, axis=1), dt1 * Tia1)
ESenter_f = dt1 * np.repeat(theta_f, num_loc, axis=0)*np.dot(M_f[:,:,ts], Ts1/(pop-Tis1))
ESleft_f = np.minimum(dt1 * np.repeat(theta_f, num_loc, axis=0)*(Ts1/(pop-Tis1))*np.repeat(np.sum(M_f[:,:,ts], 0, keepdims=True).T, num_ens, axis=1), dt1 * Ts1)
EEenter_f = dt1 * np.repeat(theta_f, num_loc, axis=0)*np.dot(M_f[:,:,ts], Te1/(pop-Tis1))
EEleft_f = np.minimum(dt1 * np.repeat(theta_f, num_loc, axis=0)*(Te1/(pop-Tis1))*np.repeat(np.sum(M_f[:,:,ts], 0, keepdims=True).T, num_ens, axis=1), dt1 * Te1)
EIuenter_f = dt1 * np.repeat(theta_f, num_loc, axis=0)*np.dot(M_f[:,:,ts], Tia1/(pop-Tis1))
EIuleft_f = np.minimum(dt1 * np.repeat(theta_f, num_loc, axis=0)*(Tia1/(pop-Tis1))*np.repeat(np.sum(M_f[:,:,ts], 0, keepdims=True).T, num_ens, axis=1), dt1 * Tia1)
Eexpd = dt1 * beta*Ts1*Tis1/pop
Eexpu = dt1 * mu*beta*Ts1*Tia1/pop
Einfd = dt1 * alpha*Te1/Z
Einfu = dt1 * (1.-alpha)*Te1/Z
Erecd = dt1 * Tis1/D
Erecu = dt1 * Tia1/D
ESenter_g[ESenter_g<0] = 0.
ESleft_g[ESleft_g<0] = 0.
EEenter_g[EEenter_g<0] = 0.
EEleft_g[EEleft_g<0] = 0.
EIuenter_g[EIuenter_g<0] = 0.
EIuleft_g[EIuleft_g<0] = 0.
ESenter_f[ESenter_f<0] = 0.
ESleft_f[ESleft_f<0] = 0.
EEenter_f[EEenter_f<0] = 0.
EEleft_f[EEleft_f<0] = 0.
EIuenter_f[EIuenter_f<0] = 0.
EIuleft_f[EIuleft_f<0] = 0.
Eexpd[Eexpd<0] = 0.
Eexpu[Eexpu<0] = 0.
Einfd[Einfd<0] = 0.
Einfu[Einfu<0] = 0.
Erecd[Erecd<0] = 0.
Erecu[Erecu<0] = 0.
sk2 = -Eexpd-Eexpu+ESenter_g-ESleft_g+ESenter_f-ESleft_f
ek2 = Eexpd+Eexpu-Einfd-Einfu+EEenter_g-EEleft_g+EEenter_f-EEleft_f
idk2 = Einfd-Erecd
iuk2 = Einfu-Erecu+EIuenter_g-EIuleft_g+EIuenter_f-EIuleft_f
ik2i = Einfd
ik2i_u = Einfu
#third step
Ts2 = S[:,:,tcnt]+sk2/2.
Te2 = E[:,:,tcnt]+ek2/2.
Tis2 = Id[:,:,tcnt]+idk2/2.
Tia2 = Iu[:,:,tcnt]+iuk2/2.
ESenter_g = dt1 * np.repeat(theta_g, num_loc, axis=0)*np.dot(M_g[:,:,ts], Ts2/(pop-Tis2))
ESleft_g = np.minimum(dt1 * np.repeat(theta_g, num_loc, axis=0)*(Ts2/(pop-Tis2))*np.repeat(np.sum(M_g[:,:,ts], 0, keepdims=True).T, num_ens, axis=1), dt1 * Ts2)
EEenter_g = dt1 * np.repeat(theta_g, num_loc, axis=0)*np.dot(M_g[:,:,ts], Te2/(pop-Tis2))
EEleft_g = np.minimum(dt1 * np.repeat(theta_g, num_loc, axis=0)*(Te2/(pop-Tis2))*np.repeat(np.sum(M_g[:,:,ts], 0, keepdims=True).T, num_ens, axis=1), dt1 * Te2)
EIuenter_g = dt1 * np.repeat(theta_g, num_loc, axis=0)*np.dot(M_g[:,:,ts], Tia2/(pop-Tis2))
EIuleft_g = np.minimum(dt1 * np.repeat(theta_g, num_loc, axis=0)*(Tia2/(pop-Tis2))*np.repeat(np.sum(M_g[:,:,ts], 0, keepdims=True).T, num_ens, axis=1), dt1 * Tia2)
ESenter_f = dt1 * np.repeat(theta_f, num_loc, axis=0)*np.dot(M_f[:,:,ts], Ts2/(pop-Tis2))
ESleft_f = np.minimum(dt1 * np.repeat(theta_f, num_loc, axis=0)*(Ts2/(pop-Tis2))*np.repeat(np.sum(M_f[:,:,ts], 0, keepdims=True).T, num_ens, axis=1), dt1 * Ts2)
EEenter_f = dt1 * np.repeat(theta_f, num_loc, axis=0)*np.dot(M_f[:,:,ts], Te2/(pop-Tis2))
EEleft_f = np.minimum(dt1 * np.repeat(theta_f, num_loc, axis=0)*(Te2/(pop-Tis2))*np.repeat(np.sum(M_f[:,:,ts], 0, keepdims=True).T, num_ens, axis=1), dt1 * Te2)
EIuenter_f = dt1 * np.repeat(theta_f, num_loc, axis=0)*np.dot(M_f[:,:,ts], Tia2/(pop-Tis2))
EIuleft_f = np.minimum(dt1 * np.repeat(theta_f, num_loc, axis=0)*(Tia2/(pop-Tis2))*np.repeat(np.sum(M_f[:,:,ts], 0, keepdims=True).T, num_ens, axis=1), dt1 * Tia2)
Eexpd = dt1 * beta*Ts2*Tis2/pop
Eexpu = dt1 * mu*beta*Ts2*Tia2/pop
Einfd = dt1 * alpha*Te2/Z
Einfu = dt1 * (1.-alpha)*Te2/Z
Erecd = dt1 * Tis2/D
Erecu = dt1 * Tia2/D
ESenter_g[ESenter_g<0] = 0.
ESleft_g[ESleft_g<0] = 0.
EEenter_g[EEenter_g<0] = 0.
EEleft_g[EEleft_g<0] = 0.
EIuenter_g[EIuenter_g<0] = 0.
EIuleft_g[EIuleft_g<0] = 0.
ESenter_f[ESenter_f<0] = 0.
ESleft_f[ESleft_f<0] = 0.
EEenter_f[EEenter_f<0] = 0.
EEleft_f[EEleft_f<0] = 0.
EIuenter_f[EIuenter_f<0] = 0.
EIuleft_f[EIuleft_f<0] = 0.
Eexpd[Eexpd<0] = 0.
Eexpu[Eexpu<0] = 0.
Einfd[Einfd<0] = 0.
Einfu[Einfu<0] = 0.
Erecd[Erecd<0] = 0.
Erecu[Erecu<0] = 0.
sk3 = -Eexpd-Eexpu+ESenter_g-ESleft_g+ESenter_f-ESleft_f
ek3 = Eexpd+Eexpu-Einfd-Einfu+EEenter_g-EEleft_g+EEenter_f-EEleft_f
idk3 = Einfd-Erecd
iuk3 = Einfu-Erecu+EIuenter_g-EIuleft_g+EIuenter_f-EIuleft_f
ik3i = Einfd
ik3i_u = Einfu
#fourth step
Ts3 = S[:,:,tcnt]+sk3
Te3 = E[:,:,tcnt]+ek3
Tis3 = Id[:,:,tcnt]+idk3
Tia3 = Iu[:,:,tcnt]+iuk3
ESenter_g = dt1 * np.repeat(theta_g, num_loc, axis=0)*np.dot(M_g[:,:,ts], Ts3/(pop-Tis3))
ESleft_g = np.minimum(dt1 * np.repeat(theta_g, num_loc, axis=0)*(Ts3/(pop-Tis3))*np.repeat(np.sum(M_g[:,:,ts], 0, keepdims=True).T, num_ens, axis=1), dt1 * Ts3)
EEenter_g = dt1 * np.repeat(theta_g, num_loc, axis=0)*np.dot(M_g[:,:,ts], Te3/(pop-Tis3))
EEleft_g = np.minimum(dt1 * np.repeat(theta_g, num_loc, axis=0)*(Te3/(pop-Tis3))*np.repeat(np.sum(M_g[:,:,ts], 0, keepdims=True).T, num_ens, axis=1), dt1 * Te3)
EIuenter_g = dt1 * np.repeat(theta_g, num_loc, axis=0)*np.dot(M_g[:,:,ts], Tia3/(pop-Tis3))
EIuleft_g = np.minimum(dt1 * np.repeat(theta_g, num_loc, axis=0)*(Tia3/(pop-Tis3))*np.repeat(np.sum(M_g[:,:,ts], 0, keepdims=True).T, num_ens, axis=1), dt1 * Tia3)
ESenter_f = dt1 * np.repeat(theta_f, num_loc, axis=0)*np.dot(M_f[:,:,ts], Ts3/(pop-Tis3))
ESleft_f = np.minimum(dt1 * np.repeat(theta_f, num_loc, axis=0)*(Ts3/(pop-Tis3))*np.repeat(np.sum(M_f[:,:,ts], 0, keepdims=True).T, num_ens, axis=1), dt1 * Ts3)
EEenter_f = dt1 * np.repeat(theta_f, num_loc, axis=0)*np.dot(M_f[:,:,ts], Te3/(pop-Tis3))
EEleft_f = np.minimum(dt1 * np.repeat(theta_f, num_loc, axis=0)*(Te3/(pop-Tis3))*np.repeat(np.sum(M_f[:,:,ts], 0, keepdims=True).T, num_ens, axis=1), dt1 * Te3)
EIuenter_f = dt1 * np.repeat(theta_f, num_loc, axis=0)*np.dot(M_f[:,:,ts], Tia3/(pop-Tis3))
EIuleft_f = np.minimum(dt1 * np.repeat(theta_f, num_loc, axis=0)*(Tia3/(pop-Tis3))*np.repeat(np.sum(M_f[:,:,ts], 0, keepdims=True).T, num_ens, axis=1), dt1 * Tia3)
Eexpd = dt1 * beta*Ts3*Tis3/pop
Eexpu = dt1 * mu*beta*Ts3*Tia3/pop
Einfd = dt1 * alpha*Te3/Z
Einfu = dt1 * (1.-alpha)*Te3/Z
Erecd = dt1 * Tis3/D
Erecu = dt1 * Tia3/D
ESenter_g[ESenter_g<0] = 0.
ESleft_g[ESleft_g<0] = 0.
EEenter_g[EEenter_g<0] = 0.
EEleft_g[EEleft_g<0] = 0.
EIuenter_g[EIuenter_g<0] = 0.
EIuleft_g[EIuleft_g<0] = 0.
ESenter_f[ESenter_f<0] = 0.
ESleft_f[ESleft_f<0] = 0.
EEenter_f[EEenter_f<0] = 0.
EEleft_f[EEleft_f<0] = 0.
EIuenter_f[EIuenter_f<0] = 0.
EIuleft_f[EIuleft_f<0] = 0.
Eexpd[Eexpd<0] = 0.
Eexpu[Eexpu<0] = 0.
Einfd[Einfd<0] = 0.
Einfu[Einfu<0] = 0.
Erecd[Erecd<0] = 0.
Erecu[Erecu<0] = 0.
sk4 = -Eexpd-Eexpu+ESenter_g-ESleft_g+ESenter_f-ESleft_f
ek4 = Eexpd+Eexpu-Einfd-Einfu+EEenter_g-EEleft_g+EEenter_f-EEleft_f
idk4 = Einfd-Erecd
iuk4 = Einfu-Erecu+EIuenter_g-EIuleft_g+EIuenter_f-EIuleft_f
ik4i = Einfd
ik4i_u = Einfu
#####
S[:,:,tcnt+1] = S[:,:,tcnt]+np.round((sk1/6.+sk2/3.+sk3/3.+sk4/6.))
E[:,:,tcnt+1] = E[:,:,tcnt]+np.round((ek1/6.+ek2/3.+ek3/3.+ek4/6.))
Id[:,:,tcnt+1] = Id[:,:,tcnt]+np.round((idk1/6.+idk2/3.+idk3/3.+idk4/6.))
Iu[:,:,tcnt+1] = Iu[:,:,tcnt]+np.round((iuk1/6.+iuk2/3.+iuk3/3.+iuk4/6.))
Incidence[:,:,tcnt+1] = np.round((ik1i/6.+ik2i/3.+ik3i/3.+ik4i/6.))
Incidence_u[:,:,tcnt+1] = np.round((ik1i_u/6.+ik2i_u/3.+ik3i_u/3.+ik4i_u/6.))
###update x
x[Sidx-1,:] = S[:,:,tcnt+1]
x[Eidx-1,:] = E[:,:,tcnt+1]
x[Ididx-1,:] = Id[:,:,tcnt+1]
x[Iuidx-1,:] = Iu[:,:,tcnt+1]
x[obsidx-1,:] = Incidence[:,:,tcnt+1]
###update pop
pop = pop-np.sum(M_g[:,:,ts], 0, keepdims=True).T * theta_g + np.sum(M_g[:,:,ts], 1, keepdims=True) * theta_g -\
np.sum(M_f[:,:,ts], 0, keepdims=True).T * theta_f + np.sum(M_f[:,:,ts], 1, keepdims=True) * theta_f
minfrac = 0.6
pop[pop<np.dot(minfrac, pop0)] = np.dot(pop0[pop<np.dot(minfrac, pop0)], minfrac)
return x, pop, Incidence[:,:,tcnt+1], Incidence_u[:,:,tcnt+1] |
# pylint: disable=missing-docstring
import unittest
from uplink_python.module_classes import ListObjectsOptions
from .helper import TestPy
class ObjectListTest(unittest.TestCase):
@classmethod
def setUpClass(cls):
cls.test_py = TestPy()
cls.access = cls.test_py.get_access()
cls.project = cls.test_py.get_project()
cls.object_names = ["alpha/one", "beta", "delta", "gamma", "iota", "kappa",
"lambda", "alpha/two"]
def test1_ensure_bucket(self):
bucket = self.project.ensure_bucket("py-unit-test")
self.assertIsNotNone(bucket, "ensure_bucket failed")
def test2_upload_objects(self):
for name in self.object_names:
data_bytes = bytes("hello", 'utf-8')
#
upload = self.project.upload_object("py-unit-test", name)
self.assertIsNotNone(upload, "upload_object failed")
#
_ = upload.write(data_bytes, len(data_bytes))
#
upload.commit()
def test3_list_objects(self):
# enlist all the objects in given bucket
object_list = self.project.list_objects("py-unit-test")
self.assertIsNotNone(object_list, "list_objects failed")
expected_names = ["alpha/", "beta", "delta", "gamma", "iota", "kappa", "lambda"]
retrieved_object_names = list()
for item in object_list:
retrieved_object_names.append(item.key)
#
self.assertTrue(all(item in retrieved_object_names for item in expected_names),
"Not all objects found in object list")
def test4_list_objects_with_prefix(self):
# set list options before calling list objects (optional)
list_option = ListObjectsOptions(prefix="alpha/")
# enlist all the objects in given bucket
object_list = self.project.list_objects("py-unit-test", list_option)
self.assertIsNotNone(object_list, "list_objects failed")
expected_names = ["alpha/one", "alpha/two"]
retrieved_object_names = list()
for item in object_list:
retrieved_object_names.append(item.key)
#
self.assertTrue(all(item in retrieved_object_names for item in expected_names),
"Not all objects found in object list")
def test5_delete_objects(self):
for name in self.object_names:
object_ = self.project.delete_object("py-unit-test", name)
self.assertIsNotNone(object_, "delete_object failed")
def test6_delete_bucket(self):
bucket = self.project.delete_bucket("py-unit-test")
self.assertIsNotNone(bucket, "delete_bucket failed")
def test7_close_project(self):
self.project.close()
if __name__ == '__main__':
unittest.main()
|
import json
import os
from pcf.util.pcf_util import update_dict,particle_class_from_flavor
class GenerateParticle:
def __init__(self, particle_definition):
self.particle_class = particle_class_from_flavor(particle_definition.get("flavor"))
self.particle = self.particle_class(particle_definition)
self.particle_json = particle_definition
def generate_definition(self):
self.particle.sync_state()
# TODO generic for all resources
# TODO desired definition is not always the same format as the current_definition
self.particle_json["aws_resource"], _ = update_dict(self.particle.desired_state_definition,self.particle.current_state_definition)
return self.particle_json
def generate_json_file(self, path=None, filename='pcf.json'):
if not path:
path = os.path.dirname((os.path.abspath(__file__)))
particle_definition = self.generate_definition()
with open(f'{path}/{filename}', 'w') as file:
json.dump(particle_definition, file)
class GenerateQuasiparticle:
def __init__(self, quasiparticle_definition):
self.quasiparticle_json = quasiparticle_definition
def generate_definition(self):
generated_particle_list=[]
for particle in self.quasiparticle_json.get("particles"):
if not particle.get("pcf_name"):
particle["pcf_name"] = self.quasiparticle_json.get("pcf_name")
generated_particle = GenerateParticle(particle)
generated_particle_list.append(generated_particle.generate_definition())
self.quasiparticle_json["particles"] = generated_particle_list
return self.quasiparticle_json
def generate_json_file(self, path=None, filename='pcf.json'):
if not path:
path = os.path.dirname((os.path.abspath(__file__)))
particle_definition = self.generate_definition()
with open(f'{path}/{filename}', 'w') as file:
json.dump(particle_definition, file)
|
import base64
import typing
import binascii
from hashlib import md5
import crc32c as google_crc32c
class crc32c:
def __init__(self, data: bytes=None):
self._checksum = google_crc32c.Checksum(data)
def update(self, data: bytes):
self._checksum.update(data)
def hexdigest(self) -> str:
return self._checksum.digest().hex()
def google_storage_crc32c(self) -> str:
# Compute the crc32c value assigned to Google Storage objects
# kind of wonky, right?
return base64.b64encode(self._checksum.digest()).decode("utf-8")
def compute_composite_etag(etags: typing.List[str]) -> str:
bin_md5 = b"".join([binascii.unhexlify(etag) for etag in etags])
composite_etag = md5(bin_md5).hexdigest() + "-" + str(len(etags))
return composite_etag
|
from setuptools import setup
setup(
name='pytorch_tps',
description='Thin plate spline interpolation for PyTorch',
version="0.0.1",
author='Yucheol Jung',
author_email='ycjung@postech.ac.kr',
packages=['pytorch_tps'],
url='https://github.com/ycjungSubhuman/pytorch_tps',
)
|
import re
from itertools import chain
lines = enumerate(open('day-16.input'))
rules = {}
my_ticket = []
nearby_ticket = []
## Parsing input code
line = None
min_rules = 5000
max_rules = 0
while True:
line = next(lines)
line = line[1].strip()
if line == '':
break
name, value = line.split(': ')
value = re.split('-| or', value)
value = [int(r) for r in value]
if min(value) < min_rules:
min_rules = min(value)
if max(value) > max_rules:
max_rules = max(value)
rules[name] = value
next(lines)
my_ticket = [int(val) for val in next(lines)[1].strip().split(',')]
next(lines)
next(lines)
while True:
line = next(lines, None)
if line == None:
break
line = line[1].strip()
if line == '':
break
nearby_ticket.append([int(val) for val in line.split(',')])
print(min_rules)
print(max_rules)
# Solving problem
valid_values = set()
for rule in rules:
a,b,c,d = rules[rule]
for i in chain(range(a, b + 1), range(c, d + 1)):
valid_values.add(i)
error_rate = 0
for ticket in nearby_ticket:
for value in ticket:
if value not in valid_values:
error_rate += value
print(error_rate) |
# -*- coding: utf-8 -*-
import unittest
import tests.common
from core.localisation import _
import json
class lookTests(tests.common.common):
def test_text(self):
self.rpg.setAction([_('LOOK_COMMAND')])
output = self.rpg._runAction()
self.assertEquals(output,
_('CURRENT_REGION_%s') % 'The High lands\n' +\
_('AREA_HAS_SAVE_POINT') +\
'\n\n' +\
_('PRESENT_CHARACTERS') +'\n'+\
' Tom\n' +\
'\n' +\
_('AVAILABLE_DIRECTIONS') +'\n'+\
' ' + _('DIRECTION_KEY_SOUTH') +'\n'+\
'\n' +\
_('AVAILABLE_PLACES') +'\n'+\
' first cave\n' +\
' first dungeon\n' +\
'\n' +\
_('AVAILABLE_ITEMS') +'\n'+\
' 6 Heavy breastplate\n' +\
'\n' +\
_('AVAILABLE_ITEMS_CONTAINERS') +'\n'+\
' chest #1\n' +\
' wardrobe #1\n' +\
' wardrobe #2'
)
def test_json(self):
self.rpg.setAction([_('LOOK_COMMAND')])
output = self.rpg._runAction(True)
self.assertEquals(output, {
"directions": [_('DIRECTION_KEY_SOUTH')],
"items": [{"name": "Heavy breastplate", "quantity": 6}],
"region": {
"has_save_point": True,
"name": "The High lands",
"x": 0,
"y": 1
},
"places": ["first cave", "first dungeon"],
"characters": ["Tom"],
"item_containers": {'chest': 1, 'wardrobe': 2}
})
def test_unknown_section_text(self):
self.rpg.setAction([_('LOOK_COMMAND'), 'foo'])
output = self.rpg._runAction()
self.assertEquals(output, _('ERROR_LOOK_UNKNOWN_SECTION'))
def test_unknown_section_json(self):
self.rpg.setAction([_('LOOK_COMMAND'), 'foo'])
output = self.rpg._runAction(True)
self.assertEquals(output, {"error": {"message": _('ERROR_LOOK_UNKNOWN_SECTION'), "code": 1}})
def test_region_text(self):
self.rpg.setAction([_('LOOK_COMMAND'), _('LOOK_REGION_PARAM')])
output = self.rpg._runAction()
expected = [
_('CURRENT_REGION_%s') % 'The High lands',
_('AREA_HAS_SAVE_POINT')
]
self.assertEquals(output, '\n'.join(expected))
def test_region_json(self):
self.rpg.setAction([_('LOOK_COMMAND'), _('LOOK_REGION_PARAM')])
output = self.rpg._runAction(True)
self.assertEquals(output, {"region": {"has_save_point": True, "name": "The High lands", "x": 0, "y": 1}})
def test_characters_text(self):
self.rpg.setAction([_('LOOK_COMMAND'), _('LOOK_CHARACTERS_PARAM')])
output = self.rpg._runAction()
self.assertEquals(output, _('PRESENT_CHARACTERS') + '\n Tom')
def test_characters_json(self):
self.rpg.setAction([_('LOOK_COMMAND'), _('LOOK_CHARACTERS_PARAM')])
output = self.rpg._runAction(True)
self.assertEquals(output, {"characters": ["Tom"]})
def test_directions_text(self):
self.rpg.setAction([_('LOOK_COMMAND'), _('LOOK_DIRECTIONS_PARAM')])
output = self.rpg._runAction()
self.assertEquals(
output, _('AVAILABLE_DIRECTIONS') + '\n ' +\
_('DIRECTION_KEY_SOUTH')
)
def test_directions_json(self):
self.rpg.setAction([_('LOOK_COMMAND'), _('LOOK_DIRECTIONS_PARAM')])
output = self.rpg._runAction(True)
self.assertEquals(output, {"directions": [_('DIRECTION_KEY_SOUTH')]})
def test_places_text(self):
self.rpg.setAction([_('LOOK_COMMAND'), _('LOOK_PLACES_PARAM')])
output = self.rpg._runAction()
self.assertEquals(output, _('AVAILABLE_PLACES') +'\n first cave' +'\n first dungeon')
def test_places_json(self):
self.rpg.setAction([_('LOOK_COMMAND'), _('LOOK_PLACES_PARAM')])
output = self.rpg._runAction(True)
self.assertEquals(output, {"places": ["first cave", "first dungeon"]})
def test_objects_text(self):
self.rpg.setAction([_('LOOK_COMMAND'), _('LOOK_OBJECTS_PARAM')])
output = self.rpg._runAction()
self.assertEquals(output, _('AVAILABLE_ITEMS') +'\n'+\
' 6 Heavy breastplate')
def test_objects_json(self):
self.rpg.setAction([_('LOOK_COMMAND'), _('LOOK_OBJECTS_PARAM')])
output = self.rpg._runAction(True)
self.assertEquals(output, {"items": [{"name": "Heavy breastplate", "quantity": 6}]})
def test_containers_text(self):
self.rpg.setAction([_('LOOK_COMMAND'), _('LOOK_CONTAINERS_PARAM')])
output = self.rpg._runAction()
self.assertEquals(output, _('AVAILABLE_ITEMS_CONTAINERS') +'\n'+\
' chest #1\n' +\
' wardrobe #1\n' +\
' wardrobe #2')
def test_containers_json(self):
self.rpg.setAction([_('LOOK_COMMAND'), _('LOOK_CONTAINERS_PARAM')])
output = self.rpg._runAction(True)
self.assertEquals(output, {"item_containers": {'chest': 1, 'wardrobe': 2}})
def test_no_enemy_text(self):
self.rpg.setAction([_('LOOK_COMMAND'), _('LOOK_FIGHT_PARAM')])
output = self.rpg._runAction()
self.assertEquals(output, '')
def test_no_enemy_json(self):
self.rpg.setAction([_('LOOK_COMMAND'), _('LOOK_FIGHT_PARAM')])
output = self.rpg._runAction(True)
self.assertEquals(output, {'fight': None})
def test_enemies_text(self):
self.rpg.setAction([_('MOVE_COMMAND'), _('DIRECTION_KEY_SOUTH')])
self.rpg._runAction()
self.rpg.setAction([_('MOVE_COMMAND'), _('DIRECTION_KEY_EAST')])
self.rpg._runAction()
self.rpg.setAction([_('LOOK_COMMAND'), _('LOOK_FIGHT_PARAM')])
output = self.rpg._runAction()
self.assertEquals(output, _('CURRENTLY_FIGHTING_%s') % 'rat')
def test_enemies_json(self):
self.rpg.setAction([_('MOVE_COMMAND'), _('DIRECTION_KEY_SOUTH')])
self.rpg._runAction(True)
self.rpg.setAction([_('MOVE_COMMAND'), _('DIRECTION_KEY_EAST')])
self.rpg._runAction(True)
self.rpg.setAction([_('LOOK_COMMAND'), _('LOOK_FIGHT_PARAM')])
output = self.rpg._runAction(True)
self.assertEquals(output, {'fight': {'name': 'rat', 'stat_defence': 2, 'stat_attack': 2, 'stat_max_hp': 15, 'stat_current_hp': 15, 'stat_speed': 1, 'stat_luck': 25}})
def test_no_save_point_json(self):
self.rpg.setAction([_('MOVE_COMMAND'), _('DIRECTION_KEY_SOUTH')])
self.rpg._runAction(True)
self.rpg.setAction([_('MOVE_COMMAND'), _('DIRECTION_KEY_SOUTH')])
self.rpg._runAction(True)
self.rpg.setAction([_('LOOK_COMMAND'), _('LOOK_REGION_PARAM')])
output = self.rpg._runAction(True)
self.assertEquals(output['region']['has_save_point'], False)
|
# !/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created by Mengqi Ye on 2021/12/22
"""
from stm import DataTransferModeMachine
class TestDataTransferModeMachine:
def setup(self):
self.machine = DataTransferModeMachine()
print()
def test_CMD3(self):
for i in range(10):
self.machine.CMD3()
print(f"Machine state : {self.machine.current_state.name}")
def test_CMD7_at_stand_by(self):
self.machine.current_state = self.machine.stand_by
for i in range(10):
self.machine.CMD7()
print(f"Machine state : {self.machine.current_state.name}")
def test_CMD7_at_disconnect(self):
self.machine.current_state = self.machine.disconnect
for i in range(10):
self.machine.CMD7()
print(f"Machine state : {self.machine.current_state.name}")
|
from pykrx import stock
# PER 0인 종목 필터링
df = stock.get_market_fundamental_by_ticker(date="20100104", market="KOSPI")
cond = df["PER"] != 0
df = df[cond]
# PER이 낮은 n개 종목 선정
low_per = df["PER"].nsmallest(n=2)
print(low_per)
|
#!/usr/bin/env python3
import code
import os
import requests
from bs4 import BeautifulSoup
import re
import getpass
import argparse
import logging
# props to https://gist.github.com/brantfaircloth/1443543
class FullPaths(argparse.Action):
"""Expand user- and relative-paths"""
def __call__(self, parser, namespace, values, option_string=None):
setattr(namespace, self.dest, os.path.abspath(os.path.expanduser(values)))
class PASTA(object):
# since every ~man~ course and their dog has it's own instance
INFO1103 = 'http://soit-app-pro-2.ucc.usyd.edu.au:8080/PASTA/' # v2-2017
DATA3404 = 'https://soit-app-pro-9.ucc.usyd.edu.au:8443/PASTA/' # v2-2017
COMP3221 = 'https://soit-app-pro-10.ucc.usyd.edu.au:8443/PASTA/' #v2-2017
COMP3308 = 'https://comp3308.it.usyd.edu.au/PASTA/' # v3-2018
SANDBOX = 'http://soit-app-pro-12.ucc.usyd.edu.au:8080/PASTA/' #v2-2017
MASTERS = 'http://soit-app-pro-14.ucc.usyd.edu.au:8080/PASTA/' # Vintage: Has a different layout, suspect it's running an older version
def __init__(self, **kwargs):
self.s = requests.Session()
self.base_url = kwargs['course']
self.logged_in = False
self.version = None
# for debuggging onyl
self._soup = None
self.login(kwargs['username'], kwargs['password'])
def _parse_task_details(self, task):
if self.version == 3:
# this is fiddly. Ideally I would have access to a PASTA 2 site to write a better finder
uploadb = task.find('button', attrs={'data-hbn-icon': 'fa-upload'})
infob = task.find('button', attrs={'data-hbn-icon': 'fa-info'})
button = (uploadb or infob)['onclick']
closed = 'closedAssessment' in task['class']
else:
button = [x['onclick'] for x in task.find(class_='button-panel').find_all('button')][1]
closed = 'closedAssessment' in task.find(class_='button-panel').parent['class']
if closed:
details = dict()
details['p_id'] = re.match(r"location.href='../info/(\d+)/'", button).groups()[0]
details['p_due'] = None
details['submissions'] = False
else:
rematch = re.match(r"submitAssessment\('(.*)', '(.*)',.*\);", button).groups()
details = dict(zip(('p_id', 'p_due'), rematch))
details['submissions'] = True
logging.debug(details)
return details
def login(self, unikey=None, password=None):
payload = {'unikey': unikey,
'password': password,
'Submit': ''}
r = self.s.post(self.base_url + '/login/', data=payload)
logging.debug('logging into %s' % self.base_url)
if r.url.endswith('/login'):
raise Exception('login failed')
self.logged_in = True
self._soup = BeautifulSoup(r.text, "html.parser")
self.version = int(self._soup.find('link', rel='stylesheet', href=re.compile(r'\?v\=\d$'))['href'][-1]) #Lets be honest, by the time pasta hits version 10, I shouldn't be at uni
def retrieve_tasks(self):
##TODO: something something, ensure you're logged in
r = self.s.get(self.base_url + '/home/')
self._soup = BeautifulSoup(r.text, "html.parser")
sections_soup = self._soup.findAll('div', class_='section')
tasks = []
for section in sections_soup:
for task in section.findAll('div', class_='assessment-box'):
task_dict = {'section': section.h2.text, 'name': task.a.text, 'url': task.a['href'], '_html': task}
## Infoboxes
for iboxitem in task.find_all(class_='ip-item'):
# the infobox text has all this junk like \t\t\t\t\\t\t\t\t\\t\t\\n\n\n\n\n\n, remove it without
# the use of a regular expression with something equally ugly,
k,v = tuple(" ".join(splitted) for splitted in (map(str.split, iboxitem.stripped_strings)))
task_dict[k.lower().strip(':')] = v
task_dict.update(self._parse_task_details(task))
tasks.append(task_dict)
return tasks
def submit_submission(self, task_id, path="pasta_submission.zip"):
t = {task['p_id']: task['name'] for task in self.retrieve_tasks()}
r = self.s.post(self.base_url + '/home/', files={"file": open(path, 'rb')}, data={'assessment' : task_id, '_groupSubmission': 'on'})
logging.debug('Submitted %s %s' % (task_id, r))
print("Submitting {} to {}".format(path, t[task_id]))
def shell(args):
pasta = PASTA(**vars(args))
code.interact(local=locals())
def tasks(args):
pasta = PASTA(**vars(args))
for task in pasta.retrieve_tasks():
print("{p_id:<3} {name:} (Due: {due:})".format(**task)) ## div.part-title.a
def submit(args):
pasta = PASTA(**vars(args))
pasta.submit_submission(args.task_id, args.path)
if __name__ == '__main__':
parser = argparse.ArgumentParser(prog='pasta-uploader')
parser.add_argument("-u", "--username", default=None)
parser.add_argument("-p", "--password", default=None)
parser.add_argument("-c", "--course", default=PASTA.COMP3308)
parser.add_argument("-v", "--verbose", action='store_true')
subparsers = parser.add_subparsers(dest="command", help="commands")
subparsers.required = True
p_shell = subparsers.add_parser("shell", help="Drop to a shell")
p_shell.set_defaults(func=shell)
a_shell = subparsers.add_parser("list", help="View assignments")
a_shell.set_defaults(func=tasks)
s = subparsers.add_parser("submit", help="Are you crazy?")
s.set_defaults(func=submit)
s.add_argument('task_id' , action='store')
s.add_argument('--path' , action=FullPaths, default=os.path.join(os.getcwd(), 'pasta_submission.zip'))
args = parser.parse_args()
if args.verbose:
logging.basicConfig(level=logging.DEBUG)
netrc = requests.utils.get_netrc_auth(args.course)
if netrc:
args.username, args.password = netrc
elif args.username is None and args.password is None:
args.username = input("Unikey: ")
args.password = getpass.getpass("Password: ")
elif args.username and args.password is None:
args.password = getpass.getpass("Password: ")
elif args.username is None and args.password:
parser.error("if you're going to give me a password, you'll need to give me a username")
args.func(args)
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Telegram bot @RaspberyPi3Bot
"""
"""
from telegram.ext import Updater, CommandHandler, MessageHandler, Filters, Job
import telegram
import logging
import pickle
import os
from subprocess import call
import datetime
import sys
if not 'win' in sys.platform.lower():
import RPi.GPIO as GPIO
import Adafruit_DHT
HOME_PATH='/home/pi/myscripts/'
GPIO.setmode(GPIO.BCM)
#DHT
#Adafruit: instructions and wiring
#https://learn.adafruit.com/dht-humidity-sensing-on-raspberry-pi-with-gdocs-logging/overview
DHT_SENSOR_NAME=Adafruit_DHT.AM2302
DHT_GPIO_PIN='26'
GPIO_PIN_MQ2 = 23
GPIO_PIN_YL_69 = 25
GPIO_PIN_HC_SR501 = 14 #Associate pin 26 to pir
#LED
LED_ENABLE = 1
LED_DISABLE = 0
RGB_BLUE = 17
else:
HOME_PATH='.\\'
TOKEN='111111111:QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ'
LOG_NAME=HOME_PATH+'pibot.log'
class Timers:
def __init__(self):
self.save_users=datetime.datetime.now()
self.save_stats_commands=datetime.datetime.now()
class RaspberrySensorsBot:
def __init__(self):
self._timers=Timers()
# Enable logging
logging.basicConfig(
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
level=logging.INFO)
self.logger = logging.getLogger(__name__)
hdlr = logging.FileHandler(LOG_NAME)
self.logger.addHandler(hdlr)
if not 'win' in sys.platform.lower():
GPIO.setup(GPIO_PIN_MQ2, GPIO.IN) #Set pin as GPIO in
GPIO.setup(GPIO_PIN_YL_69, GPIO.IN) #Set pin as GPIO in
GPIO.setup(GPIO_PIN_HC_SR501, GPIO.IN) #Set pin as GPIO in
def stats(self, update, cmd):
pass
# Define a few command handlers. These usually take the two arguments bot and
# update. Error handlers also receive the raised TelegramError object in error.
def cmd_start(self, bot, update):
self.stats(update, 'start')
bot.sendMessage(update.message.chat_id, text='Hi, I am Raspberry Pi!\n\n/help')
def cmd_help(self, bot, update):
self.stats(update, 'help')
chat_id=update.message.chat_id
ans='I\'m Raspberry Pi Model B.\n'\
'I can tell you about my hardware and soft.\n\n'\
'You can send me such commands:\n\n'\
'/hardware - info about my hardware\n'
if not 'win' in sys.platform.lower():
ans +='/os - OS installed\n'\
'/temperature - CPU temperature\n'\
'/webcam0 - make photo with 1st webcam\n'\
'/webcam1 - make photo with 2nd webcam\n'\
'/am2302 - temperature-humidity sensor\n'\
'/mq_2 - gas sensor module\n'\
'/hc_sr501 - infrared human body induction module\n'\
'/yl_69 - soil moisture sensor\n\n'
bot.sendMessage(update.message.chat_id, text=ans)
def cmd_my_hardware(self, bot, update):
self.stats(update, 'hardware')
ans='1.2GHz 64-bit quad-core ARMv8 CPU\n'\
'802.11n Wireless LAN\n'\
'Bluetooth 4.1\n'\
'1GB RAM\n'\
'4 USB ports\n'\
'40 GPIO pins\n'\
'Full HDMI port\n'\
'Ethernet port\n'\
'Combined 3.5mm audio jack and composite video\n'\
'Camera interface (CSI)\n'\
'Display interface (DSI)\n'\
'Micro SD card slot\n'\
'VideoCore IV 3D graphics core\n'\
'\n'\
'2 USB webcams\n'\
'Camera Module v2\n'\
'AM2302/DHT22 - temperature-humidity sensor\n'
bot.sendMessage(update.message.chat_id, text=ans)
def cmd_my_OS(self, bot, update):
self.stats(update, 'os')
os_info = os.popen('hostnamectl').readlines()
bot.sendMessage(update.message.chat_id, text='my OS:\n\n'+'\n'.join(map(str.strip, os_info)))
def cmd_my_temperature(self, bot, update):
self.stats(update, 'temperature')
cpuTemp = str(round(int(open('/sys/class/thermal/thermal_zone0/temp').read())/1e3, 1))
bot.sendMessage(update.message.chat_id, text='CPU temperature='+cpuTemp+ ' C')
print (cpuTemp+'\n')
def cmd_usbcam0(self, bot, update):
self.stats(update, 'webcam0')
GPIO.setup(RGB_BLUE, GPIO.OUT)
GPIO.output(RGB_BLUE,LED_ENABLE)
call(["fswebcam", "-d/dev/video0", "-r640x480","image0.jpg"])
GPIO.output(RGB_BLUE,LED_DISABLE)
#GPIO.cleanup()
bot.sendPhoto(update.message.chat_id, photo=open('image0.jpg'))
def cmd_usbcam1(self, bot, update):
self.stats(update, 'webcam1')
GPIO.setup(RGB_BLUE, GPIO.OUT)
GPIO.output(RGB_BLUE,LED_ENABLE)
call(["fswebcam", "-d/dev/video1", "-r640x480","image1.jpg"])
GPIO.output(RGB_BLUE,LED_DISABLE)
#GPIO.cleanup()
bot.sendPhoto(update.message.chat_id, photo=open('image1.jpg'))
def cmd_am2302(self, bot, update):
self.stats(update, 'am2302')
humidity, temperature = Adafruit_DHT.read_retry(DHT_SENSOR_NAME, DHT_GPIO_PIN)
bot.sendMessage(update.message.chat_id, text='AM2302 sensor. Temperature=%.1f C, Humidity=%.1f%%' % (temperature, humidity))
def cmd_sense_gas(self, bot, update):
self.stats(update, 'sense_gas')
if GPIO.input(GPIO_PIN_MQ2): #Check whether pir is HIGH
mess='No gas'
else:
mess='Gas detected !!!!'
bot.sendMessage(update.message.chat_id, text=mess)
def cmd_sense_human_body(self, bot, update):
self.stats(update, 'sense_human_body')
if GPIO.input(GPIO_PIN_HC_SR501): #Check whether pir is HIGH
mess='No body'
else:
mess='Somebody detected !!!!'
bot.sendMessage(update.message.chat_id, text=mess)
def cmd_sense_moisture(self, bot, update):
self.stats(update, 'sense_moisture')
if GPIO.input(GPIO_PIN_YL_69): #Check whether pir is HIGH
mess='Low liquid'
else:
mess='liquid detected !!!!'
bot.sendMessage(update.message.chat_id, text=mess)
def echo(self, bot, update):
self.stats(update, 'echo')
in_mess=update.message.text
if in_mess.find('temp')>=0:
self.cmd_my_temperature(bot, update)
elif in_mess.find('hardw')>=0:
self.cmd_my_hardware(bot, update)
elif in_mess.find('pict')>=0 or in_mess.find('foto')>=0 or in_mess.find('photo')>=0:
self.cmd_usbcam0(bot, update)
elif in_mess.find('inux')>=0:
self.cmd_my_OS(bot, update)
elif in_mess.find('help')>=0 or in_mess.find('ello')>=0 or in_mess.find('Hi')==0 or in_mess.find('hi')==0:
self.cmd_help(bot, update)
else:
bot.sendMessage(update.message.chat_id, text='What do you mean: '+update.message.text)
def error(self, bot, update, error):
self.logger.warn('Update "%s" caused error "%s"' % (update, error))
def add_command_handlers(self, dp):
# on different commands - answer in Telegram
dp.add_handler(CommandHandler("start", self.cmd_start))
dp.add_handler(CommandHandler("help", self.cmd_help))
dp.add_handler(CommandHandler("hardware", self.cmd_my_hardware))
if not 'win' in sys.platform.lower():
dp.add_handler(CommandHandler("os", self.cmd_my_OS))
dp.add_handler(CommandHandler("temperature", self.cmd_my_temperature))
dp.add_handler(CommandHandler("webcam0", self.cmd_usbcam0))
dp.add_handler(CommandHandler("webcam1", self.cmd_usbcam1))
dp.add_handler(CommandHandler("am2302", self.cmd_am2302))
dp.add_handler(CommandHandler("mq_2", self.cmd_sense_gas))
dp.add_handler(CommandHandler("hc_sr501", self.cmd_sense_human_body))
dp.add_handler(CommandHandler("yl_69", self.cmd_sense_moisture))
def activate(self):
# Create the EventHandler and pass it your bot's token.
updater = Updater(TOKEN)
# Get the dispatcher to register handlers
dp = updater.dispatcher
self.add_command_handlers(dp)
# on noncommand i.e message - echo the message on Telegram
dp.add_handler(MessageHandler([Filters.text], self.echo))
# log all errors
dp.add_error_handler(self.error)
# Start the Bot
updater.start_polling()
# Run the bot until the you presses Ctrl-C or the process receives SIGINT,
# SIGTERM or SIGABRT. This should be used most of the time, since
# start_polling() is non-blocking and will stop the bot gracefully.
updater.idle()
if __name__ == '__main__':
rbot = RaspberrySensorsBot()
rbot.activate()
|
from shapes import *
class Game(QWidget):
def __init__(self, width=50, height=50, gridstep=10):
super().__init__()
self.setWindowTitle("Игра в жизнь")
self.color = QBrush(QColor(0, 0, 0))
self.delay = 10
self.height_button = 50
self.width_button = width * gridstep // 7
self.grid = np.zeros([height, width], dtype=bool)
self.gridstep = gridstep
self.setFixedSize(width * gridstep, height * gridstep + self.height_button)
self.has_boundaries = False
self.make_buttons()
self.show()
def make_buttons(self):
height = self.size().height() - self.height_button
but_start = QPushButton('Старт', self)
but_start.setGeometry(0,
height,
self.width_button,
self.height_button)
self.is_start = False
but_stop = QPushButton('Стоп', self)
but_stop.setGeometry(self.width_button,
height,
self.width_button,
self.height_button)
self.is_stop = False
but_next = QPushButton('Далее', self)
but_next.setGeometry(self.width_button * 2,
height,
self.width_button,
self.height_button)
but_clear = QPushButton('Очистить', self)
but_clear.setGeometry(self.width_button * 3,
height,
self.width_button,
self.height_button)
but_boundar = QPushButton('Границы', self)
but_boundar.setGeometry(self.width_button * 4,
height,
self.width_button,
self.height_button)
but_start.clicked.connect(self.start)
but_stop.clicked.connect(self.stop)
but_next.clicked.connect(self.next)
but_clear.clicked.connect(self.clear)
but_boundar.clicked.connect(self.boundar)
def paintEvent(self, e):
qp = QPainter()
qp.begin(self)
self.drawLines(qp)
self.drawCells(qp)
qp.end()
def drawCells(self, qp):
pen = QPen(self.color, 2, Qt.SolidLine)
qp.setPen(pen)
height = self.size().height() - self.height_button
width = self.size().width()
step = self.gridstep
qp.setBrush(self.color)
for j in range(height // step):
for i in range(width // step):
if self.grid[j, i]:
qp.drawRect(i * step, j * step, step, step)
def drawLines(self, qp):
pen = QPen(self.color, 2, Qt.SolidLine)
qp.setPen(pen)
height = self.size().height() - self.height_button
width = self.size().width()
step = self.gridstep
for i in range(0, height + 1, step):
qp.drawLine(0, i, width, i)
for i in range(0, width + 1, step):
qp.drawLine(i, 0, i, height)
if self.has_boundaries:
pen = QPen(self.color, 4, Qt.SolidLine)
qp.setPen(pen)
qp.drawLine(0, 0, width, 0)
qp.drawLine(0, 0, 0, height)
qp.drawLine(0, height, width, height)
qp.drawLine(width, 0, width, height)
def mousePressEvent(self, event):
if not self.is_start:
x, y = event.x() // self.gridstep, event.y() // self.gridstep
self.grid[y, x] = not self.grid[y, x]
self.update()
self.press_update = (y, x)
def mouseMoveEvent(self, event):
if not self.is_start:
x, y = event.x() // self.gridstep, event.y() // self.gridstep
if self.press_update != (y, x):
if x >= 0 and y >= 0 and event.x() < self.width() and \
event.y() < self.height() - self.height_button:
self.grid[y, x] = not self.grid[y, x]
self.update()
self.press_update = (y, x)
def mouseReleaseEvent(self, event):
self.press_update = (-1, -1)
def start(self):
self.is_start = True
self.go()
def stop(self):
self.is_start = False
def next(self):
self.is_start = False
self.go()
def boundar(self):
self.has_boundaries = not self.has_boundaries
self.update()
def clear(self):
self.is_start = False
self.grid = np.zeros([(self.size().height() - self.height_button) // self.gridstep,
self.size().width() // self.gridstep], dtype=bool)
self.update()
def go(self):
if not self.update_grid():
self.is_start = False
return
self.update()
if self.is_start:
QTimer.singleShot(self.delay, self.go)
else:
return
def update_grid(self):
new_grid = np.copy(self.grid)
height, width = self.size().height() - self.height_button, self.size().width()
step = self.gridstep
gheight, gwidth = height // step, width // step
for j in range(gheight):
for i in range(gwidth):
s = 0
for k in range(-1, 2):
for n in range(-1, 2):
if self.has_boundaries:
if j + n < 0 or j + n == gheight:
continue
if i + k < 0 or i + k == gwidth:
continue
y = j + n if j + n < gheight else 0
x = i + k if i + k < gwidth else 0
if self.grid[y, x]:
s += 1
if self.grid[j, i]:
s -= 1
if s != 2 and s != 3:
new_grid[j, i] = False
else:
if s == 3:
new_grid[j, i] = True
if (self.grid == new_grid).all():
return False
self.grid = new_grid
return True
|
from talon import Module, Context
mod = Module()
mod.tag("terraform", desc="tag for enabling terraform commands in your terminal")
|
import json
from mock import Mock
from twisted.python import failure
from twisted.test.proto_helpers import MemoryReactorClock
from synapse.api.errors import InteractiveAuthIncompleteError
from synapse.http.server import JsonResource
from synapse.rest.client.v2_alpha.register import register_servlets
from synapse.util import Clock
from tests import unittest
from tests.server import make_request, render, setup_test_homeserver
class RegisterRestServletTestCase(unittest.TestCase):
def setUp(self):
self.clock = MemoryReactorClock()
self.hs_clock = Clock(self.clock)
self.url = b"/_matrix/client/r0/register"
self.appservice = None
self.auth = Mock(
get_appservice_by_req=Mock(side_effect=lambda x: self.appservice)
)
self.auth_result = failure.Failure(InteractiveAuthIncompleteError(None))
self.auth_handler = Mock(
check_auth=Mock(side_effect=lambda x, y, z: self.auth_result),
get_session_data=Mock(return_value=None),
)
self.registration_handler = Mock()
self.identity_handler = Mock()
self.login_handler = Mock()
self.device_handler = Mock()
self.device_handler.check_device_registered = Mock(return_value="FAKE")
self.datastore = Mock(return_value=Mock())
self.datastore.get_current_state_deltas = Mock(return_value=[])
# do the dance to hook it up to the hs global
self.handlers = Mock(
registration_handler=self.registration_handler,
identity_handler=self.identity_handler,
login_handler=self.login_handler,
)
self.hs = setup_test_homeserver(
self.addCleanup, http_client=None, clock=self.hs_clock, reactor=self.clock
)
self.hs.get_auth = Mock(return_value=self.auth)
self.hs.get_handlers = Mock(return_value=self.handlers)
self.hs.get_auth_handler = Mock(return_value=self.auth_handler)
self.hs.get_device_handler = Mock(return_value=self.device_handler)
self.hs.get_datastore = Mock(return_value=self.datastore)
self.hs.config.enable_registration = True
self.hs.config.registrations_require_3pid = []
self.hs.config.auto_join_rooms = []
self.resource = JsonResource(self.hs)
register_servlets(self.hs, self.resource)
def test_POST_appservice_registration_valid(self):
user_id = "@kermit:muppet"
token = "kermits_access_token"
self.appservice = {"id": "1234"}
self.registration_handler.appservice_register = Mock(return_value=user_id)
self.auth_handler.get_access_token_for_user_id = Mock(return_value=token)
request_data = json.dumps({"username": "kermit"})
request, channel = make_request(
b"POST", self.url + b"?access_token=i_am_an_app_service", request_data
)
render(request, self.resource, self.clock)
self.assertEquals(channel.result["code"], b"200", channel.result)
det_data = {
"user_id": user_id,
"access_token": token,
"home_server": self.hs.hostname,
}
self.assertDictContainsSubset(det_data, channel.json_body)
def test_POST_appservice_registration_invalid(self):
self.appservice = None # no application service exists
request_data = json.dumps({"username": "kermit"})
request, channel = make_request(
b"POST", self.url + b"?access_token=i_am_an_app_service", request_data
)
render(request, self.resource, self.clock)
self.assertEquals(channel.result["code"], b"401", channel.result)
def test_POST_bad_password(self):
request_data = json.dumps({"username": "kermit", "password": 666})
request, channel = make_request(b"POST", self.url, request_data)
render(request, self.resource, self.clock)
self.assertEquals(channel.result["code"], b"400", channel.result)
self.assertEquals(channel.json_body["error"], "Invalid password")
def test_POST_bad_username(self):
request_data = json.dumps({"username": 777, "password": "monkey"})
request, channel = make_request(b"POST", self.url, request_data)
render(request, self.resource, self.clock)
self.assertEquals(channel.result["code"], b"400", channel.result)
self.assertEquals(channel.json_body["error"], "Invalid username")
def test_POST_user_valid(self):
user_id = "@kermit:muppet"
token = "kermits_access_token"
device_id = "frogfone"
request_data = json.dumps(
{"username": "kermit", "password": "monkey", "device_id": device_id}
)
self.registration_handler.check_username = Mock(return_value=True)
self.auth_result = (None, {"username": "kermit", "password": "monkey"}, None)
self.registration_handler.register = Mock(return_value=(user_id, None))
self.auth_handler.get_access_token_for_user_id = Mock(return_value=token)
self.device_handler.check_device_registered = Mock(return_value=device_id)
request, channel = make_request(b"POST", self.url, request_data)
render(request, self.resource, self.clock)
det_data = {
"user_id": user_id,
"access_token": token,
"home_server": self.hs.hostname,
"device_id": device_id,
}
self.assertEquals(channel.result["code"], b"200", channel.result)
self.assertDictContainsSubset(det_data, channel.json_body)
self.auth_handler.get_login_tuple_for_user_id(
user_id, device_id=device_id, initial_device_display_name=None
)
def test_POST_disabled_registration(self):
self.hs.config.enable_registration = False
request_data = json.dumps({"username": "kermit", "password": "monkey"})
self.registration_handler.check_username = Mock(return_value=True)
self.auth_result = (None, {"username": "kermit", "password": "monkey"}, None)
self.registration_handler.register = Mock(return_value=("@user:id", "t"))
request, channel = make_request(b"POST", self.url, request_data)
render(request, self.resource, self.clock)
self.assertEquals(channel.result["code"], b"403", channel.result)
self.assertEquals(channel.json_body["error"], "Registration has been disabled")
def test_POST_guest_registration(self):
user_id = "a@b"
self.hs.config.macaroon_secret_key = "test"
self.hs.config.allow_guest_access = True
self.registration_handler.register = Mock(return_value=(user_id, None))
request, channel = make_request(b"POST", self.url + b"?kind=guest", b"{}")
render(request, self.resource, self.clock)
det_data = {
"user_id": user_id,
"home_server": self.hs.hostname,
"device_id": "guest_device",
}
self.assertEquals(channel.result["code"], b"200", channel.result)
self.assertDictContainsSubset(det_data, channel.json_body)
def test_POST_disabled_guest_registration(self):
self.hs.config.allow_guest_access = False
request, channel = make_request(b"POST", self.url + b"?kind=guest", b"{}")
render(request, self.resource, self.clock)
self.assertEquals(channel.result["code"], b"403", channel.result)
self.assertEquals(channel.json_body["error"], "Guest access is disabled")
|
class User:
'''
class to generate new instances of users
'''
user_list = [] #empty list to append users
def __init__(self,first_name,last_name,email,user_name,password):
'''
method to define the properties of the object
'''
self.first_name = first_name
self.last_name = last_name
self.email = email
self.user_name = user_name
self.password = password
def save_user(self):
'''
method to save a user in to the user list
'''
User.user_list.append(self)
@classmethod
def user_login(cls,user_name,password):
'''
test for user to login with the username and password
'''
for user in cls.user_list:
if user.user_name == user_name & user.password == password:
return user |
def leiadinheiro(msg):
validade = False
while not validade:
entrada = str(input(msg)).replace(',', '.').strip()
if entrada.isalpha() or entrada == "":
print(f'Erro! {entrada} não é um preço válido')
else:
validade = True
return float(entrada)
def leiaint(msg):
ok = False
valor = 0
while True:
n = str(input(msg))
if n.isnumeric():
valor = int(n)
ok = True
else:
print("Por favor, digite um número inteiro.")
if ok:
break
return valor
|
# -*- coding: utf-8 -*-
import scrapy
from ..items import AmazonItem
from scrapy.http import Request
class AmazonscraperSpider(scrapy.Spider):
name = 'amazon'
keyword = input("Enter the keyword to search: ")
start_urls = [
"https://www.amazon.in/s?k="+ keyword +"&ref=nb_sb_noss_2"
]
def parse(self, response):
items = AmazonItem()
product_name = response.css('.a-size-medium.a-color-base.a-text-normal').css('::text').extract() or ['product names unavailable please check the name or the css selector']
product_by=response.css('.sg-col-20-of-28 .a-link-normal.a-text-bold').css('::text').extract() or ['product seller not listed']
amazon_product_price = response.css('.sg-col-20-of-28 .a-price-whole').css('::text').extract() or ['price unavailable']
stars = response.css('.a-size-small .a-size-base').css('::text').extract() or ['starts not available']
amazon_url = response.url or ['url unavailable']
items['product_name']=product_name
items['product_by']=product_by
items['amazon_product_price']=amazon_product_price
items['amazon_url']=amazon_url
items['stars']=stars
yield items
|
from win10toast import ToastNotifier
import time
notifier = ToastNotifier()
while True:
if (time.gmtime().tm_min) % 15 == 0:
notifier.show_toast("Break!", "Stretch a bit..You're awesome", duration=15)
time.sleep(60) |
#!/bin/env python
from tornado import gen
from tornado.ioloop import IOLoop
from .. import metrics
@gen.coroutine
def main():
data = yield metrics.remote_classifier_report("http://localhost:3002/",
"bnn", "bst", "drone", auth_username="bst", auth_password="bst",
model_params={"hiddenLayers":[5,5,5,5]})
print(data)
if __name__ == "__main__":
IOLoop.instance().run_sync(main)
|
#!/usr/bin/python
#
# Copyright 2018-2021 Polyaxon, Inc.
#
# 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
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import click
from polyaxon.connections.kinds import V1ConnectionKind
from polyaxon.schemas.types import V1ConnectionType
from polyaxon.utils.formatting import Printer
from polyaxon.utils.list_utils import to_list
@click.group()
def clean_artifacts():
pass
@clean_artifacts.command()
@click.option("--connection-name", help="The connection name.")
@click.option("-sp", "--subpath", multiple=True, help="The s3 subpath to clean.")
@click.option(
"--is-file",
is_flag=True,
default=False,
help="whether or not to use the basename of the key.",
)
@click.option(
"--workers", type=int, default=50, help="Number of worker threads to use."
)
def s3(connection_name, subpath, is_file, workers):
"""Delete an s3 subpath."""
from polyaxon.stores.manager import delete_file_or_dir
subpath = to_list(subpath, check_none=True)
for sp in subpath:
delete_file_or_dir(
connection_type=V1ConnectionType(
name=connection_name, kind=V1ConnectionKind.S3
),
subpath=sp,
workers=workers,
is_file=is_file,
)
Printer.print_success("S3 subpath was cleaned, subpath: `{}`".format(subpath))
@clean_artifacts.command()
@click.option("--connection-name", help="The connection name.")
@click.option("-sp", "--subpath", multiple=True, help="The gcs subpath to clean.")
@click.option(
"--is-file",
is_flag=True,
default=False,
help="whether or not to use the basename of the key.",
)
@click.option(
"--workers", type=int, default=50, help="Number of worker threads to use."
)
def gcs(connection_name, subpath, is_file, workers):
"""Delete a gcs subpath."""
from polyaxon.stores.manager import delete_file_or_dir
subpath = to_list(subpath, check_none=True)
for sp in subpath:
delete_file_or_dir(
connection_type=V1ConnectionType(
name=connection_name, kind=V1ConnectionKind.GCS
),
subpath=sp,
workers=workers,
is_file=is_file,
)
Printer.print_success("GCS subpath was cleaned, subpath: `{}`".format(subpath))
@clean_artifacts.command()
@click.option("--connection-name", help="The connection name.")
@click.option("-sp", "--subpath", multiple=True, help="The wasb subpath to clean.")
@click.option(
"--is-file",
is_flag=True,
default=False,
help="whether or not to use the basename of the key.",
)
@click.option(
"--workers", type=int, default=50, help="Number of worker threads to use."
)
def wasb(connection_name, subpath, is_file, workers):
"""Delete a wasb path context."""
from polyaxon.stores.manager import delete_file_or_dir
subpath = to_list(subpath, check_none=True)
for sp in subpath:
delete_file_or_dir(
connection_type=V1ConnectionType(
name=connection_name, kind=V1ConnectionKind.WASB
),
subpath=sp,
workers=workers,
is_file=is_file,
)
Printer.print_success("WASB subpath was cleaned, subpath: `{}`".format(subpath))
@clean_artifacts.command()
@click.option("--connection-name", help="The connection name.")
@click.option("-sp", "--subpath", multiple=True, help="The volume subpath to clean.")
@click.option(
"--is-file",
is_flag=True,
default=False,
help="whether or not to use the basename of the key.",
)
@click.option(
"--workers", type=int, default=50, help="Number of worker threads to use."
)
def volume_claim(connection_name, subpath, is_file, workers):
"""Delete a volume path context."""
from polyaxon.stores.manager import delete_file_or_dir
subpath = to_list(subpath, check_none=True)
for sp in subpath:
delete_file_or_dir(
connection_type=V1ConnectionType(
name=connection_name, kind=V1ConnectionKind.VOLUME_CLAIM
),
subpath=sp,
workers=workers,
is_file=is_file,
)
Printer.print_success("Volume subpath was cleaned, subpath: `{}`".format(subpath))
@clean_artifacts.command()
@click.option("--connection-name", help="The connection name.")
@click.option("-sp", "--subpath", multiple=True, help="The host subpath to clean.")
@click.option(
"--is-file",
is_flag=True,
default=False,
help="whether or not to use the basename of the key.",
)
@click.option(
"--workers", type=int, default=50, help="Number of worker threads to use."
)
def host_path(connection_name, subpath, is_file, workers):
"""Delete a host path context."""
from polyaxon.stores.manager import delete_file_or_dir
subpath = to_list(subpath, check_none=True)
for sp in subpath:
delete_file_or_dir(
connection_type=V1ConnectionType(
name=connection_name, kind=V1ConnectionKind.HOST_PATH
),
subpath=sp,
workers=workers,
is_file=is_file,
)
Printer.print_success("WASB subpath was cleaned, subpath: `{}`".format(subpath))
|
# -*- coding: utf-8 -*-
import pytest
import urllib3
def test_the_tests():
"""
to test the tests configuration
"""
assert True is True
@pytest.mark.vcr()
def test_vcr():
"""
Test VCR.py records and plays http requests properly
"""
http_manager = urllib3.PoolManager()
response = http_manager.request(
"GET", "https://developer.xero.com/documentation/oauth2/auth-flow"
)
assert response.status == 200
assert "Xero is a multi-tenanted platform." in response.data.decode("utf-8")
|
import os
import shutil
from bin.bb8.settings import Settings
from bin.bb8.targets import NamedVolumeTarget, TargetOptions, DirectoryTarget
json = """{
"starport": {
"addr": "the moon",
"ip": "127.0.0.1",
"user": "astronaut",
"backup_location": "houston"
},
"targets": [
{
"name": "target_1",
"type": "named_volume",
"volume": "volume_name"
},
{
"name": "target_2",
"type": "directory",
"path": "/some/path",
"backup": false,
"restore": false
}
]
}"""
def test_can_parse_settings():
s = Settings('test.json')
assert s.starport == {
"addr": "the moon",
"ip": "127.0.0.1",
"user": "astronaut",
"backup_location": "houston"
}
assert s.targets[0] == NamedVolumeTarget("target_1", "volume_name",
TargetOptions(True, True))
assert s.targets[1] == DirectoryTarget("target_2", "/some/path",
TargetOptions(False, False))
assert s.instance_guid is None
def test_can_parse_settings_with_guid():
s = Settings('test.json', machine_id_path="machine-id.json")
assert s.instance_guid == "1234"
def setup_module(module):
with open('test.json', 'w') as f:
f.write(json)
with open('machine-id.json', 'w') as f:
f.write("1234")
def teardown_module(module):
os.remove('test.json')
os.remove('machine-id.json')
|
from datetime import timedelta
import json
import os
import requests
import tornado
from notebook.services.contents.largefilemanager import LargeFileManager
METADATA_TTL = timedelta(minutes=5)
class WelderContentsManager(LargeFileManager):
"""
A contents manager which integrates with the Leo Welder service.
Blocking Welder API calls are made before files are persisted. After a
successful call to Welder, files are persisted to the local Jupyter file
system as usual.
"""
def __init__(self, *args, **kwargs):
# This log line shouldn't be necessary, but Jupyter's built-in logging is
# lacking and its configuration can be complex. Having this in the server
# logs is useful for confirming which ContentsManager is in use.
self.log.info('initializing WelderContentsManager')
self.welder_base_url = 'http://welder:8080'
super(WelderContentsManager, self).__init__(*args, **kwargs)
def _extract_welder_error(self, resp):
try:
return json.dumps(resp.json())
except:
return resp.reason or 'unknown Welder error'
def _is_nonempty_dir(self, path):
os_path = self._get_os_path(path)
return os.path.isdir(os_path) and len(os.listdir(os_path)) > 0
def _check_welder_edit_mode(self, path):
resp = requests.post(self.welder_base_url + '/objects/metadata', data=json.dumps({
# Sometimes the Jupyter UI provided "path" contains a leading /, sometimes
# not; strip for Welder.
'localPath': path.lstrip('/')
}))
if resp.status_code == 412:
return False
if not resp.ok:
raise IOError("checkMetadata failed: '{}'".format(self._extract_welder_error(resp)))
return resp.json().get("syncMode") == "EDIT"
def _post_welder(self, action, path):
# Ignore storage link failure, throw other errors.
resp = requests.post(self.welder_base_url + '/objects', data=json.dumps({
'action': action,
# Sometimes the Jupyter UI provided "path" contains a leading /, sometimes
# not; strip for Welder.
'localPath': path.lstrip('/')
}))
if not resp.ok:
error_json = {}
try:
error_json = resp.json()
except:
pass
# See https://github.com/DataBiosphere/welder/blob/cd39caba30989e9f2b1c76986abccf22d8e8a1c5/server/src/main/resources/api-docs.yaml#L197
ignore_codes = set([
1, # Storage Link not found; expected for unmanaged files.
2, 3 # Delocalize/delete safe mode file; expected in safe mode directories.
])
if resp.status_code == 412 and error_json.get('errorCode', -1) in ignore_codes:
return
raise IOError("welder action '{}' failed: '{}'".format(action, self._extract_welder_error(resp)))
def save(self, model, path=''):
# Don't intefere with intermediate chunks during multipart upload:
# https://jupyter-notebook.readthedocs.io/en/stable/extending/contents.html#chunked-saving
if model.get("chunk", -1) >= 0:
return super(WelderContentsManager, self).save(model, path)
# Capture the pre-save file so we can revert if Welder fails.
orig_model = None
try:
orig_model = self.get(path)
except tornado.web.HTTPError as err:
if err.status_code != 404:
self.log.warn('failed to get file "{}", cannot revert: {}'.format(path, err.log_message))
# Welder reads the file from local disk, so we need to write the updated file
# before calling Welder.
# TODO(calbach): Consider changing the safeDelocalize API to support either
# direct passing of contents, or passing a file via a temporary transfer file.
ret = super(WelderContentsManager, self).save(model, path)
if not path or model['type'] == 'directory':
return ret
try:
self._post_welder('safeDelocalize', path)
except IOError as werr:
self.log.warn("welder save failed, attempting to revert local file: " + str(werr))
try:
if orig_model:
super(WelderContentsManager, self).save(orig_model, path)
else:
super(WelderContentsManager, self).delete_file(path)
except Exception as rerr:
self.log.error("failed to revert after Welder error, local disk is in an inconsistent state: " + str(rerr))
raise werr
return ret
def rename_file(self, old_path, new_path):
from_edit_mode = self._check_welder_edit_mode(old_path)
to_edit_mode = self._check_welder_edit_mode(new_path)
if not from_edit_mode and not to_edit_mode:
# If we're not touching any edit mode files, just do a normal move.
return super(WelderContentsManager, self).rename_file(old_path, new_path)
if self._is_nonempty_dir(old_path):
raise NotImplementedError("renaming of non-empty edit mode directories is not supported")
# These methods already properly handle edit mode semantics.
self.save(self.get(old_path), new_path)
try:
self.delete_file(old_path, from_edit_mode)
except Exception as err:
self.log.error("failed to delete old file during two-phase rename, " +
"attempting to revert save from the first phase: " + str(err))
try:
self.delete_file(new_path, to_edit_mode)
except Exception as rerr:
self.log.error("failed to revert first phase of rename via delete, " +
"extra file will remain on disk and/or GCS: " + str(rerr))
raise rerr
raise err
def delete_file(self, path, edit_mode=None):
if edit_mode is None:
edit_mode = self._check_welder_edit_mode(path)
if edit_mode:
if self._is_nonempty_dir(path):
raise NotImplementedError("deletion of non-empty edit mode directories is not supported")
self._post_welder('delete', path)
super(WelderContentsManager, self).delete_file(path)
|
import numpy as np
a = np.array([1+1j, 1+0j, 4.5, 3, 2, 2j])
print("Original array")
print(a)
print("Checking for complex number:")
print(np.iscomplex(a))
print("Checking for real number:")
print(np.isreal(a))
print("Checking for scalar type:")
print("3.1 is scalar:", np.isscalar(3.1))
print("[3.1] is scalar:", np.isscalar([3.1])) |
"""This module contains parser tooling for the zeekscript package."""
import os
import pathlib
import sys
try:
# In order to use the tree-sitter parser we need to load the TS language .so
# the TS Python bindings compiled at package build time (via our setup.py
# tooling). We use the following helpers when available (starting with
# Python 3.9) to locate the it. With earlier Python versions we fall back to
# using local path navigation and hope for the best.
# https://importlib-resources.readthedocs.io/en/latest/using.html#file-system-or-zip-file
from importlib.resources import files, as_file
except ImportError:
def files(_):
return pathlib.Path(os.path.dirname(os.path.realpath(__file__)))
def as_file(source):
return source
try:
import tree_sitter
except ImportError:
print('This package requires the tree_sitter package.')
sys.exit(1)
class Parser:
"""tree_sitter.Parser abstraction that takes care of loading the TS Zeek language."""
TS_PARSER = None # A tree_sitter.Parser singleton
def __init__(self):
Parser.load_parser()
def parse(self, text):
"""Returns a tree_sitter.Tree for the given script text.
This tree may have errors, as indicated via its root node's has_error
flag.
"""
return Parser.TS_PARSER.parse(text)
@classmethod
def load_parser(cls):
if cls.TS_PARSER is None:
# Python voodoo to access the bindings library contained in this
# package regardless of how we're loading the package. Details:
# https://importlib-resources.readthedocs.io/en/latest/using.html#file-system-or-zip-file
source = files(__package__).joinpath('zeek-language.so')
with as_file(source) as lib:
zeek_lang = tree_sitter.Language(str(lib), 'zeek')
cls.TS_PARSER = tree_sitter.Parser()
cls.TS_PARSER.set_language(zeek_lang)
|
#! /usr/bin/python
"""OT Linearization.
Usage:
otlinearize.py [options]
otlinearize.py tableau [options] <tree>
otlinearize.py typology [options] <trees>...
otlinearize.py typology [options] -f <treelist>
Options:
-h, --help Show this screen.
--version Show version.
-t Print trees in labelled-bracket form before output.
-a, --all For tableau: output all candidates (not just contenders).
--latex Output in LaTeX format (as opposed to ASCII).
--alpha=NODE Use the default constraints, but specify HF-alpha.
"""
from docopt import docopt
from itertools import permutations
import tabulate
from bin.mtree import *
from bin.gen import *
from bin.con import *
from bin.tableau import *
if __name__ == '__main__':
args = docopt(__doc__,version='OTLinearize 1.0')
# Build our Con:
conlist = [ Antisymmetry(),
HeadFinality(),
HeadFinality(alpha = 'BP' if not args['--alpha']
else args['--alpha']),
]
if args['tableau']:
# We're making a single tableau; get the tree.
tree = parseTreeFile(args['<tree>'])
# now build the tableau:
output = Tableau(tree, conlist)
# If -t is set:
if args['-t']:
print(tabulate.tabulate([(str(tree),tree.bracket_string())],tablefmt='plain'))
print()
# Output appropriately:
if args['--latex']:
print(output.print_tabular(include_bounded=args['--all']))
else:
print(output.print_ascii(include_bounded=args['--all']))
elif args['typology']:
# We're making a typology. Either we've been given a list of tree files
# directly, or we need to parse one.
if args['<trees>']:
trees = args['<trees>']
elif args['<treelist>']:
with open(args['<treelist>'],'r') as treef:
trees = treef.read()
trees = trees.splitlines()
treelist = [parseTreeFile(t) for t in trees]
# Make our typology:
output = Typology(treelist, conlist)
# If -t is set:
if args['-t']:
print(tabulate.tabulate([(str(t),t.bracket_string()) for t in treelist],
tablefmt='plain'))
print()
# Output appropriately:
if args['--latex']:
print(output.print_tabular())
else:
print(output.print_ascii())
else:
# No command, just freak out
print(__doc__)
quit()
|
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
about = {}
with open("tnscm/_version.py") as f:
exec(f.read(), about)
setuptools.setup(
name="tnscm",
version=about["__version__"],
license='MIT',
author="Damian Krawczyk",
author_email="damian.krawczyk@limberduck.org",
description="TNSCM (Tenable Nessus CLI Manager) by LimberDuck",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/LimberDuck/tnscm",
packages=setuptools.find_packages(),
install_requires=required,
entry_points={
"console_scripts": [
"tnscm = tnscm.__main__:main"
]
},
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Environment :: Console",
],
) |
import yaml
import subprocess
with open('./profiles.yml','r') as f:
profile = yaml.safe_load(f.read())
for target in profile['default']['outputs']:
subprocess.call(['dbt','seed', '--profiles-dir','.','--target', target])
|
# Generated by Django 3.0.8 on 2021-04-23 14:37
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('tnris_org', '0033_auto_20201215_0949'),
]
operations = [
migrations.AddField(
model_name='tnrisimage',
name='carousel',
field=models.BooleanField(default=False, verbose_name='Carousel Image'),
),
]
|
import socket
import time
import sys
conn = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
conn.connect(("127.0.0.1", 14900))
conn.send(b"Hello, server \n")
data = conn.recv(16384)
udata = data.decode("utf-8")
print(udata)
conn.close() |
# -*- coding: utf-8 -*-
# ----------------------------------------------------------------------------
# Nombre: fuenteAplicacion.py
# Autor: Miguel Andres Garcia Niño
# Creado: 20 de Mayo 2018
# Modificado: 20 de Mayo 2018
# Copyright: (c) 2018 by Miguel Andres Garcia Niño, 2018
# License: Apache License 2.0
# ----------------------------------------------------------------------------
__versión__ = "1.0"
"""
El módulo *fuenteAplicacion* permite asignarle el tipo y tamaño de fuente a toda
la aplicación.
"""
from PyQt5.QtGui import QIcon, QFont
from PyQt5.QtCore import Qt
from PyQt5.QtWidgets import (QApplication, QMainWindow, QLineEdit, QPushButton, QComboBox,
QLabel)
# ==================== CLASE ventanaPrincipal ======================
class ventanaPrincipal(QMainWindow):
def __init__(self, parent=None):
super(ventanaPrincipal, self).__init__(parent)
self.setWindowTitle("Asignar tipo y tamaño de fuente a toda la aplicación por: ANDRES NIÑO")
self.setWindowIcon(QIcon("icono.png"))
self.setWindowFlags(Qt.WindowCloseButtonHint | Qt.MSWindowsFixedSizeDialogHint)
self.setFixedSize(600, 500)
self.initUI()
def initUI(self):
# ======================= WIDGETS ==========================
self.lineEdit = QLineEdit(self)
self.lineEdit.setGeometry(20, 20, 560, 25)
button = QPushButton("Cambiar el tipo y tamaño de la fuente", self)
button.setGeometry(20, 54, 275, 25)
comboBox = QComboBox(self)
comboBox.addItems(["Cambiar el tipo de fuente", "Cambiar el tamaño de la fuente"])
comboBox.setGeometry(305, 54, 275, 25)
# =============== APLICAR FUENTE AL LABEL ==================
fuente = self.font()
fuente.setPointSize(12)
fuente.setBold(True)
fuente.setCapitalization(QFont.MixedCase) # Representación para el texto.
label = QLabel("Cambiar el tipo y tamaño de la fuente a toda la aplicación...", self)
label.setFont(fuente)
label.setGeometry(20, 88, 480, 25)
# =================== EVENTO QPUSHBUTTON ===================
button.clicked.connect(self.cambiarFuente)
# ======================= FUNCIONES ============================
def cambiarFuente(self):
fuente = self.font()
fuente.setCapitalization(QFont.MixedCase)
# Aplicar fuente al objeto QApplication
aplicacion.setFont(fuente)
# Pasar el foco al lineEdit
self.lineEdit.setFocus()
# ================================================================
if __name__ == '__main__':
import sys
# La clase QApplication administra el flujo de control de la aplicación
# GUI y la configuración principal.
aplicacion = QApplication(sys.argv)
fuente = QFont()
fuente.setPointSize(10) # Tamaño de la fuente
fuente.setFamily("Bahnschrift Light") # Tipo de fuente
fuente.setCapitalization(QFont.AllUppercase) # Texto en mayúsculas
aplicacion.setFont(fuente) # Aplicar fuente al objeto QApplication
ventana = ventanaPrincipal()
ventana.show()
sys.exit(aplicacion.exec_())
|
import random
from example.commons import Faker
from pyecharts import options as opts
from pyecharts.charts import Scatter3D
def test_scatter3d_base():
data = [
[random.randint(0, 100), random.randint(0, 100), random.randint(0, 100)]
for _ in range(80)
]
c = (
Scatter3D()
.add("", data)
.set_global_opts(
visualmap_opts=opts.VisualMapOpts(range_color=Faker.visual_color)
)
)
assert c.theme == "white"
assert c.renderer == "canvas"
c.render("render.html")
|
import unittest
import os
import time
import urllib2
from ledger.transaction.endpoint_registry import EndpointRegistryTransaction
from txnintegration.exceptions import ValidatorManagerException, ExitError
from txnintegration.integer_key_client import IntegerKeyClient
from txnintegration.utils import generate_private_key, Progress, TimeOut
from txnintegration.validator_network_manager import ValidatorNetworkManager
from txnintegration.validator_network_manager import defaultValidatorConfig
from txnserver.endpoint_registry_client import EndpointRegistryClient
from sawtooth.client import LedgerWebClient
ENABLE_STARTUP_TESTS = False
if os.environ.get('ENABLE_STARTUP_TESTS') == '1':
ENABLE_STARTUP_TESTS = True
@unittest.skipUnless(ENABLE_STARTUP_TESTS, "Startup Tests")
class TestBasicStartup(unittest.TestCase):
def setUp(self):
self.number_of_daemons = int(os.environ.get("NUMBER_OF_DAEMONS", 5))
self.vnm = ValidatorNetworkManager(cfg=defaultValidatorConfig.copy())
def _verify_equality_of_block_lists(self, webclients):
block_lists = []
for ledger_client in webclients:
block_list = []
node_ids = set(ledger_client.get_store(
txntype=EndpointRegistryTransaction))
for b in ledger_client.get_block_list():
tids_from_blocks = ledger_client.get_block(
blockid=b, field='TransactionIDs')
node_ids_from_blocks = []
for tid in tids_from_blocks:
node = ledger_client.\
get_transaction(tid, 'Update').get('NodeIdentifier')
node_ids_from_blocks.append(node)
if len(node_ids.intersection(node_ids_from_blocks)) > 0:
block_list.append(b)
block_lists.append(block_list)
self.assertEqual(len(max(block_lists, key=len)),
len(min(block_lists, key=len)),
"The length of the EndpointRegistry "
"block lists are the same for all validators")
zeroth_block_list = block_lists[0]
for bl in block_lists[1:]:
self.assertEqual(zeroth_block_list, bl,
"The block lists are the same for each validator")
def _verify_orderly_transactions(self, webclients, node_identifiers):
for ledger_client in webclients:
node_ids = []
for b in ledger_client.get_block_list():
if not ledger_client.get_block(blockid=b,
field='BlockNum') == 0L:
# the genesis block has no transactions
tids_from_blocks = ledger_client.get_block(
blockid=b, field='TransactionIDs')
self.assertEqual(len(tids_from_blocks), 1,
"One transaction per block")
node = ledger_client.get_transaction(
tids_from_blocks[0],
'Update').get('NodeIdentifier')
node_ids.append(node)
node_ids.reverse()
self.assertEqual(len(node_identifiers), len(node_ids),
"The node list lengths are the same")
self.assertEqual(node_ids, node_identifiers,
"The node lists are the same")
def test_basic_startup(self):
try:
self.vnm.launch_network(count=self.number_of_daemons,
others_daemon=True)
validator_urls = self.vnm.urls()
# IntegerKeyClient is only needed to send one more transaction
# so n-1=number of EndpointRegistryTransactions
integer_key_clients = [
IntegerKeyClient(baseurl=u,
keystring=generate_private_key())
for u in validator_urls
]
ledger_web_clients = [
LedgerWebClient(url=u) for u in validator_urls]
for int_key_client in integer_key_clients:
int_key_client.set(key=str(1), value=20)
self._verify_equality_of_block_lists(ledger_web_clients)
finally:
self.vnm.shutdown()
self.vnm.create_result_archive('TestDaemonStartup.tar.gz')
def test_join_after_delay_start(self):
delayed_validator = None
validator_urls = []
try:
self.vnm.launch_network(5)
validator_urls = self.vnm.urls()
delayed_validator = self.vnm.launch_node(delay=True)
time.sleep(5)
command_url = delayed_validator.url + '/command'
request = urllib2.Request(
url=command_url,
headers={'Content-Type': 'application/json'})
response = urllib2.urlopen(request,
data='{"action": "start"}')
response.close()
self.assertEqual(response.code, 200,
"Successful post to delayed validator")
validator_urls.append(delayed_validator.url)
ledger_web_clients = [
LedgerWebClient(url=u) for u in validator_urls
]
with Progress("Waiting for registration of 1 validator") as p:
url = validator_urls[0]
to = TimeOut(60)
while not delayed_validator.is_registered(url):
if to():
raise ExitError(
"{} delayed validator failed to register "
"within {}S.".format(
1, to.WaitTime))
p.step()
time.sleep(1)
try:
delayed_validator.check_error()
except ValidatorManagerException as vme:
delayed_validator.dump_log()
delayed_validator.dump_stderr()
raise ExitError(str(vme))
integer_key_clients = [
IntegerKeyClient(baseurl=u,
keystring=generate_private_key())
for u in validator_urls
]
for int_key_client in integer_key_clients:
int_key_client.set(key=str(1), value=20)
self._verify_equality_of_block_lists(ledger_web_clients)
finally:
self.vnm.shutdown()
if delayed_validator is not None and \
validator_urls is not [] and \
delayed_validator.url not in validator_urls:
delayed_validator.shutdown()
self.vnm.create_result_archive("TestDelayedStart.tar.gz")
def test_initial_connectivity_n_minus_1(self):
try:
self.vnm.validator_config['LedgerURL'] = "**none**"
self.vnm.validator_config['Restore'] = False
validator = self.vnm.launch_node(genesis=True)
validators = [validator]
with Progress("Launching validator network") as p:
self.vnm.validator_config['LedgerURL'] = validator.url
self.vnm.validator_config['Restore'] = False
node_identifiers = [validator.Address]
for i in range(1, 5):
self.vnm.validator_config['InitialConnectivity'] = i
v = self.vnm.launch_node(genesis=False, daemon=False)
validators.append(v)
node_identifiers.append(v.Address)
p.step()
self.vnm.wait_for_registration(validators, validator)
validator_urls = self.vnm.urls()
ledger_web_clients = [
LedgerWebClient(url=u) for u in validator_urls
]
integer_key_clients = [
IntegerKeyClient(baseurl=u,
keystring=generate_private_key())
for u in validator_urls
]
for int_key_client in integer_key_clients:
int_key_client.set(key=str(1), value=20)
self._verify_equality_of_block_lists(ledger_web_clients)
self._verify_orderly_transactions(ledger_web_clients,
node_identifiers)
finally:
self.vnm.shutdown()
self.vnm.create_result_archive(
'TestOrderlyInitialConnectivity.tar.gz')
def test_adding_node_with_nodelist(self):
try:
validators = self.vnm.launch_network(5)
validator_urls = self.vnm.urls()
endpoint_client = EndpointRegistryClient(validator_urls[0])
nodes = []
for epl in endpoint_client.get_endpoint_list():
node = {}
node['Host'] = epl['Host']
node['Port'] = epl['Port']
node['Identifier'] = epl['NodeIdentifier']
node['NodeName'] = epl['Name']
nodes.append(node)
peers = [nodes[0]['NodeName'], nodes[2]['NodeName'],
'validator-x']
self.vnm.validator_config['Nodes'] = nodes
self.vnm.validator_config['Peers'] = peers
v = self.vnm.launch_node()
validator_urls.append(v.url)
self.vnm.wait_for_registration([v], validators[0])
ledger_web_clients = [
LedgerWebClient(url=u) for u in validator_urls
]
integer_key_clients = [
IntegerKeyClient(baseurl=u,
keystring=generate_private_key())
for u in validator_urls
]
for int_key_client in integer_key_clients:
int_key_client.set(key=str(1), value=20)
self._verify_equality_of_block_lists(ledger_web_clients)
finally:
self.vnm.shutdown()
self.vnm.create_result_archive('TestNodeList.tar.gz')
|
import circuitcourtparser
import districtcourtparser
import logging
import sys
from circuitcourtopener import CircuitCourtOpener
from districtcourtopener import DistrictCourtOpener
from time import sleep
log = logging.getLogger('logentries')
class DistrictCourtReader:
def __init__(self):
self.searches_on_session = 0
self.fips_code = ''
self.case_type = ''
self.opener = DistrictCourtOpener()
def connect(self):
soup = self.opener.open_welcome_page()
self.court_names = districtcourtparser.parse_court_names(soup)
return self.court_names
def manage_opener(self):
self.searches_on_session += 1
if self.searches_on_session > 10000:
print 'RESETTING OPENER'
self.log_off()
sleep(2)
self.connect()
self.searches_on_session = 0
self.fips_code = ''
print 'RESET SUCCESSFUL'
def change_court(self, fips_code, case_type):
if fips_code != self.fips_code or case_type != self.case_type:
print 'CHANGING COURT TO', fips_code
name = self.court_names[fips_code]
self.opener.change_court(name, fips_code)
self.fips_code = fips_code
self.case_type = case_type
sleep(1)
def log_off(self):
self.opener.log_off()
def get_case_details_by_number(self, fips_code, case_type, case_number, case_details_url=None):
self.manage_opener()
self.change_court(fips_code, case_type)
sleep(1)
search_division = 'T'
if case_type == 'civil':
search_division = 'V'
soup = self.opener.do_case_number_search(fips_code, case_number, search_division) \
if case_details_url is None else self.opener.open_case_details(case_details_url)
return districtcourtparser.parse_case_details(soup, case_type)
def get_cases_by_date(self, fips_code, case_type, date):
self.manage_opener()
self.change_court(fips_code, case_type)
search_division = 'T'
if case_type == 'civil':
search_division = 'V'
self.opener.open_hearing_date_search(fips_code, search_division)
sleep(1)
#date = date.strftime('%m/%d/%Y')
print '\tSearching ' + self.court_names[fips_code] + \
' for cases on ' + date
soup = self.opener.do_hearing_date_search(fips_code, date, True)
sleep(1)
cases = []
while True:
cases.extend(districtcourtparser.parse_hearing_date_search(soup, case_type))
print '\tFound ' + str(len(cases)) + ' cases\r',
sys.stdout.flush()
if not districtcourtparser.next_button_found(soup):
break
sleep(1)
soup = self.opener.do_hearing_date_search(fips_code, date, False)
return cases
def get_case_details(self, case):
self.manage_opener()
sleep(1)
soup = self.opener.open_case_details(case)
return districtcourtparser.parse_case_details(soup, None)
def get_cases_by_name(self, fips_code, case_type, name):
self.manage_opener()
self.change_court(fips_code, case_type)
search_division = 'T'
if case_type == 'civil':
search_division = 'V'
self.opener.open_name_search(fips_code, search_division)
sleep(1)
cases = []
count = 0
found_cases = None
while True:
soup = self.opener.do_name_search(fips_code, search_division, name, count, found_cases)
found_cases = districtcourtparser.parse_name_search(soup)
cases.extend(found_cases)
if not districtcourtparser.next_names_button_found(soup):
break
log.info('Next Names Page')
print 'Next Names Page'
count += 1
sleep(2)
return cases
class CircuitCourtReader:
def __init__(self):
self.fips_code = ''
self.case_type = ''
self.opener = CircuitCourtOpener()
self.searches_on_session = 0
def manage_opener(self):
self.searches_on_session += 1
if self.searches_on_session > 100:
print 'RESETTING OPENER'
self.log_off()
sleep(2)
self.connect()
self.searches_on_session = 0
self.fips_code = ''
print 'RESET SUCCESSFUL'
def connect(self):
soup = self.opener.open_welcome_page()
self.courts = circuitcourtparser.parse_court_names(soup)
return self.courts
def log_off(self):
self.opener.log_off()
def change_court(self, fips_code, case_type):
if fips_code != self.fips_code or case_type != self.case_type:
print 'CHANGING COURT TO', fips_code
self.opener.change_court(fips_code, self.courts[fips_code]['full_name'])
self.fips_code = fips_code
self.case_type = case_type
sleep(1)
def get_case_details_by_number(self, fips, case_type, case_number, case_details_url=None):
self.manage_opener()
category_code = 'R'
if case_type == 'civil':
category_code = 'CIVIL'
self.change_court(fips, case_type)
soup = self.opener.do_case_number_search(fips, case_number, category_code)
pleadings_soup = self.opener.do_case_number_pleadings_search(fips, case_number, category_code)
services_soup = self.opener.do_case_number_services_search(fips, case_number, category_code)
self.opener.return_to_main_menu(fips)
if case_type == 'civil':
case_details = circuitcourtparser.parse_civil_case_details(soup)
else:
case_details = circuitcourtparser.parse_case_details(soup)
case_details['Pleadings'] = circuitcourtparser.parse_pleadings_table(pleadings_soup, case_type)
case_details['Services'] = circuitcourtparser.parse_services_table(services_soup, case_type)
return case_details
def get_cases_by_name(self, fips_code, case_type, name):
self.manage_opener()
category_code = 'R'
if case_type == 'civil':
category_code = 'CIVIL'
self.change_court(fips_code, case_type)
cases = []
soup = self.opener.do_name_search(fips_code, name, category_code)
all_found = circuitcourtparser.parse_name_search(soup, name, cases)
while not all_found:
sleep(1)
soup = self.opener.continue_name_search(fips_code, category_code)
all_found = circuitcourtparser.parse_name_search(soup, name, cases)
return cases
def get_cases_by_date(self, fips_code, case_type, date):
self.manage_opener()
category_code = 'R'
if case_type == 'civil':
category_code = 'CIVIL'
self.change_court(fips_code, case_type)
cases = []
soup = self.opener.do_date_search(fips_code, date, category_code)
all_found = circuitcourtparser.parse_date_search(soup, cases)
print 'FINAL PAGE', all_found
while not all_found:
sleep(1)
soup = self.opener.continue_date_search(fips_code, category_code)
all_found = circuitcourtparser.parse_date_search(soup, cases)
print 'FINAL PAGE', all_found
return cases
|
#!/usr/bin/python
# -*- coding: utf-8 -*-
import requests
import codecs
import json
import xmltodict
import sys
import os
import difflib
import xbmc
import xbmcgui
import xbmcaddon
import qrcode
def annictRecord(AnnictEpisodeID, annictToken):
url = "https://api.annict.com/v1/me/records"
payloads = {
"access_token": annictToken,
"share_twitter": "false",
"episode_id": str(AnnictEpisodeID)
}
if AnnictEpisodeID != -1:
response = requests.post(url, params=payloads)
if int(response.status_code) != 200:
line1 = "Error1"
xbmcgui.Dialog().ok(__addonname__, line1)
else:
print("Error")
exit()
def titleToWorkID(shortTitle, annictToken):
url = 'https://api.annict.com/v1/works'
payloads = {
"access_token": annictToken,
"per_page": "50",
"fields": "id,title",
"page": "1",
"filter_title": shortTitle
}
response = requests.get(url, params=payloads)
if int(response.status_code) != 200:
line1 = "Error2"
xbmcgui.Dialog().ok(__addonname__, line1)
jd = json.loads(response.text.encode("utf-8"))
DiffDict = {}
for work in jd["works"]:
if type(work["title"]) == unicode:
s = difflib.SequenceMatcher(None, Title.decode("utf-8"), work["title"]).ratio()
else:
s = difflib.SequenceMatcher(None, Title.decode("utf-8"), work["title"].decode("utf-8")).ratio()
DiffDict[work["title"]] = s
AnnictWork = max(DiffDict, key=DiffDict.get)
for work in jd["works"]:
if AnnictWork == work["title"]:
AnnictWorkID = int(work["id"])
return AnnictWorkID
def workIDtoEpisodeList(AnnictWorkID, annictToken):
AnnictEpisodeID = -1
url = 'https://api.annict.com/v1/episodes'
payloads = {
"access_token": annictToken,
"per_page": "50",
"fields": "number,sort_number,id",
"sort_sort_number": "asc",
"filter_work_id": str(AnnictWorkID)
}
response = requests.get(url, params=payloads)
if int(response.status_code) != 200:
print("Error")
exit()
"""
1. number全部Noneでsort_numberに実際のデータ
2. number一部Noneでsort_number % 10が実際のデータ
とりあえずこの2つ、それ以外はエラー
"""
AnnictEpisodeIDList = []
jd = json.loads(response.text)
for episode in jd["episodes"]:
if episode["number"] is not None:
# This is 2
for i, episode in enumerate(jd["episodes"]):
AnnictEpisodeIDList.append(int(episode["id"]))
break
else:
if episode != jd["episodes"][-1]: continue
# This is 1
for i, episode in enumerate(jd["episodes"]):
AnnictEpisodeIDList.append(int(episode["id"]))
return AnnictEpisodeIDList
if __name__ == '__main__':
AddonID ='plugin.video.koddict'
__addon__ = xbmcaddon.Addon()
__addonname__ = __addon__.getAddonInfo('name')
filePath = xbmc.translatePath(os.path.join('special://home/addons/' + AddonID + "/"))
Title = xbmc.getInfoLabel("ListItem.TVShowTitle")
TitleShort = ""
Number = int(xbmc.getInfoLabel("ListItem.Episode"))
for dct in os.environ:
xbmc.log(str(dct) + str(os.environ[dct]),level=xbmc.LOGNOTICE)
if "ANNICT_TOKEN" in os.environ:
annictToken = os.environ["ANNICT_TOKEN"]
elif os.path.isfile(filePath + "ANNICT_TOKEN"):
with open(filePath + "ANNICT_TOKEN") as f:
annictToken = f.readline()
else:
line1 = "$ANNICT_TOKEN or annictToken (file) is not found."
line2 = "Please set this environment variable. (e.g. ~/.xprofile, \"export ANNICT_TOKEN=XXXXXX\")"
line3 = "or please put named \"annictToken\" file."
xbmcgui.Dialog().ok(__addonname__, line1, line2, line3)
sys.exit(1)
for s in Title.decode("utf-8"):
"""
表記ぶれが存在するため、
記号もしくは空白までのタイトル一部分を検索に利用
eg. ef- a tale of memories. -> ef のみ
"""
if s.isalnum():
TitleShort = TitleShort + s
else: break
TitleBase64 = Title.encode("base64")
if TitleBase64[-1] == '\n':
TitleBase64 = TitleBase64.rstrip()
if os.path.exists(filePath + TitleBase64 + ".json"):
f = codecs.open(filePath + TitleBase64 + ".json", "r", "utf-8")
s = json.load(f)
AnnictWorkID = int(s.keys()[0])
if len(s[str(AnnictWorkID)]) < Number:
print("Remake")
"""
データが古いため、
JSON作り直し
"""
else:
AnnictEpisodeID = s[str(AnnictWorkID)][Number - 1]
annictRecord(AnnictEpisodeID, annictToken)
line1 = "Title: " + Title
line2 = "Episode: " + str(Number) + "_" + xbmc.getInfoLabel("ListItem.Title")
line3 = "URI: " + "https://annict.jp/works/" + str(AnnictWorkID) + "/episodes/" + str(AnnictEpisodeID)
#line3 = "Data was found on local filesystem."
xbmcgui.Dialog().ok(__addonname__, line1, line2, line3)
else:
"""
Annict API
作品タイトルからWorkID検索
"""
AnnictWorkID = titleToWorkID(TitleShort, annictToken)
"""
Annict API
WorkIDから作品IDリスト取得
"""
AnnictEpisodeIDList = workIDtoEpisodeList(AnnictWorkID, annictToken)
s = {str(AnnictWorkID): AnnictEpisodeIDList}
f = codecs.open(filePath + TitleBase64 + ".json", "w", "utf-8")
json.dump(s, f, indent=2, ensure_ascii=False)
f.close()
AnnictEpisodeID = AnnictEpisodeIDList[Number - 1]
annictRecord(AnnictEpisodeID, annictToken)
line1 = "Title: " + Title
line2 = "Episode: " + str(Number) + "_" + xbmc.getInfoLabel("ListItem.Title")
line3 = "URI: " + "https://annict.jp/works/" + str(AnnictWorkID) + "/episodes/" + str(AnnictEpisodeID)
xbmcgui.Dialog().ok(__addonname__, line1, line2, line3)
|
import unittest
from df_utils import UtilityFunctions
class SqrtTests(unittest.TestCase):
"""Functions to test the increment of attributes
"""
ut = UtilityFunctions()
def test_raise_power(self):
#ut = UtilityFunctions()
self.assertEqual(ut.raise_power(5,2),25)
def test_raise_power_coolness(self):
#ut = UtilityFunctions()
self.assertEqual(ut.raise_power_coolness(2),25)
def test_coolness_attribute(self):
#ut = UtilityFunctions()
self.assertEqual(ut.coolness,5)
if __name__ == "__main__":
unittest.main()
|
from django.contrib import admin
# Register your models here.
from .models import User, UserBill, Bill, Flat
admin.site.register(User)
admin.site.register(UserBill)
admin.site.register(Flat)
admin.site.register(Bill)
|
from distutils.core import setup
setup(
name='foorep',
version='0.1.4-2',
author='Johan Berggren',
author_email='jbn@klutt.se',
packages=['foorep', 'foorep.test'],
url='http://foorensics.blogspot.com',
license='LICENSE.txt',
description='Malware Repository for humans',
long_description='Malware Repository for humans',
install_requires=[
"pymongo==2.4",
"CherryPy==3.2.2",
"Jinja2==2.6",
"pefile==1.2.10-123",
"python-magic==0.4.3",
],
include_package_data=True,
package_data = {
'foorep': [
'plugins/*',
'site/static/js/*',
'site/static/css/*',
'site/static/img/*',
'site/static/bootstrap/js/*',
'site/templates/plugins/*',
'site/templates/*.html',
'site/static/bootstrap/css/*',
'site/static/bootstrap/img/*']
},
entry_points={
'console_scripts':
['foorep=foorep.cli:main', 'foorepd=foorep.web:main']
},
)
|
# This is a generated file so don`t change this manually.
# To re-generate run 'python gen-dependency-info.py <GitHub_PAT>' from the project root.
LICENSES = [
{
"Name": "adal",
"Version": "1.2.7",
"Summary": "Note: This library is already replaced by MSAL Python, available here: https://pypi.org/project/msal/ .ADAL Python remains available here as a legacy. The ADAL for Python library makes it easy for python application to authenticate to Azure Active Directory (AAD) in order to access AAD protected web resources.",
"Home-page": "https://github.com/AzureAD/azure-activedirectory-library-for-python",
"Author": "Microsoft Corporation",
"License": "Other",
"License URL": "https://api.github.com/repos/azuread/azure-activedirectory-library-for-python/license",
"License repo": "The MIT License (MIT)\n\nCopyright (c) Microsoft Corporation. \nAll rights reserved.\n\nThis code is licensed under the MIT License.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files(the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and / or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions :\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE."
},
{
"Name": "ansible-core",
"Version": "2.12.6",
"Summary": "Radically simple IT automation",
"Home-page": "https://ansible.com/",
"Author": "Ansible, Inc.",
"License": "GPLv3+"
},
{
"Name": "ansible",
"Version": "5.2.0",
"Summary": "Radically simple IT automation",
"Home-page": "https://ansible.com/",
"Author": "Ansible, Inc.",
"License": "GPLv3+"
},
{
"Name": "antlr4-python3-runtime",
"Version": "4.7.2",
"Summary": "ANTLR 4.7.2 runtime for Python 3.6.3",
"Home-page": "http://www.antlr.org",
"Author": "Eric Vergnaud, Terence Parr, Sam Harwell",
"License": "BSD"
},
{
"Name": "applicationinsights",
"Version": "0.11.10",
"Summary": "This project extends the Application Insights API surface to support Python.",
"Home-page": "https://github.com/Microsoft/ApplicationInsights-Python",
"Author": "Microsoft",
"License": "MIT License",
"License URL": "https://api.github.com/repos/microsoft/applicationinsights-python/license",
"License repo": "The MIT License (MIT)\n\nCopyright (c) 2018 Microsoft\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "argcomplete",
"Version": "1.12.3",
"Summary": "Bash tab completion for argparse",
"Home-page": "https://github.com/kislyuk/argcomplete",
"Author": "Andrey Kislyuk",
"License": "Apache License 2.0",
"License URL": "https://api.github.com/repos/kislyuk/argcomplete/license",
"License repo": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n",
"License text": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
},
{
"Name": "attrs",
"Version": "21.4.0",
"Summary": "Classes Without Boilerplate",
"Home-page": "https://www.attrs.org/",
"Author": "Hynek Schlawack",
"License": "MIT"
},
{
"Name": "azure-appconfiguration",
"Version": "1.1.1",
"Summary": "Microsoft App Configuration Data Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/appconfiguration/azure-appconfiguration",
"Author": "Microsoft Corporation",
"License": "MIT License"
},
{
"Name": "azure-batch",
"Version": "11.0.0",
"Summary": "Microsoft Azure Batch Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-cli-core",
"Version": "2.32.0",
"Summary": "Microsoft Azure Command-Line Tools Core Module",
"Home-page": "https://github.com/Azure/azure-cli",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-cli/license",
"License repo": "MIT License\n\nCopyright (c) 2016 Microsoft Corporation\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-cli-telemetry",
"Version": "1.0.6",
"Summary": "Microsoft Azure CLI Telemetry Package",
"Home-page": "https://github.com/Azure/azure-cli",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-cli/license",
"License repo": "MIT License\n\nCopyright (c) 2016 Microsoft Corporation\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-cli",
"Version": "2.32.0",
"Summary": "Microsoft Azure Command-Line Tools",
"Home-page": "https://github.com/Azure/azure-cli",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-cli/license",
"License repo": "MIT License\n\nCopyright (c) 2016 Microsoft Corporation\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-common",
"Version": "1.1.28",
"Summary": "Microsoft Azure Client Library for Python (Common)",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-core",
"Version": "1.24.0",
"Summary": "Microsoft Azure Core Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/core/azure-core",
"Author": "Microsoft Corporation",
"License": "MIT License"
},
{
"Name": "azure-cosmos",
"Version": "3.2.0",
"Summary": "Azure Cosmos Python SDK",
"Home-page": "https://github.com/Azure/azure-documentdb-python",
"Author": "Microsoft",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-documentdb-python/license",
"License repo": "The MIT License (MIT)\nCopyright (c) 2014 Microsoft Corporation\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-datalake-store",
"Version": "0.0.52",
"Summary": "Azure Data Lake Store Filesystem Client Library for Python",
"Home-page": "https://github.com/Azure/azure-data-lake-store-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-data-lake-store-python/license",
"License repo": "\ufeffThe MIT License (MIT)\n\nCopyright (c) 2016 Microsoft\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-graphrbac",
"Version": "0.60.0",
"Summary": "Microsoft Azure Graph RBAC Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-identity",
"Version": "1.10.0",
"Summary": "Microsoft Azure Identity Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/identity/azure-identity",
"Author": "Microsoft Corporation",
"License": "MIT License"
},
{
"Name": "azure-keyvault-administration",
"Version": "4.0.0b3",
"Summary": "Microsoft Azure Key Vault Administration Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/keyvault/azure-keyvault-administration",
"Author": "Microsoft Corporation",
"License": "MIT License"
},
{
"Name": "azure-keyvault-keys",
"Version": "4.5.0b4",
"Summary": "Microsoft Azure Key Vault Keys Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/keyvault/azure-keyvault-keys",
"Author": "Microsoft Corporation",
"License": "MIT License"
},
{
"Name": "azure-keyvault",
"Version": "1.1.0",
"Summary": "Microsoft Azure Key Vault Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-loganalytics",
"Version": "0.1.1",
"Summary": "Microsoft Azure Log Analytics Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-advisor",
"Version": "9.0.0",
"Summary": "Microsoft Azure Advisor Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-apimanagement",
"Version": "0.2.0",
"Summary": "Microsoft Azure API Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-appconfiguration",
"Version": "2.0.0",
"Summary": "Microsoft Azure App Configuration Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-applicationinsights",
"Version": "1.0.0",
"Summary": "Microsoft Azure Application Insights Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-authorization",
"Version": "0.61.0",
"Summary": "Microsoft Azure Authorization Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-batch",
"Version": "16.0.0",
"Summary": "Microsoft Azure Batch Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-batchai",
"Version": "7.0.0b1",
"Summary": "Microsoft Azure Batchai Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-billing",
"Version": "6.0.0",
"Summary": "Microsoft Azure Billing Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-botservice",
"Version": "0.3.0",
"Summary": "Microsoft Azure Bot Service Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-cdn",
"Version": "11.0.0",
"Summary": "Microsoft Azure CDN Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-cognitiveservices",
"Version": "13.0.0",
"Summary": "Microsoft Azure Cognitive Services Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-compute",
"Version": "23.1.0",
"Summary": "Microsoft Azure Compute Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-consumption",
"Version": "2.0.0",
"Summary": "Microsoft Azure Consumption Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-containerinstance",
"Version": "9.1.0",
"Summary": "Microsoft Azure Container Instance Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-containerregistry",
"Version": "8.2.0",
"Summary": "Microsoft Azure Container Registry Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-containerservice",
"Version": "16.1.0",
"Summary": "Microsoft Azure Container Service Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-core",
"Version": "1.3.0",
"Summary": "Microsoft Azure Management Core Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/core/azure-mgmt-core",
"Author": "Microsoft Corporation",
"License": "MIT License"
},
{
"Name": "azure-mgmt-cosmosdb",
"Version": "7.0.0b6",
"Summary": "Microsoft Azure Cosmos DB Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-databoxedge",
"Version": "1.0.0",
"Summary": "Microsoft Azure Databoxedge Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-datalake-analytics",
"Version": "0.2.1",
"Summary": "Microsoft Azure Data Lake Analytics Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-datalake-nspkg",
"Version": "3.0.1",
"Summary": "Microsoft Azure Data Lake Management Namespace Package [Internal]",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-datalake-store",
"Version": "0.5.0",
"Summary": "Microsoft Azure Data Lake Store Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-datamigration",
"Version": "10.0.0",
"Summary": "Microsoft Azure Data Migration Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-deploymentmanager",
"Version": "0.2.0",
"Summary": "Microsoft Azure Deployment Manager Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-devtestlabs",
"Version": "4.0.0",
"Summary": "Microsoft Azure DevTestLabs Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-dns",
"Version": "8.0.0",
"Summary": "Microsoft Azure DNS Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-eventgrid",
"Version": "9.0.0",
"Summary": "Microsoft Azure EventGrid Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-eventhub",
"Version": "9.1.0",
"Summary": "Microsoft Azure EventHub Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-extendedlocation",
"Version": "1.0.0",
"Summary": "Microsoft Azure Extendedlocation Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-hdinsight",
"Version": "9.0.0",
"Summary": "Microsoft Azure HDInsight Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-imagebuilder",
"Version": "1.0.0",
"Summary": "Microsoft Azure Image Builder Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-iotcentral",
"Version": "9.0.0",
"Summary": "Microsoft Azure Iotcentral Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-iothub",
"Version": "2.1.0",
"Summary": "Microsoft Azure IoTHub Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-iothubprovisioningservices",
"Version": "1.0.0",
"Summary": "Microsoft Azure IoTHub Provisioning Services Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-keyvault",
"Version": "9.3.0",
"Summary": "Microsoft Azure Keyvault Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-kusto",
"Version": "0.3.0",
"Summary": "Microsoft Azure Kusto Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-loganalytics",
"Version": "12.0.0",
"Summary": "Microsoft Azure Log Analytics Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-managedservices",
"Version": "1.0.0",
"Summary": "Microsoft Azure Managed Services Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-managementgroups",
"Version": "0.2.0",
"Summary": "Microsoft Azure Management Groups Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-maps",
"Version": "2.0.0",
"Summary": "Microsoft Azure Maps Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-marketplaceordering",
"Version": "1.1.0",
"Summary": "Microsoft Azure Market Place Ordering Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-media",
"Version": "7.0.0",
"Summary": "Microsoft Azure Media Services Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-monitor",
"Version": "3.0.0",
"Summary": "Microsoft Azure Monitor Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-msi",
"Version": "0.2.0",
"Summary": "Microsoft Azure MSI Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-netapp",
"Version": "5.1.0",
"Summary": "Microsoft Azure NetApp Files Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-network",
"Version": "19.3.0",
"Summary": "Microsoft Azure Network Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-nspkg",
"Version": "3.0.2",
"Summary": "Microsoft Azure Resource Management Namespace Package [Internal]",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-policyinsights",
"Version": "1.0.0",
"Summary": "Microsoft Azure Policy Insights Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-privatedns",
"Version": "1.0.0",
"Summary": "Microsoft Azure DNS Private Zones Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-rdbms",
"Version": "10.0.0",
"Summary": "Microsoft Azure RDBMS Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-recoveryservices",
"Version": "2.0.0",
"Summary": "Microsoft Azure Recovery Services Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-recoveryservicesbackup",
"Version": "4.0.0",
"Summary": "Microsoft Azure Recovery Services Backup Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-redhatopenshift",
"Version": "1.0.0",
"Summary": "Microsoft Azure Red Hat Openshift Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-redis",
"Version": "13.1.0",
"Summary": "Microsoft Azure Redis Cache Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-relay",
"Version": "0.1.0",
"Summary": "Microsoft Azure Relay Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-reservations",
"Version": "0.6.0",
"Summary": "Microsoft Azure Reservations Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-resource",
"Version": "20.0.0",
"Summary": "Microsoft Azure Resource Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-search",
"Version": "8.0.0",
"Summary": "Microsoft Azure Search Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-security",
"Version": "2.0.0b1",
"Summary": "Microsoft Azure Security Center Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-servicebus",
"Version": "6.0.0",
"Summary": "Microsoft Azure Service Bus Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-servicefabric",
"Version": "1.0.0",
"Summary": "Microsoft Azure Service Fabric Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-servicefabricmanagedclusters",
"Version": "1.0.0",
"Summary": "Microsoft Azure Servicefabricmanagedclusters Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-servicelinker",
"Version": "1.0.0b1",
"Summary": "Microsoft Azure Servicelinker Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-signalr",
"Version": "1.0.0",
"Summary": "Microsoft Azure SignalR Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-sql",
"Version": "3.0.1",
"Summary": "Microsoft Azure SQL Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-sqlvirtualmachine",
"Version": "1.0.0b2",
"Summary": "Microsoft Azure Sql Virtual Machine Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-storage",
"Version": "19.0.0",
"Summary": "Microsoft Azure Storage Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-synapse",
"Version": "2.1.0b5",
"Summary": "Microsoft Azure Synapse Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-trafficmanager",
"Version": "0.51.0",
"Summary": "Microsoft Azure Traffic Manager Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-mgmt-web",
"Version": "4.0.0",
"Summary": "Microsoft Azure Web Apps Management Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-multiapi-storage",
"Version": "0.7.0",
"Summary": "Microsoft Azure Storage Client Library for Python with multi API version support.",
"Home-page": "https://github.com/Azure/azure-multiapi-storage-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-multiapi-storage-python/license",
"License repo": "MIT License\n\nCopyright (c) 2017 Microsoft Corporation\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-nspkg",
"Version": "3.0.2",
"Summary": "Microsoft Azure Namespace Package [Internal]",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-storage-common",
"Version": "1.4.2",
"Summary": "Microsoft Azure Storage Common Client Library for Python",
"Home-page": "https://github.com/Azure/azure-storage-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-storage-python/license",
"License repo": "The MIT License (MIT)\n\nCopyright (c) 2017 Microsoft\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-synapse-accesscontrol",
"Version": "0.5.0",
"Summary": "Microsoft Azure Synapse AccessControl Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-synapse-artifacts",
"Version": "0.10.0",
"Summary": "Microsoft Azure Synapse Artifacts Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-synapse-managedprivateendpoints",
"Version": "0.3.0",
"Summary": "Microsoft Azure Synapse Managed Private Endpoints Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "azure-synapse-spark",
"Version": "0.2.0",
"Summary": "Microsoft Azure Synapse Spark Client Library for Python",
"Home-page": "https://github.com/Azure/azure-sdk-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/azure-sdk-for-python/license",
"License repo": "Copyright (c) Microsoft Corporation.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "bcrypt",
"Version": "3.2.2",
"Summary": "Modern password hashing for your software and your servers",
"Home-page": "https://github.com/pyca/bcrypt/",
"Author": "The Python Cryptographic Authority developers",
"License": "Apache License 2.0",
"License URL": "https://api.github.com/repos/pyca/bcrypt/license",
"License repo": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n",
"License text": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
},
{
"Name": "boto3",
"Version": "1.23.10",
"Summary": "The AWS SDK for Python",
"Home-page": "https://github.com/boto/boto3",
"Author": "Amazon Web Services",
"License": "Apache License 2.0",
"License URL": "https://api.github.com/repos/boto/boto3/license",
"License repo": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n",
"License text": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
},
{
"Name": "botocore",
"Version": "1.26.10",
"Summary": "Low-level, data-driven core of boto 3.",
"Home-page": "https://github.com/boto/botocore",
"Author": "Amazon Web Services",
"License": "Apache License 2.0",
"License URL": "https://api.github.com/repos/boto/botocore/license",
"License repo": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n",
"License text": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
},
{
"Name": "certifi",
"Version": "2022.5.18.1",
"Summary": "Python package for providing Mozilla's CA Bundle.",
"Home-page": "https://github.com/certifi/python-certifi",
"Author": "Kenneth Reitz",
"License": "Other",
"License URL": "https://api.github.com/repos/certifi/python-certifi/license",
"License repo": "This package contains a modified version of ca-bundle.crt:\n\nca-bundle.crt -- Bundle of CA Root Certificates\n\nCertificate data from Mozilla as of: Thu Nov 3 19:04:19 2011#\nThis is a bundle of X.509 certificates of public Certificate Authorities\n(CA). These were automatically extracted from Mozilla's root certificates\nfile (certdata.txt). This file can be found in the mozilla source tree:\nhttp://mxr.mozilla.org/mozilla/source/security/nss/lib/ckfw/builtins/certdata.txt?raw=1#\nIt contains the certificates in PEM format and therefore\ncan be directly used with curl / libcurl / php_curl, or with\nan Apache+mod_ssl webserver for SSL client authentication.\nJust configure this file as the SSLCACertificateFile.#\n\n***** BEGIN LICENSE BLOCK *****\nThis Source Code Form is subject to the terms of the Mozilla Public License,\nv. 2.0. If a copy of the MPL was not distributed with this file, You can obtain\none at http://mozilla.org/MPL/2.0/.\n\n***** END LICENSE BLOCK *****\n@(#) $RCSfile: certdata.txt,v $ $Revision: 1.80 $ $Date: 2011/11/03 15:11:58 $\n"
},
{
"Name": "cffi",
"Version": "1.15.0",
"Summary": "Foreign Function Interface for Python calling C code.",
"Home-page": "http://cffi.readthedocs.org",
"Author": "Armin Rigo, Maciej Fijalkowski",
"License": "MIT"
},
{
"Name": "chardet",
"Version": "3.0.4",
"Summary": "Universal encoding detector for Python 2 and 3",
"Home-page": "https://github.com/chardet/chardet",
"Author": "Daniel Blanchard",
"License": "GNU Lesser General Public License v2.1",
"License URL": "https://api.github.com/repos/chardet/chardet/license",
"License repo": " GNU LESSER GENERAL PUBLIC LICENSE\n Version 2.1, February 1999\n\n Copyright (C) 1991, 1999 Free Software Foundation, Inc.\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n[This is the first released version of the Lesser GPL. It also counts\n as the successor of the GNU Library Public License, version 2, hence\n the version number 2.1.]\n\n Preamble\n\n The licenses for most software are designed to take away your\nfreedom to share and change it. By contrast, the GNU General Public\nLicenses are intended to guarantee your freedom to share and change\nfree software--to make sure the software is free for all its users.\n\n This license, the Lesser General Public License, applies to some\nspecially designated software packages--typically libraries--of the\nFree Software Foundation and other authors who decide to use it. You\ncan use it too, but we suggest you first think carefully about whether\nthis license or the ordinary General Public License is the better\nstrategy to use in any particular case, based on the explanations below.\n\n When we speak of free software, we are referring to freedom of use,\nnot price. Our General Public Licenses are designed to make sure that\nyou have the freedom to distribute copies of free software (and charge\nfor this service if you wish); that you receive source code or can get\nit if you want it; that you can change the software and use pieces of\nit in new free programs; and that you are informed that you can do\nthese things.\n\n To protect your rights, we need to make restrictions that forbid\ndistributors to deny you these rights or to ask you to surrender these\nrights. These restrictions translate to certain responsibilities for\nyou if you distribute copies of the library or if you modify it.\n\n For example, if you distribute copies of the library, whether gratis\nor for a fee, you must give the recipients all the rights that we gave\nyou. You must make sure that they, too, receive or can get the source\ncode. If you link other code with the library, you must provide\ncomplete object files to the recipients, so that they can relink them\nwith the library after making changes to the library and recompiling\nit. And you must show them these terms so they know their rights.\n\n We protect your rights with a two-step method: (1) we copyright the\nlibrary, and (2) we offer you this license, which gives you legal\npermission to copy, distribute and/or modify the library.\n\n To protect each distributor, we want to make it very clear that\nthere is no warranty for the free library. Also, if the library is\nmodified by someone else and passed on, the recipients should know\nthat what they have is not the original version, so that the original\nauthor's reputation will not be affected by problems that might be\nintroduced by others.\n\f\n Finally, software patents pose a constant threat to the existence of\nany free program. We wish to make sure that a company cannot\neffectively restrict the users of a free program by obtaining a\nrestrictive license from a patent holder. Therefore, we insist that\nany patent license obtained for a version of the library must be\nconsistent with the full freedom of use specified in this license.\n\n Most GNU software, including some libraries, is covered by the\nordinary GNU General Public License. This license, the GNU Lesser\nGeneral Public License, applies to certain designated libraries, and\nis quite different from the ordinary General Public License. We use\nthis license for certain libraries in order to permit linking those\nlibraries into non-free programs.\n\n When a program is linked with a library, whether statically or using\na shared library, the combination of the two is legally speaking a\ncombined work, a derivative of the original library. The ordinary\nGeneral Public License therefore permits such linking only if the\nentire combination fits its criteria of freedom. The Lesser General\nPublic License permits more lax criteria for linking other code with\nthe library.\n\n We call this license the \"Lesser\" General Public License because it\ndoes Less to protect the user's freedom than the ordinary General\nPublic License. It also provides other free software developers Less\nof an advantage over competing non-free programs. These disadvantages\nare the reason we use the ordinary General Public License for many\nlibraries. However, the Lesser license provides advantages in certain\nspecial circumstances.\n\n For example, on rare occasions, there may be a special need to\nencourage the widest possible use of a certain library, so that it becomes\na de-facto standard. To achieve this, non-free programs must be\nallowed to use the library. A more frequent case is that a free\nlibrary does the same job as widely used non-free libraries. In this\ncase, there is little to gain by limiting the free library to free\nsoftware only, so we use the Lesser General Public License.\n\n In other cases, permission to use a particular library in non-free\nprograms enables a greater number of people to use a large body of\nfree software. For example, permission to use the GNU C Library in\nnon-free programs enables many more people to use the whole GNU\noperating system, as well as its variant, the GNU/Linux operating\nsystem.\n\n Although the Lesser General Public License is Less protective of the\nusers' freedom, it does ensure that the user of a program that is\nlinked with the Library has the freedom and the wherewithal to run\nthat program using a modified version of the Library.\n\n The precise terms and conditions for copying, distribution and\nmodification follow. Pay close attention to the difference between a\n\"work based on the library\" and a \"work that uses the library\". The\nformer contains code derived from the library, whereas the latter must\nbe combined with the library in order to run.\n\f\n GNU LESSER GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License Agreement applies to any software library or other\nprogram which contains a notice placed by the copyright holder or\nother authorized party saying it may be distributed under the terms of\nthis Lesser General Public License (also called \"this License\").\nEach licensee is addressed as \"you\".\n\n A \"library\" means a collection of software functions and/or data\nprepared so as to be conveniently linked with application programs\n(which use some of those functions and data) to form executables.\n\n The \"Library\", below, refers to any such software library or work\nwhich has been distributed under these terms. A \"work based on the\nLibrary\" means either the Library or any derivative work under\ncopyright law: that is to say, a work containing the Library or a\nportion of it, either verbatim or with modifications and/or translated\nstraightforwardly into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".)\n\n \"Source code\" for a work means the preferred form of the work for\nmaking modifications to it. For a library, complete source code means\nall the source code for all modules it contains, plus any associated\ninterface definition files, plus the scripts used to control compilation\nand installation of the library.\n\n Activities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning a program using the Library is not restricted, and output from\nsuch a program is covered only if its contents constitute a work based\non the Library (independent of the use of the Library in a tool for\nwriting it). Whether that is true depends on what the Library does\nand what the program that uses the Library does.\n\n 1. You may copy and distribute verbatim copies of the Library's\ncomplete source code as you receive it, in any medium, provided that\nyou conspicuously and appropriately publish on each copy an\nappropriate copyright notice and disclaimer of warranty; keep intact\nall the notices that refer to this License and to the absence of any\nwarranty; and distribute a copy of this License along with the\nLibrary.\n\n You may charge a fee for the physical act of transferring a copy,\nand you may at your option offer warranty protection in exchange for a\nfee.\n\f\n 2. You may modify your copy or copies of the Library or any portion\nof it, thus forming a work based on the Library, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) The modified work must itself be a software library.\n\n b) You must cause the files modified to carry prominent notices\n stating that you changed the files and the date of any change.\n\n c) You must cause the whole of the work to be licensed at no\n charge to all third parties under the terms of this License.\n\n d) If a facility in the modified Library refers to a function or a\n table of data to be supplied by an application program that uses\n the facility, other than as an argument passed when the facility\n is invoked, then you must make a good faith effort to ensure that,\n in the event an application does not supply such function or\n table, the facility still operates, and performs whatever part of\n its purpose remains meaningful.\n\n (For example, a function in a library to compute square roots has\n a purpose that is entirely well-defined independent of the\n application. Therefore, Subsection 2d requires that any\n application-supplied function or table used by this function must\n be optional: if the application does not supply it, the square\n root function must still compute square roots.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Library,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Library, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Library.\n\nIn addition, mere aggregation of another work not based on the Library\nwith the Library (or with a work based on the Library) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n 3. You may opt to apply the terms of the ordinary GNU General Public\nLicense instead of this License to a given copy of the Library. To do\nthis, you must alter all the notices that refer to this License, so\nthat they refer to the ordinary GNU General Public License, version 2,\ninstead of to this License. (If a newer version than version 2 of the\nordinary GNU General Public License has appeared, then you can specify\nthat version instead if you wish.) Do not make any other change in\nthese notices.\n\f\n Once this change is made in a given copy, it is irreversible for\nthat copy, so the ordinary GNU General Public License applies to all\nsubsequent copies and derivative works made from that copy.\n\n This option is useful when you wish to copy part of the code of\nthe Library into a program that is not a library.\n\n 4. You may copy and distribute the Library (or a portion or\nderivative of it, under Section 2) in object code or executable form\nunder the terms of Sections 1 and 2 above provided that you accompany\nit with the complete corresponding machine-readable source code, which\nmust be distributed under the terms of Sections 1 and 2 above on a\nmedium customarily used for software interchange.\n\n If distribution of object code is made by offering access to copy\nfrom a designated place, then offering equivalent access to copy the\nsource code from the same place satisfies the requirement to\ndistribute the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n 5. A program that contains no derivative of any portion of the\nLibrary, but is designed to work with the Library by being compiled or\nlinked with it, is called a \"work that uses the Library\". Such a\nwork, in isolation, is not a derivative work of the Library, and\ntherefore falls outside the scope of this License.\n\n However, linking a \"work that uses the Library\" with the Library\ncreates an executable that is a derivative of the Library (because it\ncontains portions of the Library), rather than a \"work that uses the\nlibrary\". The executable is therefore covered by this License.\nSection 6 states terms for distribution of such executables.\n\n When a \"work that uses the Library\" uses material from a header file\nthat is part of the Library, the object code for the work may be a\nderivative work of the Library even though the source code is not.\nWhether this is true is especially significant if the work can be\nlinked without the Library, or if the work is itself a library. The\nthreshold for this to be true is not precisely defined by law.\n\n If such an object file uses only numerical parameters, data\nstructure layouts and accessors, and small macros and small inline\nfunctions (ten lines or less in length), then the use of the object\nfile is unrestricted, regardless of whether it is legally a derivative\nwork. (Executables containing this object code plus portions of the\nLibrary will still fall under Section 6.)\n\n Otherwise, if the work is a derivative of the Library, you may\ndistribute the object code for the work under the terms of Section 6.\nAny executables containing that work also fall under Section 6,\nwhether or not they are linked directly with the Library itself.\n\f\n 6. As an exception to the Sections above, you may also combine or\nlink a \"work that uses the Library\" with the Library to produce a\nwork containing portions of the Library, and distribute that work\nunder terms of your choice, provided that the terms permit\nmodification of the work for the customer's own use and reverse\nengineering for debugging such modifications.\n\n You must give prominent notice with each copy of the work that the\nLibrary is used in it and that the Library and its use are covered by\nthis License. You must supply a copy of this License. If the work\nduring execution displays copyright notices, you must include the\ncopyright notice for the Library among them, as well as a reference\ndirecting the user to the copy of this License. Also, you must do one\nof these things:\n\n a) Accompany the work with the complete corresponding\n machine-readable source code for the Library including whatever\n changes were used in the work (which must be distributed under\n Sections 1 and 2 above); and, if the work is an executable linked\n with the Library, with the complete machine-readable \"work that\n uses the Library\", as object code and/or source code, so that the\n user can modify the Library and then relink to produce a modified\n executable containing the modified Library. (It is understood\n that the user who changes the contents of definitions files in the\n Library will not necessarily be able to recompile the application\n to use the modified definitions.)\n\n b) Use a suitable shared library mechanism for linking with the\n Library. A suitable mechanism is one that (1) uses at run time a\n copy of the library already present on the user's computer system,\n rather than copying library functions into the executable, and (2)\n will operate properly with a modified version of the library, if\n the user installs one, as long as the modified version is\n interface-compatible with the version that the work was made with.\n\n c) Accompany the work with a written offer, valid for at\n least three years, to give the same user the materials\n specified in Subsection 6a, above, for a charge no more\n than the cost of performing this distribution.\n\n d) If distribution of the work is made by offering access to copy\n from a designated place, offer equivalent access to copy the above\n specified materials from the same place.\n\n e) Verify that the user has already received a copy of these\n materials or that you have already sent this user a copy.\n\n For an executable, the required form of the \"work that uses the\nLibrary\" must include any data and utility programs needed for\nreproducing the executable from it. However, as a special exception,\nthe materials to be distributed need not include anything that is\nnormally distributed (in either source or binary form) with the major\ncomponents (compiler, kernel, and so on) of the operating system on\nwhich the executable runs, unless that component itself accompanies\nthe executable.\n\n It may happen that this requirement contradicts the license\nrestrictions of other proprietary libraries that do not normally\naccompany the operating system. Such a contradiction means you cannot\nuse both them and the Library together in an executable that you\ndistribute.\n\f\n 7. You may place library facilities that are a work based on the\nLibrary side-by-side in a single library together with other library\nfacilities not covered by this License, and distribute such a combined\nlibrary, provided that the separate distribution of the work based on\nthe Library and of the other library facilities is otherwise\npermitted, and provided that you do these two things:\n\n a) Accompany the combined library with a copy of the same work\n based on the Library, uncombined with any other library\n facilities. This must be distributed under the terms of the\n Sections above.\n\n b) Give prominent notice with the combined library of the fact\n that part of it is a work based on the Library, and explaining\n where to find the accompanying uncombined form of the same work.\n\n 8. You may not copy, modify, sublicense, link with, or distribute\nthe Library except as expressly provided under this License. Any\nattempt otherwise to copy, modify, sublicense, link with, or\ndistribute the Library is void, and will automatically terminate your\nrights under this License. However, parties who have received copies,\nor rights, from you under this License will not have their licenses\nterminated so long as such parties remain in full compliance.\n\n 9. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Library or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Library (or any work based on the\nLibrary), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Library or works based on it.\n\n 10. Each time you redistribute the Library (or any work based on the\nLibrary), the recipient automatically receives a license from the\noriginal licensor to copy, distribute, link with or modify the Library\nsubject to these terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties with\nthis License.\n\f\n 11. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Library at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Library by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Library.\n\nIf any portion of this section is held invalid or unenforceable under any\nparticular circumstance, the balance of the section is intended to apply,\nand the section as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n 12. If the distribution and/or use of the Library is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Library under this License may add\nan explicit geographical distribution limitation excluding those countries,\nso that distribution is permitted only in or among countries not thus\nexcluded. In such case, this License incorporates the limitation as if\nwritten in the body of this License.\n\n 13. The Free Software Foundation may publish revised and/or new\nversions of the Lesser General Public License from time to time.\nSuch new versions will be similar in spirit to the present version,\nbut may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Library\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Library does not specify a\nlicense version number, you may choose any version ever published by\nthe Free Software Foundation.\n\f\n 14. If you wish to incorporate parts of the Library into other free\nprograms whose distribution conditions are incompatible with these,\nwrite to the author to ask for permission. For software which is\ncopyrighted by the Free Software Foundation, write to the Free\nSoftware Foundation; we sometimes make exceptions for this. Our\ndecision will be guided by the two goals of preserving the free status\nof all derivatives of our free software and of promoting the sharing\nand reuse of software generally.\n\n NO WARRANTY\n\n 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nLIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nLIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n END OF TERMS AND CONDITIONS\n\f\n How to Apply These Terms to Your New Libraries\n\n If you develop a new library, and you want it to be of the greatest\npossible use to the public, we recommend making it free software that\neveryone can redistribute and change. You can do so by permitting\nredistribution under these terms (or, alternatively, under the terms of the\nordinary General Public License).\n\n To apply these terms, attach the following notices to the library. It is\nsafest to attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least the\n\"copyright\" line and a pointer to where the full notice is found.\n\n <one line to give the library's name and a brief idea of what it does.>\n Copyright (C) <year> <name of author>\n\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\nAlso add information on how to contact you by electronic and paper mail.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the library, if\nnecessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright interest in the\n library `Frob' (a library for tweaking knobs) written by James Random Hacker.\n\n <signature of Ty Coon>, 1 April 1990\n Ty Coon, President of Vice\n\nThat's all there is to it!\n",
"License text": " GNU LESSER GENERAL PUBLIC LICENSE\n Version 2.1, February 1999\n\n Copyright (C) 1991, 1999 Free Software Foundation, Inc.\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n[This is the first released version of the Lesser GPL. It also counts\n as the successor of the GNU Library Public License, version 2, hence\n the version number 2.1.]\n\n Preamble\n\n The licenses for most software are designed to take away your\nfreedom to share and change it. By contrast, the GNU General Public\nLicenses are intended to guarantee your freedom to share and change\nfree software--to make sure the software is free for all its users.\n\n This license, the Lesser General Public License, applies to some\nspecially designated software packages--typically libraries--of the\nFree Software Foundation and other authors who decide to use it. You\ncan use it too, but we suggest you first think carefully about whether\nthis license or the ordinary General Public License is the better\nstrategy to use in any particular case, based on the explanations below.\n\n When we speak of free software, we are referring to freedom of use,\nnot price. Our General Public Licenses are designed to make sure that\nyou have the freedom to distribute copies of free software (and charge\nfor this service if you wish); that you receive source code or can get\nit if you want it; that you can change the software and use pieces of\nit in new free programs; and that you are informed that you can do\nthese things.\n\n To protect your rights, we need to make restrictions that forbid\ndistributors to deny you these rights or to ask you to surrender these\nrights. These restrictions translate to certain responsibilities for\nyou if you distribute copies of the library or if you modify it.\n\n For example, if you distribute copies of the library, whether gratis\nor for a fee, you must give the recipients all the rights that we gave\nyou. You must make sure that they, too, receive or can get the source\ncode. If you link other code with the library, you must provide\ncomplete object files to the recipients, so that they can relink them\nwith the library after making changes to the library and recompiling\nit. And you must show them these terms so they know their rights.\n\n We protect your rights with a two-step method: (1) we copyright the\nlibrary, and (2) we offer you this license, which gives you legal\npermission to copy, distribute and/or modify the library.\n\n To protect each distributor, we want to make it very clear that\nthere is no warranty for the free library. Also, if the library is\nmodified by someone else and passed on, the recipients should know\nthat what they have is not the original version, so that the original\nauthor's reputation will not be affected by problems that might be\nintroduced by others.\n\n Finally, software patents pose a constant threat to the existence of\nany free program. We wish to make sure that a company cannot\neffectively restrict the users of a free program by obtaining a\nrestrictive license from a patent holder. Therefore, we insist that\nany patent license obtained for a version of the library must be\nconsistent with the full freedom of use specified in this license.\n\n Most GNU software, including some libraries, is covered by the\nordinary GNU General Public License. This license, the GNU Lesser\nGeneral Public License, applies to certain designated libraries, and\nis quite different from the ordinary General Public License. We use\nthis license for certain libraries in order to permit linking those\nlibraries into non-free programs.\n\n When a program is linked with a library, whether statically or using\na shared library, the combination of the two is legally speaking a\ncombined work, a derivative of the original library. The ordinary\nGeneral Public License therefore permits such linking only if the\nentire combination fits its criteria of freedom. The Lesser General\nPublic License permits more lax criteria for linking other code with\nthe library.\n\n We call this license the \"Lesser\" General Public License because it\ndoes Less to protect the user's freedom than the ordinary General\nPublic License. It also provides other free software developers Less\nof an advantage over competing non-free programs. These disadvantages\nare the reason we use the ordinary General Public License for many\nlibraries. However, the Lesser license provides advantages in certain\nspecial circumstances.\n\n For example, on rare occasions, there may be a special need to\nencourage the widest possible use of a certain library, so that it becomes\na de-facto standard. To achieve this, non-free programs must be\nallowed to use the library. A more frequent case is that a free\nlibrary does the same job as widely used non-free libraries. In this\ncase, there is little to gain by limiting the free library to free\nsoftware only, so we use the Lesser General Public License.\n\n In other cases, permission to use a particular library in non-free\nprograms enables a greater number of people to use a large body of\nfree software. For example, permission to use the GNU C Library in\nnon-free programs enables many more people to use the whole GNU\noperating system, as well as its variant, the GNU/Linux operating\nsystem.\n\n Although the Lesser General Public License is Less protective of the\nusers' freedom, it does ensure that the user of a program that is\nlinked with the Library has the freedom and the wherewithal to run\nthat program using a modified version of the Library.\n\n The precise terms and conditions for copying, distribution and\nmodification follow. Pay close attention to the difference between a\n\"work based on the library\" and a \"work that uses the library\". The\nformer contains code derived from the library, whereas the latter must\nbe combined with the library in order to run.\n\n GNU LESSER GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License Agreement applies to any software library or other\nprogram which contains a notice placed by the copyright holder or\nother authorized party saying it may be distributed under the terms of\nthis Lesser General Public License (also called \"this License\").\nEach licensee is addressed as \"you\".\n\n A \"library\" means a collection of software functions and/or data\nprepared so as to be conveniently linked with application programs\n(which use some of those functions and data) to form executables.\n\n The \"Library\", below, refers to any such software library or work\nwhich has been distributed under these terms. A \"work based on the\nLibrary\" means either the Library or any derivative work under\ncopyright law: that is to say, a work containing the Library or a\nportion of it, either verbatim or with modifications and/or translated\nstraightforwardly into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".)\n\n \"Source code\" for a work means the preferred form of the work for\nmaking modifications to it. For a library, complete source code means\nall the source code for all modules it contains, plus any associated\ninterface definition files, plus the scripts used to control compilation\nand installation of the library.\n\n Activities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning a program using the Library is not restricted, and output from\nsuch a program is covered only if its contents constitute a work based\non the Library (independent of the use of the Library in a tool for\nwriting it). Whether that is true depends on what the Library does\nand what the program that uses the Library does.\n\n 1. You may copy and distribute verbatim copies of the Library's\ncomplete source code as you receive it, in any medium, provided that\nyou conspicuously and appropriately publish on each copy an\nappropriate copyright notice and disclaimer of warranty; keep intact\nall the notices that refer to this License and to the absence of any\nwarranty; and distribute a copy of this License along with the\nLibrary.\n\n You may charge a fee for the physical act of transferring a copy,\nand you may at your option offer warranty protection in exchange for a\nfee.\n\n 2. You may modify your copy or copies of the Library or any portion\nof it, thus forming a work based on the Library, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) The modified work must itself be a software library.\n\n b) You must cause the files modified to carry prominent notices\n stating that you changed the files and the date of any change.\n\n c) You must cause the whole of the work to be licensed at no\n charge to all third parties under the terms of this License.\n\n d) If a facility in the modified Library refers to a function or a\n table of data to be supplied by an application program that uses\n the facility, other than as an argument passed when the facility\n is invoked, then you must make a good faith effort to ensure that,\n in the event an application does not supply such function or\n table, the facility still operates, and performs whatever part of\n its purpose remains meaningful.\n\n (For example, a function in a library to compute square roots has\n a purpose that is entirely well-defined independent of the\n application. Therefore, Subsection 2d requires that any\n application-supplied function or table used by this function must\n be optional: if the application does not supply it, the square\n root function must still compute square roots.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Library,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Library, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Library.\n\nIn addition, mere aggregation of another work not based on the Library\nwith the Library (or with a work based on the Library) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n 3. You may opt to apply the terms of the ordinary GNU General Public\nLicense instead of this License to a given copy of the Library. To do\nthis, you must alter all the notices that refer to this License, so\nthat they refer to the ordinary GNU General Public License, version 2,\ninstead of to this License. (If a newer version than version 2 of the\nordinary GNU General Public License has appeared, then you can specify\nthat version instead if you wish.) Do not make any other change in\nthese notices.\n\n Once this change is made in a given copy, it is irreversible for\nthat copy, so the ordinary GNU General Public License applies to all\nsubsequent copies and derivative works made from that copy.\n\n This option is useful when you wish to copy part of the code of\nthe Library into a program that is not a library.\n\n 4. You may copy and distribute the Library (or a portion or\nderivative of it, under Section 2) in object code or executable form\nunder the terms of Sections 1 and 2 above provided that you accompany\nit with the complete corresponding machine-readable source code, which\nmust be distributed under the terms of Sections 1 and 2 above on a\nmedium customarily used for software interchange.\n\n If distribution of object code is made by offering access to copy\nfrom a designated place, then offering equivalent access to copy the\nsource code from the same place satisfies the requirement to\ndistribute the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n 5. A program that contains no derivative of any portion of the\nLibrary, but is designed to work with the Library by being compiled or\nlinked with it, is called a \"work that uses the Library\". Such a\nwork, in isolation, is not a derivative work of the Library, and\ntherefore falls outside the scope of this License.\n\n However, linking a \"work that uses the Library\" with the Library\ncreates an executable that is a derivative of the Library (because it\ncontains portions of the Library), rather than a \"work that uses the\nlibrary\". The executable is therefore covered by this License.\nSection 6 states terms for distribution of such executables.\n\n When a \"work that uses the Library\" uses material from a header file\nthat is part of the Library, the object code for the work may be a\nderivative work of the Library even though the source code is not.\nWhether this is true is especially significant if the work can be\nlinked without the Library, or if the work is itself a library. The\nthreshold for this to be true is not precisely defined by law.\n\n If such an object file uses only numerical parameters, data\nstructure layouts and accessors, and small macros and small inline\nfunctions (ten lines or less in length), then the use of the object\nfile is unrestricted, regardless of whether it is legally a derivative\nwork. (Executables containing this object code plus portions of the\nLibrary will still fall under Section 6.)\n\n Otherwise, if the work is a derivative of the Library, you may\ndistribute the object code for the work under the terms of Section 6.\nAny executables containing that work also fall under Section 6,\nwhether or not they are linked directly with the Library itself.\n\n 6. As an exception to the Sections above, you may also combine or\nlink a \"work that uses the Library\" with the Library to produce a\nwork containing portions of the Library, and distribute that work\nunder terms of your choice, provided that the terms permit\nmodification of the work for the customer's own use and reverse\nengineering for debugging such modifications.\n\n You must give prominent notice with each copy of the work that the\nLibrary is used in it and that the Library and its use are covered by\nthis License. You must supply a copy of this License. If the work\nduring execution displays copyright notices, you must include the\ncopyright notice for the Library among them, as well as a reference\ndirecting the user to the copy of this License. Also, you must do one\nof these things:\n\n a) Accompany the work with the complete corresponding\n machine-readable source code for the Library including whatever\n changes were used in the work (which must be distributed under\n Sections 1 and 2 above); and, if the work is an executable linked\n with the Library, with the complete machine-readable \"work that\n uses the Library\", as object code and/or source code, so that the\n user can modify the Library and then relink to produce a modified\n executable containing the modified Library. (It is understood\n that the user who changes the contents of definitions files in the\n Library will not necessarily be able to recompile the application\n to use the modified definitions.)\n\n b) Use a suitable shared library mechanism for linking with the\n Library. A suitable mechanism is one that (1) uses at run time a\n copy of the library already present on the user's computer system,\n rather than copying library functions into the executable, and (2)\n will operate properly with a modified version of the library, if\n the user installs one, as long as the modified version is\n interface-compatible with the version that the work was made with.\n\n c) Accompany the work with a written offer, valid for at\n least three years, to give the same user the materials\n specified in Subsection 6a, above, for a charge no more\n than the cost of performing this distribution.\n\n d) If distribution of the work is made by offering access to copy\n from a designated place, offer equivalent access to copy the above\n specified materials from the same place.\n\n e) Verify that the user has already received a copy of these\n materials or that you have already sent this user a copy.\n\n For an executable, the required form of the \"work that uses the\nLibrary\" must include any data and utility programs needed for\nreproducing the executable from it. However, as a special exception,\nthe materials to be distributed need not include anything that is\nnormally distributed (in either source or binary form) with the major\ncomponents (compiler, kernel, and so on) of the operating system on\nwhich the executable runs, unless that component itself accompanies\nthe executable.\n\n It may happen that this requirement contradicts the license\nrestrictions of other proprietary libraries that do not normally\naccompany the operating system. Such a contradiction means you cannot\nuse both them and the Library together in an executable that you\ndistribute.\n\n 7. You may place library facilities that are a work based on the\nLibrary side-by-side in a single library together with other library\nfacilities not covered by this License, and distribute such a combined\nlibrary, provided that the separate distribution of the work based on\nthe Library and of the other library facilities is otherwise\npermitted, and provided that you do these two things:\n\n a) Accompany the combined library with a copy of the same work\n based on the Library, uncombined with any other library\n facilities. This must be distributed under the terms of the\n Sections above.\n\n b) Give prominent notice with the combined library of the fact\n that part of it is a work based on the Library, and explaining\n where to find the accompanying uncombined form of the same work.\n\n 8. You may not copy, modify, sublicense, link with, or distribute\nthe Library except as expressly provided under this License. Any\nattempt otherwise to copy, modify, sublicense, link with, or\ndistribute the Library is void, and will automatically terminate your\nrights under this License. However, parties who have received copies,\nor rights, from you under this License will not have their licenses\nterminated so long as such parties remain in full compliance.\n\n 9. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Library or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Library (or any work based on the\nLibrary), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Library or works based on it.\n\n 10. Each time you redistribute the Library (or any work based on the\nLibrary), the recipient automatically receives a license from the\noriginal licensor to copy, distribute, link with or modify the Library\nsubject to these terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties with\nthis License.\n\n 11. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Library at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Library by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Library.\n\nIf any portion of this section is held invalid or unenforceable under any\nparticular circumstance, the balance of the section is intended to apply,\nand the section as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n 12. If the distribution and/or use of the Library is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Library under this License may add\nan explicit geographical distribution limitation excluding those countries,\nso that distribution is permitted only in or among countries not thus\nexcluded. In such case, this License incorporates the limitation as if\nwritten in the body of this License.\n\n 13. The Free Software Foundation may publish revised and/or new\nversions of the Lesser General Public License from time to time.\nSuch new versions will be similar in spirit to the present version,\nbut may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Library\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Library does not specify a\nlicense version number, you may choose any version ever published by\nthe Free Software Foundation.\n\n 14. If you wish to incorporate parts of the Library into other free\nprograms whose distribution conditions are incompatible with these,\nwrite to the author to ask for permission. For software which is\ncopyrighted by the Free Software Foundation, write to the Free\nSoftware Foundation; we sometimes make exceptions for this. Our\ndecision will be guided by the two goals of preserving the free status\nof all derivatives of our free software and of promoting the sharing\nand reuse of software generally.\n\n NO WARRANTY\n\n 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nLIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nLIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Libraries\n\n If you develop a new library, and you want it to be of the greatest\npossible use to the public, we recommend making it free software that\neveryone can redistribute and change. You can do so by permitting\nredistribution under these terms (or, alternatively, under the terms of the\nordinary General Public License).\n\n To apply these terms, attach the following notices to the library. It is\nsafest to attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least the\n\"copyright\" line and a pointer to where the full notice is found.\n\n <one line to give the library's name and a brief idea of what it does.>\n Copyright (C) <year> <name of author>\n\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301\n USA\n\nAlso add information on how to contact you by electronic and paper mail.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the library, if\nnecessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright interest in the\n library `Frob' (a library for tweaking knobs) written by James Random\n Hacker.\n\n <signature of Ty Coon>, 1 April 1990\n Ty Coon, President of Vice\n\nThat's all there is to it!\n"
},
{
"Name": "charset-normalizer",
"Version": "2.0.12",
"Summary": "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet.",
"Home-page": "https://github.com/ousret/charset_normalizer",
"Author": "Ahmed TAHRI @Ousret",
"License": "MIT License",
"License URL": "https://api.github.com/repos/ousret/charset_normalizer/license",
"License repo": "MIT License\n\nCopyright (c) 2019 TAHRI Ahmed R.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "colorama",
"Version": "0.4.4",
"Summary": "Cross-platform colored terminal text.",
"Home-page": "https://github.com/tartley/colorama",
"Author": "Jonathan Hartley",
"License": "BSD 3-Clause \"New\" or \"Revised\" License",
"License URL": "https://api.github.com/repos/tartley/colorama/license",
"License repo": "Copyright (c) 2010 Jonathan Hartley\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the copyright holders, nor those of its contributors\n may be used to endorse or promote products derived from this software without\n specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n",
"License text": "BSD 3-Clause License\n\nCopyright (c) [year], [fullname]\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n3. Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
},
{
"Name": "cryptography",
"Version": "37.0.2",
"Summary": "cryptography is a package which provides cryptographic recipes and primitives to Python developers.",
"Home-page": "https://github.com/pyca/cryptography",
"Author": "The Python Cryptographic Authority and individual contributors",
"License": "Other",
"License URL": "https://api.github.com/repos/pyca/cryptography/license",
"License repo": "This software is made available under the terms of *either* of the licenses\nfound in LICENSE.APACHE or LICENSE.BSD. Contributions to cryptography are made\nunder the terms of *both* these licenses.\n\nThe code used in the OS random engine is derived from CPython, and is licensed\nunder the terms of the PSF License Agreement.\n"
},
{
"Name": "Deprecated",
"Version": "1.2.13",
"Summary": "Python @deprecated decorator to deprecate old python classes, functions or methods.",
"Home-page": "https://github.com/tantale/deprecated",
"Author": "Laurent LAPORTE",
"License": "MIT License",
"License URL": "https://api.github.com/repos/tantale/deprecated/license",
"License repo": "The MIT License (MIT)\n\nCopyright (c) 2017 Laurent LAPORTE\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "Antergos Linux",
"Version": "2015.10 (ISO-Rolling)",
"Summary": "Distro - an OS platform information API",
"Home-page": "https://github.com/python-distro/distro",
"Author": "Nir Cohen",
"License": "Apache License 2.0",
"License URL": "https://api.github.com/repos/python-distro/distro/license",
"License repo": "Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright {yyyy} {name of copyright owner}\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n",
"License text": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
},
{
"Name": "fabric",
"Version": "2.7.0",
"Summary": "High level SSH command execution",
"Home-page": "https://fabfile.org",
"Author": "Jeff Forcier",
"License": "BSD"
},
{
"Name": "humanfriendly",
"Version": "10.0",
"Summary": "Human friendly output for text interfaces using Python",
"Home-page": "https://humanfriendly.readthedocs.io",
"Author": "Peter Odding",
"License": "MIT"
},
{
"Name": "idna",
"Version": "3.3",
"Summary": "Internationalized Domain Names in Applications (IDNA)",
"Home-page": "https://github.com/kjd/idna",
"Author": "Kim Davies",
"License": "BSD 3-Clause \"New\" or \"Revised\" License",
"License URL": "https://api.github.com/repos/kjd/idna/license",
"License repo": "BSD 3-Clause License\n\nCopyright (c) 2013-2021, Kim Davies\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n3. Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n",
"License text": "BSD 3-Clause License\n\nCopyright (c) [year], [fullname]\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n3. Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
},
{
"Name": "invoke",
"Version": "1.7.1",
"Summary": "Pythonic task execution",
"Home-page": "https://pyinvoke.org",
"Author": "Jeff Forcier",
"License": "BSD"
},
{
"Name": "isodate",
"Version": "0.6.1",
"Summary": "An ISO 8601 date/time/duration parser and formatter",
"Home-page": "https://github.com/gweis/isodate/",
"Author": "Gerhard Weis",
"License": "BSD 3-Clause \"New\" or \"Revised\" License",
"License URL": "https://api.github.com/repos/gweis/isodate/license",
"License repo": "Copyright (c) 2021, Hugo van Kemenade and contributors\nCopyright (c) 2009-2018, Gerhard Weis and contributors\nCopyright (c) 2009, Gerhard Weis\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the <organization> nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n",
"License text": "BSD 3-Clause License\n\nCopyright (c) [year], [fullname]\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n3. Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
},
{
"Name": "javaproperties",
"Version": "0.5.2",
"Summary": "Read & write Java .properties files",
"Home-page": "https://github.com/jwodder/javaproperties",
"Author": "John Thorvald Wodder II",
"License": "MIT License",
"License URL": "https://api.github.com/repos/jwodder/javaproperties/license",
"License repo": "The MIT License (MIT)\n\nCopyright (c) 2016-2021 John Thorvald Wodder II\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "Jinja2",
"Version": "3.1.2",
"Summary": "A very fast and expressive template engine.",
"Home-page": "https://palletsprojects.com/p/jinja/",
"Author": "Armin Ronacher",
"License": "BSD-3-Clause"
},
{
"Name": "jmespath",
"Version": "1.0.0",
"Summary": "JSON Matching Expressions",
"Home-page": "https://github.com/jmespath/jmespath.py",
"Author": "James Saryerwinnie",
"License": "Other",
"License URL": "https://api.github.com/repos/jmespath/jmespath.py/license",
"License repo": "Copyright (c) 2013 Amazon.com, Inc. or its affiliates. All Rights Reserved\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish, dis-\ntribute, sublicense, and/or sell copies of the Software, and to permit\npersons to whom the Software is furnished to do so, subject to the fol-\nlowing conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-\nITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT\nSHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n"
},
{
"Name": "jsondiff",
"Version": "1.3.1",
"Summary": "Diff JSON and JSON-like structures in Python",
"Home-page": "https://github.com/ZoomerAnalytics/jsondiff",
"Author": "Zoomer Analytics LLC",
"License": "MIT License",
"License URL": "https://api.github.com/repos/zoomeranalytics/jsondiff/license",
"License repo": "The MIT License (MIT)\n\nCopyright (c) 2015 Zoomer Analytics LLC\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "jsonschema",
"Version": "4.5.1",
"Summary": "An implementation of JSON Schema validation for Python",
"Home-page": "https://github.com/python-jsonschema/jsonschema",
"Author": "Julian Berman",
"License": "MIT License",
"License URL": "https://api.github.com/repos/python-jsonschema/jsonschema/license",
"License repo": "Copyright (c) 2013 Julian Berman\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "knack",
"Version": "0.9.0",
"Summary": "A Command-Line Interface framework",
"Home-page": "https://github.com/microsoft/knack",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/microsoft/knack/license",
"License repo": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "MarkupSafe",
"Version": "2.1.1",
"Summary": "Safely add untrusted strings to HTML/XML markup.",
"Home-page": "https://palletsprojects.com/p/markupsafe/",
"Author": "Armin Ronacher",
"License": "BSD-3-Clause"
},
{
"Name": "msal-extensions",
"Version": "0.3.1",
"Summary": "UNKNOWN",
"Home-page": "UNKNOWN",
"Author": "",
"License": "MIT"
},
{
"Name": "msal",
"Version": "1.17.0",
"Summary": "The Microsoft Authentication Library (MSAL) for Python library enables your app to access the Microsoft Cloud by supporting authentication of users with Microsoft Azure Active Directory accounts (AAD) and Microsoft Accounts (MSA) using industry standard OAuth2 and OpenID Connect.",
"Home-page": "https://github.com/AzureAD/microsoft-authentication-library-for-python",
"Author": "Microsoft Corporation",
"License": "Other",
"License URL": "https://api.github.com/repos/azuread/microsoft-authentication-library-for-python/license",
"License repo": "The MIT License (MIT)\n\nCopyright (c) Microsoft Corporation. \nAll rights reserved.\n\nThis code is licensed under the MIT License.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files(the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and / or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions :\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE."
},
{
"Name": "msrest",
"Version": "0.6.21",
"Summary": "AutoRest swagger generator Python client runtime.",
"Home-page": "https://github.com/Azure/msrest-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/msrest-for-python/license",
"License repo": "MIT License\n\nCopyright (c) 2016 Microsoft Azure\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "msrestazure",
"Version": "0.6.4",
"Summary": "AutoRest swagger generator Python client runtime. Azure-specific module.",
"Home-page": "https://github.com/Azure/msrestazure-for-python",
"Author": "Microsoft Corporation",
"License": "MIT License",
"License URL": "https://api.github.com/repos/azure/msrestazure-for-python/license",
"License repo": "MIT License\n\nCopyright (c) 2016 Microsoft Azure\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "oauthlib",
"Version": "3.2.0",
"Summary": "A generic, spec-compliant, thorough implementation of the OAuth request-signing logic",
"Home-page": "https://github.com/oauthlib/oauthlib",
"Author": "The OAuthlib Community",
"License": "BSD 3-Clause \"New\" or \"Revised\" License",
"License URL": "https://api.github.com/repos/oauthlib/oauthlib/license",
"License repo": "Copyright (c) 2019 The OAuthlib Community\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n 1. Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n\n 2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\n 3. Neither the name of this project nor the names of its contributors may\n be used to endorse or promote products derived from this software without\n specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n",
"License text": "BSD 3-Clause License\n\nCopyright (c) [year], [fullname]\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n3. Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
},
{
"Name": "packaging",
"Version": "20.9",
"Summary": "Core utilities for Python packages",
"Home-page": "https://github.com/pypa/packaging",
"Author": "Donald Stufft and individual contributors",
"License": "Other",
"License URL": "https://api.github.com/repos/pypa/packaging/license",
"License repo": "This software is made available under the terms of *either* of the licenses\nfound in LICENSE.APACHE or LICENSE.BSD. Contributions to this software is made\nunder the terms of *both* these licenses.\n"
},
{
"Name": "paramiko",
"Version": "2.11.0",
"Summary": "SSH2 protocol library",
"Home-page": "https://paramiko.org",
"Author": "Jeff Forcier",
"License": "LGPL"
},
{
"Name": "pathlib2",
"Version": "2.3.7.post1",
"Summary": "Object-oriented filesystem paths",
"Home-page": "https://github.com/jazzband/pathlib2",
"Author": "Matthias C. M. Troffaes",
"License": "MIT License",
"License URL": "https://api.github.com/repos/jazzband/pathlib2/license",
"License repo": "The MIT License (MIT)\n\nCopyright (c) 2014-2017 Matthias C. M. Troffaes\nCopyright (c) 2012-2014 Antoine Pitrou and contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "pkginfo",
"Version": "1.8.2",
"Summary": "Query metadatdata from sdists / bdists / installed packages.",
"Home-page": "https://code.launchpad.net/~tseaver/pkginfo/trunk",
"Author": "Tres Seaver, Agendaless Consulting",
"License": "MIT"
},
{
"Name": "portalocker",
"Version": "1.7.1",
"Summary": "Wraps the portalocker recipe for easy usage",
"Home-page": "https://github.com/WoLpH/portalocker",
"Author": "Rick van Hattem",
"License": "Other",
"License URL": "https://api.github.com/repos/wolph/portalocker/license",
"License repo": "PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2\n--------------------------------------------\n\n1. This LICENSE AGREEMENT is between the Python Software Foundation\n(\"PSF\"), and the Individual or Organization (\"Licensee\") accessing and\notherwise using this software (\"Python\") in source or binary form and\nits associated documentation.\n\n2. Subject to the terms and conditions of this License Agreement, PSF hereby\ngrants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,\nanalyze, test, perform and/or display publicly, prepare derivative works,\ndistribute, and otherwise use Python alone or in any derivative version,\nprovided, however, that PSF's License Agreement and PSF's notice of copyright,\ni.e., \"Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010\nPython Software Foundation; All Rights Reserved\" are retained in Python alone or\nin any derivative version prepared by Licensee.\n\n3. In the event Licensee prepares a derivative work that is based on\nor incorporates Python or any part thereof, and wants to make\nthe derivative work available to others as provided herein, then\nLicensee hereby agrees to include in any such work a brief summary of\nthe changes made to Python.\n\n4. PSF is making Python available to Licensee on an \"AS IS\"\nbasis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR\nIMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND\nDISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS\nFOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT\nINFRINGE ANY THIRD PARTY RIGHTS.\n\n5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON\nFOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS\nA RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,\nOR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\n6. This License Agreement will automatically terminate upon a material\nbreach of its terms and conditions.\n\n7. Nothing in this License Agreement shall be deemed to create any\nrelationship of agency, partnership, or joint venture between PSF and\nLicensee. This License Agreement does not grant permission to use PSF\ntrademarks or trade name in a trademark sense to endorse or promote\nproducts or services of Licensee, or any third party.\n\n8. By copying, installing or otherwise using Python, Licensee\nagrees to be bound by the terms and conditions of this License\nAgreement.\n\n"
},
{
"Name": "psutil",
"Version": "5.9.1",
"Summary": "Cross-platform lib for process and system monitoring in Python.",
"Home-page": "https://github.com/giampaolo/psutil",
"Author": "Giampaolo Rodola",
"License": "BSD 3-Clause \"New\" or \"Revised\" License",
"License URL": "https://api.github.com/repos/giampaolo/psutil/license",
"License repo": "BSD 3-Clause License\n\nCopyright (c) 2009, Jay Loden, Dave Daeschler, Giampaolo Rodola'\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n * Neither the name of the psutil authors nor the names of its contributors\n may be used to endorse or promote products derived from this software without\n specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n",
"License text": "BSD 3-Clause License\n\nCopyright (c) [year], [fullname]\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n3. Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
},
{
"Name": "pycparser",
"Version": "2.21",
"Summary": "C parser in Python",
"Home-page": "https://github.com/eliben/pycparser",
"Author": "Eli Bendersky",
"License": "Other",
"License URL": "https://api.github.com/repos/eliben/pycparser/license",
"License repo": "pycparser -- A C parser in Python\n\nCopyright (c) 2008-2020, Eli Bendersky\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this \n list of conditions and the following disclaimer.\n* Redistributions in binary form must reproduce the above copyright notice, \n this list of conditions and the following disclaimer in the documentation \n and/or other materials provided with the distribution.\n* Neither the name of Eli Bendersky nor the names of its contributors may \n be used to endorse or promote products derived from this software without \n specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND \nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED \nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE \nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE \nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR \nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE \nGOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) \nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT \nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT \nOF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
},
{
"Name": "PyGithub",
"Version": "1.55",
"Summary": "Use the full Github API v3",
"Home-page": "https://github.com/pygithub/pygithub",
"Author": "Vincent Jacques",
"License": "GNU Lesser General Public License v3.0",
"License URL": "https://api.github.com/repos/pygithub/pygithub/license",
"License repo": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n <one line to give the program's name and a brief idea of what it does.>\n Copyright (C) <year> <name of author>\n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n <program> Copyright (C) <year> <name of author>\n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n<http://www.gnu.org/licenses/>.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n<http://www.gnu.org/philosophy/why-not-lgpl.html>.\n",
"License text": " GNU LESSER GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n\n This version of the GNU Lesser General Public License incorporates\nthe terms and conditions of version 3 of the GNU General Public\nLicense, supplemented by the additional permissions listed below.\n\n 0. Additional Definitions.\n\n As used herein, \"this License\" refers to version 3 of the GNU Lesser\nGeneral Public License, and the \"GNU GPL\" refers to version 3 of the GNU\nGeneral Public License.\n\n \"The Library\" refers to a covered work governed by this License,\nother than an Application or a Combined Work as defined below.\n\n An \"Application\" is any work that makes use of an interface provided\nby the Library, but which is not otherwise based on the Library.\nDefining a subclass of a class defined by the Library is deemed a mode\nof using an interface provided by the Library.\n\n A \"Combined Work\" is a work produced by combining or linking an\nApplication with the Library. The particular version of the Library\nwith which the Combined Work was made is also called the \"Linked\nVersion\".\n\n The \"Minimal Corresponding Source\" for a Combined Work means the\nCorresponding Source for the Combined Work, excluding any source code\nfor portions of the Combined Work that, considered in isolation, are\nbased on the Application, and not on the Linked Version.\n\n The \"Corresponding Application Code\" for a Combined Work means the\nobject code and/or source code for the Application, including any data\nand utility programs needed for reproducing the Combined Work from the\nApplication, but excluding the System Libraries of the Combined Work.\n\n 1. Exception to Section 3 of the GNU GPL.\n\n You may convey a covered work under sections 3 and 4 of this License\nwithout being bound by section 3 of the GNU GPL.\n\n 2. Conveying Modified Versions.\n\n If you modify a copy of the Library, and, in your modifications, a\nfacility refers to a function or data to be supplied by an Application\nthat uses the facility (other than as an argument passed when the\nfacility is invoked), then you may convey a copy of the modified\nversion:\n\n a) under this License, provided that you make a good faith effort to\n ensure that, in the event an Application does not supply the\n function or data, the facility still operates, and performs\n whatever part of its purpose remains meaningful, or\n\n b) under the GNU GPL, with none of the additional permissions of\n this License applicable to that copy.\n\n 3. Object Code Incorporating Material from Library Header Files.\n\n The object code form of an Application may incorporate material from\na header file that is part of the Library. You may convey such object\ncode under terms of your choice, provided that, if the incorporated\nmaterial is not limited to numerical parameters, data structure\nlayouts and accessors, or small macros, inline functions and templates\n(ten or fewer lines in length), you do both of the following:\n\n a) Give prominent notice with each copy of the object code that the\n Library is used in it and that the Library and its use are\n covered by this License.\n\n b) Accompany the object code with a copy of the GNU GPL and this license\n document.\n\n 4. Combined Works.\n\n You may convey a Combined Work under terms of your choice that,\ntaken together, effectively do not restrict modification of the\nportions of the Library contained in the Combined Work and reverse\nengineering for debugging such modifications, if you also do each of\nthe following:\n\n a) Give prominent notice with each copy of the Combined Work that\n the Library is used in it and that the Library and its use are\n covered by this License.\n\n b) Accompany the Combined Work with a copy of the GNU GPL and this license\n document.\n\n c) For a Combined Work that displays copyright notices during\n execution, include the copyright notice for the Library among\n these notices, as well as a reference directing the user to the\n copies of the GNU GPL and this license document.\n\n d) Do one of the following:\n\n 0) Convey the Minimal Corresponding Source under the terms of this\n License, and the Corresponding Application Code in a form\n suitable for, and under terms that permit, the user to\n recombine or relink the Application with a modified version of\n the Linked Version to produce a modified Combined Work, in the\n manner specified by section 6 of the GNU GPL for conveying\n Corresponding Source.\n\n 1) Use a suitable shared library mechanism for linking with the\n Library. A suitable mechanism is one that (a) uses at run time\n a copy of the Library already present on the user's computer\n system, and (b) will operate properly with a modified version\n of the Library that is interface-compatible with the Linked\n Version.\n\n e) Provide Installation Information, but only if you would otherwise\n be required to provide such information under section 6 of the\n GNU GPL, and only to the extent that such information is\n necessary to install and execute a modified version of the\n Combined Work produced by recombining or relinking the\n Application with a modified version of the Linked Version. (If\n you use option 4d0, the Installation Information must accompany\n the Minimal Corresponding Source and Corresponding Application\n Code. If you use option 4d1, you must provide the Installation\n Information in the manner specified by section 6 of the GNU GPL\n for conveying Corresponding Source.)\n\n 5. Combined Libraries.\n\n You may place library facilities that are a work based on the\nLibrary side by side in a single library together with other library\nfacilities that are not Applications and are not covered by this\nLicense, and convey such a combined library under terms of your\nchoice, if you do both of the following:\n\n a) Accompany the combined library with a copy of the same work based\n on the Library, uncombined with any other library facilities,\n conveyed under the terms of this License.\n\n b) Give prominent notice with the combined library that part of it\n is a work based on the Library, and explaining where to find the\n accompanying uncombined form of the same work.\n\n 6. Revised Versions of the GNU Lesser General Public License.\n\n The Free Software Foundation may publish revised and/or new versions\nof the GNU Lesser General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nLibrary as you received it specifies that a certain numbered version\nof the GNU Lesser General Public License \"or any later version\"\napplies to it, you have the option of following the terms and\nconditions either of that published version or of any later version\npublished by the Free Software Foundation. If the Library as you\nreceived it does not specify a version number of the GNU Lesser\nGeneral Public License, you may choose any version of the GNU Lesser\nGeneral Public License ever published by the Free Software Foundation.\n\n If the Library as you received it specifies that a proxy can decide\nwhether future versions of the GNU Lesser General Public License shall\napply, that proxy's public statement of acceptance of any version is\npermanent authorization for you to choose that version for the\nLibrary.\n"
},
{
"Name": "Pygments",
"Version": "2.12.0",
"Summary": "Pygments is a syntax highlighting package written in Python.",
"Home-page": "https://pygments.org/",
"Author": "Georg Brandl",
"License": "BSD License"
},
{
"Name": "PyJWT",
"Version": "2.4.0",
"Summary": "JSON Web Token implementation in Python",
"Home-page": "https://github.com/jpadilla/pyjwt",
"Author": "Jose Padilla",
"License": "MIT License",
"License URL": "https://api.github.com/repos/jpadilla/pyjwt/license",
"License repo": "The MIT License (MIT)\n\nCopyright (c) 2015-2022 Jos\u00e9 Padilla\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "PyNaCl",
"Version": "1.4.0",
"Summary": "Python binding to the Networking and Cryptography (NaCl) library",
"Home-page": "https://github.com/pyca/pynacl/",
"Author": "The PyNaCl developers",
"License": "Apache License 2.0",
"License URL": "https://api.github.com/repos/pyca/pynacl/license",
"License repo": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n",
"License text": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
},
{
"Name": "pyOpenSSL",
"Version": "22.0.0",
"Summary": "Python wrapper module around the OpenSSL library",
"Home-page": "https://pyopenssl.org/",
"Author": "The pyOpenSSL developers",
"License": "Apache License, Version 2.0"
},
{
"Name": "pyparsing",
"Version": "3.0.9",
"Summary": "pyparsing module - Classes and methods to define and execute parsing grammars",
"Home-page": "",
"Author": "",
"License": ""
},
{
"Name": "pyrsistent",
"Version": "0.18.1",
"Summary": "Persistent/Functional/Immutable data structures",
"Home-page": "http://github.com/tobgu/pyrsistent/",
"Author": "Tobias Gustafsson",
"License": "MIT License",
"License URL": "https://api.github.com/repos/tobgu/pyrsistent/license",
"License repo": "Copyright (c) 2022 Tobias Gustafsson\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "PySocks",
"Version": "1.7.1",
"Summary": "A Python SOCKS client module. See https://github.com/Anorov/PySocks for more information.",
"Home-page": "https://github.com/Anorov/PySocks",
"Author": "Anorov",
"License": "Other",
"License URL": "https://api.github.com/repos/anorov/pysocks/license",
"License repo": "Copyright 2006 Dan-Haim. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n3. Neither the name of Dan Haim nor the names of his contributors may be used\n to endorse or promote products derived from this software without specific\n prior written permission.\n \nTHIS SOFTWARE IS PROVIDED BY DAN HAIM \"AS IS\" AND ANY EXPRESS OR IMPLIED\nWARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO\nEVENT SHALL DAN HAIM OR HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA\nOR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT\nOF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMANGE.\n"
},
{
"Name": "python-dateutil",
"Version": "2.8.2",
"Summary": "Extensions to the standard Python datetime module",
"Home-page": "https://github.com/dateutil/dateutil",
"Author": "Gustavo Niemeyer",
"License": "Other",
"License URL": "https://api.github.com/repos/dateutil/dateutil/license",
"License repo": "Copyright 2017- Paul Ganssle <paul@ganssle.io>\nCopyright 2017- dateutil contributors (see AUTHORS file)\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\nThe above license applies to all contributions after 2017-12-01, as well as\nall contributions that have been re-licensed (see AUTHORS file for the list of\ncontributors who have re-licensed their code).\n--------------------------------------------------------------------------------\ndateutil - Extensions to the standard Python datetime module.\n\nCopyright (c) 2003-2011 - Gustavo Niemeyer <gustavo@niemeyer.net>\nCopyright (c) 2012-2014 - Tomi Pievil\u00e4inen <tomi.pievilainen@iki.fi>\nCopyright (c) 2014-2016 - Yaron de Leeuw <me@jarondl.net>\nCopyright (c) 2015- - Paul Ganssle <paul@ganssle.io>\nCopyright (c) 2015- - dateutil contributors (see AUTHORS file)\n\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nThe above BSD License Applies to all code, even that also covered by Apache 2.0."
},
{
"Name": "python-json-logger",
"Version": "2.0.2",
"Summary": "A python library adding a json log formatter",
"Home-page": "http://github.com/madzak/python-json-logger",
"Author": "Zakaria Zajac",
"License": "BSD 2-Clause \"Simplified\" License",
"License URL": "https://api.github.com/repos/madzak/python-json-logger/license",
"License repo": "Copyright (c) 2011, Zakaria Zajac \nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n",
"License text": "BSD 2-Clause License\n\nCopyright (c) [year], [fullname]\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
},
{
"Name": "PyYAML",
"Version": "6.0",
"Summary": "YAML parser and emitter for Python",
"Home-page": "https://pyyaml.org/",
"Author": "Kirill Simonov",
"License": "MIT"
},
{
"Name": "requests-oauthlib",
"Version": "1.3.1",
"Summary": "OAuthlib authentication support for Requests.",
"Home-page": "https://github.com/requests/requests-oauthlib",
"Author": "Kenneth Reitz",
"License": "ISC License",
"License URL": "https://api.github.com/repos/requests/requests-oauthlib/license",
"License repo": "ISC License\n\nCopyright (c) 2014 Kenneth Reitz.\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n",
"License text": "ISC License\n\nCopyright (c) [year], [fullname]\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n"
},
{
"Name": "requests",
"Version": "2.27.1",
"Summary": "Python HTTP for Humans.",
"Home-page": "https://requests.readthedocs.io",
"Author": "Kenneth Reitz",
"License": "Apache 2.0"
},
{
"Name": "resolvelib",
"Version": "0.5.5",
"Summary": "Resolve abstract dependencies into concrete ones",
"Home-page": "https://github.com/sarugaku/resolvelib",
"Author": "Tzu-ping Chung",
"License": "ISC License",
"License URL": "https://api.github.com/repos/sarugaku/resolvelib/license",
"License repo": "Copyright (c) 2018, Tzu-ping Chung <uranusjr@gmail.com>\n\nPermission to use, copy, modify, and distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n",
"License text": "ISC License\n\nCopyright (c) [year], [fullname]\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n"
},
{
"Name": "ruamel.yaml.clib",
"Version": "0.2.6",
"Summary": "C version of reader, parser and emitter for ruamel.yaml derived from libyaml",
"Home-page": "https://sourceforge.net/p/ruamel-yaml-clib/code/ci/default/tree",
"Author": "Anthon van der Neut",
"License": "MIT"
},
{
"Name": "ruamel.yaml",
"Version": "0.17.21",
"Summary": "ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order",
"Home-page": "https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree",
"Author": "Anthon van der Neut",
"License": "MIT license"
},
{
"Name": "s3transfer",
"Version": "0.5.2",
"Summary": "An Amazon S3 Transfer Manager",
"Home-page": "https://github.com/boto/s3transfer",
"Author": "Amazon Web Services",
"License": "Apache License 2.0",
"License URL": "https://api.github.com/repos/boto/s3transfer/license",
"License repo": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n",
"License text": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n"
},
{
"Name": "scp",
"Version": "0.13.6",
"Summary": "scp module for paramiko",
"Home-page": "https://github.com/jbardin/scp.py",
"Author": "James Bardin",
"License": "Other",
"License URL": "https://api.github.com/repos/jbardin/scp.py/license",
"License repo": "# This library is free software; you can redistribute it and/or\n# modify it under the terms of the GNU Lesser General Public\n# License as published by the Free Software Foundation; either\n# version 2.1 of the License, or (at your option) any later version.\n#\n# This library is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n# Lesser General Public License for more details.\n#\n# You should have received a copy of the GNU Lesser General Public\n# License along with this library; if not, write to the Free Software\n# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\n"
},
{
"Name": "semver",
"Version": "2.13.0",
"Summary": "Python helper for Semantic Versioning (http://semver.org/)",
"Home-page": "https://github.com/python-semver/python-semver",
"Author": "Kostiantyn Rybnikov",
"License": "BSD 3-Clause \"New\" or \"Revised\" License",
"License URL": "https://api.github.com/repos/python-semver/python-semver/license",
"License repo": "Copyright (c) 2013, Konstantine Rybnikov\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n Redistributions in binary form must reproduce the above copyright notice, this\n list of conditions and the following disclaimer in the documentation and/or\n other materials provided with the distribution.\n\n Neither the name of the {organization} nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n",
"License text": "BSD 3-Clause License\n\nCopyright (c) [year], [fullname]\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n3. Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
},
{
"Name": "six",
"Version": "1.16.0",
"Summary": "Python 2 and 3 compatibility utilities",
"Home-page": "https://github.com/benjaminp/six",
"Author": "Benjamin Peterson",
"License": "MIT License",
"License URL": "https://api.github.com/repos/benjaminp/six/license",
"License repo": "Copyright (c) 2010-2020 Benjamin Peterson\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "sshtunnel",
"Version": "0.1.5",
"Summary": "Pure python SSH tunnels",
"Home-page": "https://github.com/pahaz/sshtunnel",
"Author": "Pahaz Blinov",
"License": "MIT License",
"License URL": "https://api.github.com/repos/pahaz/sshtunnel/license",
"License repo": "Copyright (c) 2014-2019 Pahaz White\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "tabulate",
"Version": "0.8.9",
"Summary": "Pretty-print tabular data",
"Home-page": "https://github.com/astanin/python-tabulate",
"Author": "Sergey Astanin",
"License": "MIT License",
"License URL": "https://api.github.com/repos/astanin/python-tabulate/license",
"License repo": "Copyright (c) 2011-2020 Sergey Astanin and contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
},
{
"Name": "typing_extensions",
"Version": "4.2.0",
"Summary": "Backported and Experimental Type Hints for Python 3.7+",
"Home-page": "",
"Author": "",
"License": ""
},
{
"Name": "urllib3",
"Version": "1.26.9",
"Summary": "HTTP library with thread-safe connection pooling, file post, and more.",
"Home-page": "https://urllib3.readthedocs.io/",
"Author": "Andrey Petrov",
"License": "MIT"
},
{
"Name": "websocket-client",
"Version": "0.56.0",
"Summary": "WebSocket client for Python. hybi13 is supported.",
"Home-page": "https://github.com/websocket-client/websocket-client.git",
"Author": "liris",
"License": "BSD"
},
{
"Name": "wrapt",
"Version": "1.14.1",
"Summary": "Module for decorators, wrappers and monkey patching.",
"Home-page": "https://github.com/GrahamDumpleton/wrapt",
"Author": "Graham Dumpleton",
"License": "BSD 2-Clause \"Simplified\" License",
"License URL": "https://api.github.com/repos/grahamdumpleton/wrapt/license",
"License repo": "Copyright (c) 2013-2022, Graham Dumpleton\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.\n",
"License text": "BSD 2-Clause License\n\nCopyright (c) [year], [fullname]\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
},
{
"Name": "xmltodict",
"Version": "0.13.0",
"Summary": "Makes working with XML feel like you are working with JSON",
"Home-page": "https://github.com/martinblech/xmltodict",
"Author": "Martin Blech",
"License": "MIT License",
"License URL": "https://api.github.com/repos/martinblech/xmltodict/license",
"License repo": "Copyright (C) 2012 Martin Blech and individual contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n",
"License text": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
}
]
|
#######################################################################################################################################################
#CopyRight: This software tool is a copyright of the author. Please take permission before use or modification.
#Author: Abhishek Narain Singh
#Description: This code is for Bipartite graph plotting. For example SNPs and different Phenotypes, or SNPs and different Genes, such as in eQTL
#Email: abhishek.narain@iitdalumni.com
#Example: -bash-4.2$ python3 bipartiteLinearKit.py 2 small1976.txt pollinator plant 2
# Usage: python3 programName NumberbelowwhichToColorDifferently spaceDelimitedDataFileWithColumnNames column1Name column2Name NumberOfParallelCoresOpenMP
#Example: python3 bipartiteLinearKit.py 2 ~/GTEx/GTEx_Analysis_v7_eQTL/Artery_Aorta.v7.signif_variant_gene_pairs.txt variant_id gene_id 30
#Date: 25th June 2019
########################################################################################################################################################
import matplotlib
#matplotlib.use('QT4Agg')
import numpy as np
import matplotlib.pyplot as plt
import networkx as nx
import sys
import pandas as pd
from networkx.algorithms import community
import networkit as nk
import subprocess
df = pd.read_csv(sys.argv[2],sep='\s+') #Here goes the file name which is space or tab separated and 1st row as names of the columns
item1 = df[sys.argv[3]].unique() #Here goes the first column variable name such as the name of the genes
#print(item1)
item2 = df[sys.argv[4]].unique() #Here goes the second column variable name such as the name of the SNPs
#print(item2)
edges1 = df[sys.argv[3]]
edges2 = df[sys.argv[4]]
edges = pd.concat([edges1, edges2], axis=1)
edgesArray = edges.values
B = nx.Graph()
#SNPs = [1,2,3,4]
#Genes = ['a','b','c']
#Edge_Weight = ('r','r','b','b','g','r') #These weight are -log base 10 of the p-value for association of a SNP to Gene
B.add_nodes_from(item1, bipartite=0) # Add the node attribute "bipartite"
B.add_nodes_from(item2, bipartite=1)
#edges = [[1,'a'], [1,'b'], [2,'b'], [2,'c'], [3,'c'], [4,'a']]
B.add_edges_from(edgesArray)
print("Created the Graph Structure")
#Separating the nodes by group
r = {n for n, d in B.nodes(data=True) if d['bipartite']==0} #Getting the top nodes
l = set(B) - r #Getting the lower nodes
#print(set(B))#Sets store unordered values so this is not needed
#Creating a File where the list of Nodes are written
listOfNodes = list(B.nodes)
with open (r"{}/nodes.txt".format(sys.argv[6]), "w") as thefile:
for item in listOfNodes:
thefile.write(item + "\n")
thefile.close()
#print(list(B.nodes)[3])
#print(list(B))
#print(list(B.nodes(data=True)))
# Separate by group
#l, r = nx.bipartite.sets(B)
pos = {}
#print(l)
#print(r)
# Update position for node from each group THis will be needed for two parallel lines as bipartite
pos.update((node, (1, index)) for index, node in enumerate(l))
#print(pos)
pos.update((node, (2, index)) for index, node in enumerate(r))
#print(pos)
color_map = []
for nodeCount in range(len(item1)):
#print(nodeCount)
color_map.append('pink') #Item 1 objects colored one color
for nodeCount in range(len(item2)):
#print(nodeCount)
color_map.append('green') #Item 2 objects colored second color
print("Colored the Nodes")
#print(color_map)
#This is for two parallel line bipartite graph. Put pos=pos as an argument and see . To plot based on some edge weights
#nx.draw(B, pos=pos, with_labels=True, edge_color=Edge_Weight, node_color=color_map, node_size=1500, font_size=25, font_color="yellow", font_weight="bold",edge_cmap=plt.get_cmap('BuGn'), label ="SNP To Gene eQTL Associations Cis & Trans")
#To plot with degrees of association in linear bipartite
nx.draw(B, pos=pos, with_labels=True, edge_color=['blue' if B.degree[e[0]] >= int(sys.argv[1]) else 'red' for e in B.edges],font_size=4,font_weight="bold", node_color=color_map, font_color="black", edge_cmap=plt.get_cmap('BuGn'), label ="SNP To Gene eQTL Associations Cis & Trans")
#We make circular network plot with argument in command line for the degree of connectedness and above that needs to be colored differently
#nx.draw_circular(B,with_labels=True, edge_color=['blue' if B.degree[e[0]] >= int(sys.argv[1]) else 'red' for e in B.edges], node_color=color_map, font_color="black",edge_cmap=plt.get_cmap('Blues'), label ="SNP To Gene eQTL Associations Cis & Trans" )
#plt.title("SNP to Gene eQTL Association")
plt.title('ReGen Bipartite Plot', color='magenta')
#plt.show()
print("Drawing for Circular Plot prepared")
plt.savefig(r'{}/abiPlot.png'.format(sys.argv[6]), bbox_inches='tight')
print("Graph Plotted by name abiPlot.png")
#plt.show()
plt.clf() #Clear the figure
####################################Community Detection is Done by using Network Kit Parallel Louvain's algorithm####################################
nk.setNumberOfThreads(int(sys.argv[5])) # Setting the number of Parallel Threads in OpenMP
nkG = nk.nxadapter.nx2nk(B, weightAttr=None) #Now nkG is the converted graph in networkit format
communities = nk.community.detectCommunities(nkG)
#nxG = nk.nxadapter.nk2nx(communities)
print(nk.community.Modularity().getQuality(communities, nkG))
#Write the community partitioning
nk.community.writeCommunities(communities, r"./{}/communities.partition".format(sys.argv[6]))
#Plotting Communities (uncomment this if you want it)
nk.viztasks.drawCommunityGraph(nkG,communities)
plt.savefig(r'{}/communityPlot.png'.format(sys.argv[6]), bbox_inches='tight')
print("Communities Plotted by name communityPlot.png")
#plt.show()
with open('{}/nodesCommunity.txt'.format(sys.argv[6]), "w") as outfile:
subprocess.call(["paste", "nodes.txt", "communities.partition"], stdout=outfile)
outfile.close()
#subprocess.call(["paste", "nodes.txt", "communities.partition", ">", "nodesCommunity.txt"], shell=True)
print("Prepared the Communities file as nodesCommunity.txt")
#c2 = communities.getMembers(3)
#print(c2)
#print(nk.getCurrentNumberOfThreads())
|
from __future__ import absolute_import, division, print_function, unicode_literals
from echomesh.color import ColorTable
from echomesh.util.TestCase import TestCase
class TestColorTable(TestCase):
def test_black(self):
self.assertEqual(ColorTable.to_color('black'), (0.0, 0.0, 0.0))
def test_white(self):
self.assertEqual(ColorTable.to_color('white'), (1.0, 1.0, 1.0))
def test_pink(self):
self.assertEqual(ColorTable.to_color('pink'),
(1.0, 0.7529411764705882, 0.796078431372549))
def test_gray(self):
self.assertEqual(ColorTable.to_color('gray'),
(0.5019607843137255, 0.5019607843137255, 0.5019607843137255))
def test_grey(self):
self.assertEqual(ColorTable.to_color('grey'),
(0.5019607843137255, 0.5019607843137255, 0.5019607843137255))
def test_grey3(self):
self.assertEqual(ColorTable.to_color('grey 3'),
(0.03137254901960784, 0.03137254901960784, 0.03137254901960784))
|
from calendar import day_name
from math import floor
from .Translator import Translator
from .Rule import Rule
class Pattern:
"""Class that represents a pattern composed of a set of rules, number of samples, impurity and number of positive
and negative examples"""
def __init__(self, rules, total_pos, total_neg, impurity, sample_size_pos, sample_size_neg, translator=Translator()):
"""Initializer for Pattern"""
if not all(isinstance(item, Rule) for item in rules):
TypeError("rules must be composed of Rule objects")
if sample_size_pos < 0 or sample_size_neg < 0:
raise ValueError("number of samples must be positive")
if impurity < 0 or impurity > 1:
raise ValueError("impurity must be in a range of [0,1]")
self.total_pos = total_pos
self.total_neg = total_neg
self.impurity = impurity
self.sample_size_pos = sample_size_pos
self.sample_size_neg = sample_size_neg
self._compacted_rules = self.__compact_rules(rules, translator)
self._translator = translator
def __str__(self):
terms = self._translator.translate_to_language(['Rules', 'Samples', 'Impurity', 'Number_Pos', 'Number_Neg'])
pattern_str = '{0}:\n'.format(terms[0])
for rule in self.rules:
pattern_str += '\t{0}\n'.format(rule)
pattern_str += '{:s}: {:.4g} ({:.2%})\n'.format(terms[1], self.sample_size, self.sample_size/self.total_records)
pattern_str += '{:s}: {:.4g}\n'.format(terms[2], self.impurity)
pattern_str += '{:s}: {:.4g} ({:.2%})\n'.format(terms[3], self.sample_size_pos, self.total_pos)
pattern_str += '{:s}: {:.4g} ({:.2%})\n'.format(terms[4], self.sample_size_neg, self.total_neg)
return pattern_str
@property
def total_records(self):
return self.total_pos + self.total_neg
@property
def sample_size(self):
return self.sample_size_pos + self.sample_size_neg
@property
def rules(self):
return [rule for _,rule in self._compacted_rules.items()]
@staticmethod
def __compact_rules(rules, translator):
compacted_rules = {}
for rule in rules:
if rule.feature in compacted_rules:
stored_rule = compacted_rules[rule.feature]
if isinstance(stored_rule, _CombinedRule):
if rule.operator == '<=':
stored_rule.min_threshold = rule.threshold
else:
stored_rule.max_threshold = rule.threshold
compacted_rules[rule.feature] = stored_rule
elif rule.operator != stored_rule.operator:
if rule.operator == '<=':
max_threshold = rule.threshold
min_threshold = compacted_rules[rule.feature].threshold
else:
max_threshold = compacted_rules[rule.feature].threshold
min_threshold = rule.threshold
compacted_rules[rule.feature] = _CombinedRule(rule.feature, min_threshold, max_threshold, translator)
else:
compacted_rules[rule.feature] = rule
else:
compacted_rules[rule.feature] = rule
return compacted_rules
class _CombinedRule:
"""Private class that combine two rules with the same feature"""
def __init__(self, feature, min_threshold, max_threshold, translator=Translator()):
self.feature = feature
self.min_threshold = min_threshold
self.max_threshold = max_threshold
self.__translator = translator
def __str__(self):
rule_list = self.__translator.translate_to_language([self.feature, '>'])
if self.is_weekday():
if isinstance(self.min_threshold, float):
self.min_threshold = self.__translator.translate_to_language([str(day_name[floor(self.min_threshold) - 1])])[0]
rule_list.append(str(self.min_threshold))
elif self.is_hour():
rule_list.append('{:d}:00'.format(floor(self.min_threshold)))
else:
rule_list.append('{:.4g}'.format(self.min_threshold))
rule_list.extend(self.__translator.translate_to_language(['and', '<=']))
if self.is_weekday():
if isinstance(self.max_threshold, float):
self.max_threshold = self.__translator.translate_to_language([str(day_name[floor(self.max_threshold) - 1])])[0]
rule_list.append(str(self.max_threshold))
elif self.is_hour():
rule_list.append('{:d}:00'.format(floor(self.max_threshold)))
else:
rule_list.append('{:.4g}'.format(self.max_threshold))
return " ".join(rule_list)
def is_boolean(self):
""" Method that returns if the feature of the rule can be expressed as either true or false
:return: True if the feature is boolean
"""
return self.feature == 'Overlapped_Block'
def is_weekday(self):
""" Method that returns if the feature of the rule is a day of the week (1-7)
:return: True if the feature is a week day
"""
return self.feature == 'Weekday'
def is_hour(self):
""" Method that returns if the feature of the rule is a hour of the day (0-24)
:return: True if the feature is an hour
"""
return self.feature in ['Hour', 'Last_Meal_Hour'] |
# coding: utf-8
# -----------------------------------------------------------------------------------
# <copyright company="Aspose">
# Copyright (c) 2018 Aspose.Slides for Cloud
# </copyright>
# <summary>
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
# </summary>
# -----------------------------------------------------------------------------------
import pprint
import re # noqa: F401
import six
from asposeslidescloud.models.resource_base import ResourceBase
class Paragraph(ResourceBase):
"""
Attributes:
swagger_types (dict): The key is attribute name
and the value is attribute type.
attribute_map (dict): The key is attribute name
and the value is json key in definition.
"""
swagger_types = {
'self_uri': 'ResourceUri',
'alternate_links': 'list[ResourceUri]',
'margin_left': 'float',
'margin_right': 'float',
'space_before': 'float',
'space_after': 'float',
'space_within': 'float',
'indent': 'float',
'alignment': 'str',
'font_alignment': 'str',
'default_tab_size': 'float',
'depth': 'int',
'bullet_char': 'str',
'bullet_height': 'float',
'bullet_type': 'str',
'numbered_bullet_start_with': 'int',
'numbered_bullet_style': 'str',
'hanging_punctuation': 'str',
'east_asian_line_break': 'str',
'latin_line_break': 'str',
'right_to_left': 'str',
'portion_list': 'list[Portion]'
}
attribute_map = {
'self_uri': 'selfUri',
'alternate_links': 'alternateLinks',
'margin_left': 'marginLeft',
'margin_right': 'marginRight',
'space_before': 'spaceBefore',
'space_after': 'spaceAfter',
'space_within': 'spaceWithin',
'indent': 'indent',
'alignment': 'alignment',
'font_alignment': 'fontAlignment',
'default_tab_size': 'defaultTabSize',
'depth': 'depth',
'bullet_char': 'bulletChar',
'bullet_height': 'bulletHeight',
'bullet_type': 'bulletType',
'numbered_bullet_start_with': 'numberedBulletStartWith',
'numbered_bullet_style': 'numberedBulletStyle',
'hanging_punctuation': 'hangingPunctuation',
'east_asian_line_break': 'eastAsianLineBreak',
'latin_line_break': 'latinLineBreak',
'right_to_left': 'rightToLeft',
'portion_list': 'portionList'
}
type_determiners = {
}
def __init__(self, self_uri=None, alternate_links=None, margin_left=None, margin_right=None, space_before=None, space_after=None, space_within=None, indent=None, alignment=None, font_alignment=None, default_tab_size=None, depth=None, bullet_char=None, bullet_height=None, bullet_type=None, numbered_bullet_start_with=None, numbered_bullet_style=None, hanging_punctuation=None, east_asian_line_break=None, latin_line_break=None, right_to_left=None, portion_list=None): # noqa: E501
"""Paragraph - a model defined in Swagger""" # noqa: E501
super(Paragraph, self).__init__(self_uri, alternate_links)
self._margin_left = None
self._margin_right = None
self._space_before = None
self._space_after = None
self._space_within = None
self._indent = None
self._alignment = None
self._font_alignment = None
self._default_tab_size = None
self._depth = None
self._bullet_char = None
self._bullet_height = None
self._bullet_type = None
self._numbered_bullet_start_with = None
self._numbered_bullet_style = None
self._hanging_punctuation = None
self._east_asian_line_break = None
self._latin_line_break = None
self._right_to_left = None
self._portion_list = None
if margin_left is not None:
self.margin_left = margin_left
if margin_right is not None:
self.margin_right = margin_right
if space_before is not None:
self.space_before = space_before
if space_after is not None:
self.space_after = space_after
if space_within is not None:
self.space_within = space_within
if indent is not None:
self.indent = indent
if alignment is not None:
self.alignment = alignment
if font_alignment is not None:
self.font_alignment = font_alignment
if default_tab_size is not None:
self.default_tab_size = default_tab_size
if depth is not None:
self.depth = depth
if bullet_char is not None:
self.bullet_char = bullet_char
if bullet_height is not None:
self.bullet_height = bullet_height
if bullet_type is not None:
self.bullet_type = bullet_type
if numbered_bullet_start_with is not None:
self.numbered_bullet_start_with = numbered_bullet_start_with
if numbered_bullet_style is not None:
self.numbered_bullet_style = numbered_bullet_style
if hanging_punctuation is not None:
self.hanging_punctuation = hanging_punctuation
if east_asian_line_break is not None:
self.east_asian_line_break = east_asian_line_break
if latin_line_break is not None:
self.latin_line_break = latin_line_break
if right_to_left is not None:
self.right_to_left = right_to_left
if portion_list is not None:
self.portion_list = portion_list
@property
def margin_left(self):
"""Gets the margin_left of this Paragraph. # noqa: E501
Left margin. # noqa: E501
:return: The margin_left of this Paragraph. # noqa: E501
:rtype: float
"""
return self._margin_left
@margin_left.setter
def margin_left(self, margin_left):
"""Sets the margin_left of this Paragraph.
Left margin. # noqa: E501
:param margin_left: The margin_left of this Paragraph. # noqa: E501
:type: float
"""
self._margin_left = margin_left
@property
def margin_right(self):
"""Gets the margin_right of this Paragraph. # noqa: E501
Right margin. # noqa: E501
:return: The margin_right of this Paragraph. # noqa: E501
:rtype: float
"""
return self._margin_right
@margin_right.setter
def margin_right(self, margin_right):
"""Sets the margin_right of this Paragraph.
Right margin. # noqa: E501
:param margin_right: The margin_right of this Paragraph. # noqa: E501
:type: float
"""
self._margin_right = margin_right
@property
def space_before(self):
"""Gets the space_before of this Paragraph. # noqa: E501
Left spacing. # noqa: E501
:return: The space_before of this Paragraph. # noqa: E501
:rtype: float
"""
return self._space_before
@space_before.setter
def space_before(self, space_before):
"""Sets the space_before of this Paragraph.
Left spacing. # noqa: E501
:param space_before: The space_before of this Paragraph. # noqa: E501
:type: float
"""
self._space_before = space_before
@property
def space_after(self):
"""Gets the space_after of this Paragraph. # noqa: E501
Right spacing. # noqa: E501
:return: The space_after of this Paragraph. # noqa: E501
:rtype: float
"""
return self._space_after
@space_after.setter
def space_after(self, space_after):
"""Sets the space_after of this Paragraph.
Right spacing. # noqa: E501
:param space_after: The space_after of this Paragraph. # noqa: E501
:type: float
"""
self._space_after = space_after
@property
def space_within(self):
"""Gets the space_within of this Paragraph. # noqa: E501
Spacing between lines. # noqa: E501
:return: The space_within of this Paragraph. # noqa: E501
:rtype: float
"""
return self._space_within
@space_within.setter
def space_within(self, space_within):
"""Sets the space_within of this Paragraph.
Spacing between lines. # noqa: E501
:param space_within: The space_within of this Paragraph. # noqa: E501
:type: float
"""
self._space_within = space_within
@property
def indent(self):
"""Gets the indent of this Paragraph. # noqa: E501
First line indent. # noqa: E501
:return: The indent of this Paragraph. # noqa: E501
:rtype: float
"""
return self._indent
@indent.setter
def indent(self, indent):
"""Sets the indent of this Paragraph.
First line indent. # noqa: E501
:param indent: The indent of this Paragraph. # noqa: E501
:type: float
"""
self._indent = indent
@property
def alignment(self):
"""Gets the alignment of this Paragraph. # noqa: E501
Text alignment. # noqa: E501
:return: The alignment of this Paragraph. # noqa: E501
:rtype: str
"""
return self._alignment
@alignment.setter
def alignment(self, alignment):
"""Sets the alignment of this Paragraph.
Text alignment. # noqa: E501
:param alignment: The alignment of this Paragraph. # noqa: E501
:type: str
"""
if alignment is not None:
allowed_values = ["Left", "Center", "Right", "Justify", "JustifyLow", "Distributed", "NotDefined"] # noqa: E501
if alignment.isdigit():
int_alignment = int(alignment)
if int_alignment < 0 or int_alignment >= len(allowed_values):
raise ValueError(
"Invalid value for `alignment` ({0}), must be one of {1}" # noqa: E501
.format(alignment, allowed_values)
)
self._alignment = allowed_values[int_alignment]
return
if alignment not in allowed_values:
raise ValueError(
"Invalid value for `alignment` ({0}), must be one of {1}" # noqa: E501
.format(alignment, allowed_values)
)
self._alignment = alignment
@property
def font_alignment(self):
"""Gets the font_alignment of this Paragraph. # noqa: E501
Font alignment. # noqa: E501
:return: The font_alignment of this Paragraph. # noqa: E501
:rtype: str
"""
return self._font_alignment
@font_alignment.setter
def font_alignment(self, font_alignment):
"""Sets the font_alignment of this Paragraph.
Font alignment. # noqa: E501
:param font_alignment: The font_alignment of this Paragraph. # noqa: E501
:type: str
"""
if font_alignment is not None:
allowed_values = ["Automatic", "Top", "Center", "Bottom", "Baseline", "Default"] # noqa: E501
if font_alignment.isdigit():
int_font_alignment = int(font_alignment)
if int_font_alignment < 0 or int_font_alignment >= len(allowed_values):
raise ValueError(
"Invalid value for `font_alignment` ({0}), must be one of {1}" # noqa: E501
.format(font_alignment, allowed_values)
)
self._font_alignment = allowed_values[int_font_alignment]
return
if font_alignment not in allowed_values:
raise ValueError(
"Invalid value for `font_alignment` ({0}), must be one of {1}" # noqa: E501
.format(font_alignment, allowed_values)
)
self._font_alignment = font_alignment
@property
def default_tab_size(self):
"""Gets the default_tab_size of this Paragraph. # noqa: E501
Default tabulation size. # noqa: E501
:return: The default_tab_size of this Paragraph. # noqa: E501
:rtype: float
"""
return self._default_tab_size
@default_tab_size.setter
def default_tab_size(self, default_tab_size):
"""Sets the default_tab_size of this Paragraph.
Default tabulation size. # noqa: E501
:param default_tab_size: The default_tab_size of this Paragraph. # noqa: E501
:type: float
"""
self._default_tab_size = default_tab_size
@property
def depth(self):
"""Gets the depth of this Paragraph. # noqa: E501
Depth. # noqa: E501
:return: The depth of this Paragraph. # noqa: E501
:rtype: int
"""
return self._depth
@depth.setter
def depth(self, depth):
"""Sets the depth of this Paragraph.
Depth. # noqa: E501
:param depth: The depth of this Paragraph. # noqa: E501
:type: int
"""
self._depth = depth
@property
def bullet_char(self):
"""Gets the bullet_char of this Paragraph. # noqa: E501
Bullet char. # noqa: E501
:return: The bullet_char of this Paragraph. # noqa: E501
:rtype: str
"""
return self._bullet_char
@bullet_char.setter
def bullet_char(self, bullet_char):
"""Sets the bullet_char of this Paragraph.
Bullet char. # noqa: E501
:param bullet_char: The bullet_char of this Paragraph. # noqa: E501
:type: str
"""
self._bullet_char = bullet_char
@property
def bullet_height(self):
"""Gets the bullet_height of this Paragraph. # noqa: E501
Bullet height. # noqa: E501
:return: The bullet_height of this Paragraph. # noqa: E501
:rtype: float
"""
return self._bullet_height
@bullet_height.setter
def bullet_height(self, bullet_height):
"""Sets the bullet_height of this Paragraph.
Bullet height. # noqa: E501
:param bullet_height: The bullet_height of this Paragraph. # noqa: E501
:type: float
"""
self._bullet_height = bullet_height
@property
def bullet_type(self):
"""Gets the bullet_type of this Paragraph. # noqa: E501
Bullet type. # noqa: E501
:return: The bullet_type of this Paragraph. # noqa: E501
:rtype: str
"""
return self._bullet_type
@bullet_type.setter
def bullet_type(self, bullet_type):
"""Sets the bullet_type of this Paragraph.
Bullet type. # noqa: E501
:param bullet_type: The bullet_type of this Paragraph. # noqa: E501
:type: str
"""
if bullet_type is not None:
allowed_values = ["None", "Symbol", "Numbered", "Picture", "NotDefined"] # noqa: E501
if bullet_type.isdigit():
int_bullet_type = int(bullet_type)
if int_bullet_type < 0 or int_bullet_type >= len(allowed_values):
raise ValueError(
"Invalid value for `bullet_type` ({0}), must be one of {1}" # noqa: E501
.format(bullet_type, allowed_values)
)
self._bullet_type = allowed_values[int_bullet_type]
return
if bullet_type not in allowed_values:
raise ValueError(
"Invalid value for `bullet_type` ({0}), must be one of {1}" # noqa: E501
.format(bullet_type, allowed_values)
)
self._bullet_type = bullet_type
@property
def numbered_bullet_start_with(self):
"""Gets the numbered_bullet_start_with of this Paragraph. # noqa: E501
Starting number for a numbered bullet. # noqa: E501
:return: The numbered_bullet_start_with of this Paragraph. # noqa: E501
:rtype: int
"""
return self._numbered_bullet_start_with
@numbered_bullet_start_with.setter
def numbered_bullet_start_with(self, numbered_bullet_start_with):
"""Sets the numbered_bullet_start_with of this Paragraph.
Starting number for a numbered bullet. # noqa: E501
:param numbered_bullet_start_with: The numbered_bullet_start_with of this Paragraph. # noqa: E501
:type: int
"""
self._numbered_bullet_start_with = numbered_bullet_start_with
@property
def numbered_bullet_style(self):
"""Gets the numbered_bullet_style of this Paragraph. # noqa: E501
Numbered bullet style. # noqa: E501
:return: The numbered_bullet_style of this Paragraph. # noqa: E501
:rtype: str
"""
return self._numbered_bullet_style
@numbered_bullet_style.setter
def numbered_bullet_style(self, numbered_bullet_style):
"""Sets the numbered_bullet_style of this Paragraph.
Numbered bullet style. # noqa: E501
:param numbered_bullet_style: The numbered_bullet_style of this Paragraph. # noqa: E501
:type: str
"""
if numbered_bullet_style is not None:
allowed_values = ["BulletAlphaLCPeriod", "BulletAlphaUCPeriod", "BulletArabicParenRight", "BulletArabicPeriod", "BulletRomanLCParenBoth", "BulletRomanLCParenRight", "BulletRomanLCPeriod", "BulletRomanUCPeriod", "BulletAlphaLCParenBoth", "BulletAlphaLCParenRight", "BulletAlphaUCParenBoth", "BulletAlphaUCParenRight", "BulletArabicParenBoth", "BulletArabicPlain", "BulletRomanUCParenBoth", "BulletRomanUCParenRight", "BulletSimpChinPlain", "BulletSimpChinPeriod", "BulletCircleNumDBPlain", "BulletCircleNumWDWhitePlain", "BulletCircleNumWDBlackPlain", "BulletTradChinPlain", "BulletTradChinPeriod", "BulletArabicAlphaDash", "BulletArabicAbjadDash", "BulletHebrewAlphaDash", "BulletKanjiKoreanPlain", "BulletKanjiKoreanPeriod", "BulletArabicDBPlain", "BulletArabicDBPeriod", "BulletThaiAlphaPeriod", "BulletThaiAlphaParenRight", "BulletThaiAlphaParenBoth", "BulletThaiNumPeriod", "BulletThaiNumParenRight", "BulletThaiNumParenBoth", "BulletHindiAlphaPeriod", "BulletHindiNumPeriod", "BulletKanjiSimpChinDBPeriod", "BulletHindiNumParenRight", "BulletHindiAlpha1Period", "NotDefined"] # noqa: E501
if numbered_bullet_style.isdigit():
int_numbered_bullet_style = int(numbered_bullet_style)
if int_numbered_bullet_style < 0 or int_numbered_bullet_style >= len(allowed_values):
raise ValueError(
"Invalid value for `numbered_bullet_style` ({0}), must be one of {1}" # noqa: E501
.format(numbered_bullet_style, allowed_values)
)
self._numbered_bullet_style = allowed_values[int_numbered_bullet_style]
return
if numbered_bullet_style not in allowed_values:
raise ValueError(
"Invalid value for `numbered_bullet_style` ({0}), must be one of {1}" # noqa: E501
.format(numbered_bullet_style, allowed_values)
)
self._numbered_bullet_style = numbered_bullet_style
@property
def hanging_punctuation(self):
"""Gets the hanging_punctuation of this Paragraph. # noqa: E501
True if hanging punctuation is used with the paragraph. # noqa: E501
:return: The hanging_punctuation of this Paragraph. # noqa: E501
:rtype: str
"""
return self._hanging_punctuation
@hanging_punctuation.setter
def hanging_punctuation(self, hanging_punctuation):
"""Sets the hanging_punctuation of this Paragraph.
True if hanging punctuation is used with the paragraph. # noqa: E501
:param hanging_punctuation: The hanging_punctuation of this Paragraph. # noqa: E501
:type: str
"""
if hanging_punctuation is not None:
allowed_values = ["False", "True", "NotDefined"] # noqa: E501
if hanging_punctuation.isdigit():
int_hanging_punctuation = int(hanging_punctuation)
if int_hanging_punctuation < 0 or int_hanging_punctuation >= len(allowed_values):
raise ValueError(
"Invalid value for `hanging_punctuation` ({0}), must be one of {1}" # noqa: E501
.format(hanging_punctuation, allowed_values)
)
self._hanging_punctuation = allowed_values[int_hanging_punctuation]
return
if hanging_punctuation not in allowed_values:
raise ValueError(
"Invalid value for `hanging_punctuation` ({0}), must be one of {1}" # noqa: E501
.format(hanging_punctuation, allowed_values)
)
self._hanging_punctuation = hanging_punctuation
@property
def east_asian_line_break(self):
"""Gets the east_asian_line_break of this Paragraph. # noqa: E501
True if East Asian line break is used with the paragraph. # noqa: E501
:return: The east_asian_line_break of this Paragraph. # noqa: E501
:rtype: str
"""
return self._east_asian_line_break
@east_asian_line_break.setter
def east_asian_line_break(self, east_asian_line_break):
"""Sets the east_asian_line_break of this Paragraph.
True if East Asian line break is used with the paragraph. # noqa: E501
:param east_asian_line_break: The east_asian_line_break of this Paragraph. # noqa: E501
:type: str
"""
if east_asian_line_break is not None:
allowed_values = ["False", "True", "NotDefined"] # noqa: E501
if east_asian_line_break.isdigit():
int_east_asian_line_break = int(east_asian_line_break)
if int_east_asian_line_break < 0 or int_east_asian_line_break >= len(allowed_values):
raise ValueError(
"Invalid value for `east_asian_line_break` ({0}), must be one of {1}" # noqa: E501
.format(east_asian_line_break, allowed_values)
)
self._east_asian_line_break = allowed_values[int_east_asian_line_break]
return
if east_asian_line_break not in allowed_values:
raise ValueError(
"Invalid value for `east_asian_line_break` ({0}), must be one of {1}" # noqa: E501
.format(east_asian_line_break, allowed_values)
)
self._east_asian_line_break = east_asian_line_break
@property
def latin_line_break(self):
"""Gets the latin_line_break of this Paragraph. # noqa: E501
True if Latin line break is used with the paragraph. # noqa: E501
:return: The latin_line_break of this Paragraph. # noqa: E501
:rtype: str
"""
return self._latin_line_break
@latin_line_break.setter
def latin_line_break(self, latin_line_break):
"""Sets the latin_line_break of this Paragraph.
True if Latin line break is used with the paragraph. # noqa: E501
:param latin_line_break: The latin_line_break of this Paragraph. # noqa: E501
:type: str
"""
if latin_line_break is not None:
allowed_values = ["False", "True", "NotDefined"] # noqa: E501
if latin_line_break.isdigit():
int_latin_line_break = int(latin_line_break)
if int_latin_line_break < 0 or int_latin_line_break >= len(allowed_values):
raise ValueError(
"Invalid value for `latin_line_break` ({0}), must be one of {1}" # noqa: E501
.format(latin_line_break, allowed_values)
)
self._latin_line_break = allowed_values[int_latin_line_break]
return
if latin_line_break not in allowed_values:
raise ValueError(
"Invalid value for `latin_line_break` ({0}), must be one of {1}" # noqa: E501
.format(latin_line_break, allowed_values)
)
self._latin_line_break = latin_line_break
@property
def right_to_left(self):
"""Gets the right_to_left of this Paragraph. # noqa: E501
True if right to left direction is used with the paragraph. # noqa: E501
:return: The right_to_left of this Paragraph. # noqa: E501
:rtype: str
"""
return self._right_to_left
@right_to_left.setter
def right_to_left(self, right_to_left):
"""Sets the right_to_left of this Paragraph.
True if right to left direction is used with the paragraph. # noqa: E501
:param right_to_left: The right_to_left of this Paragraph. # noqa: E501
:type: str
"""
if right_to_left is not None:
allowed_values = ["False", "True", "NotDefined"] # noqa: E501
if right_to_left.isdigit():
int_right_to_left = int(right_to_left)
if int_right_to_left < 0 or int_right_to_left >= len(allowed_values):
raise ValueError(
"Invalid value for `right_to_left` ({0}), must be one of {1}" # noqa: E501
.format(right_to_left, allowed_values)
)
self._right_to_left = allowed_values[int_right_to_left]
return
if right_to_left not in allowed_values:
raise ValueError(
"Invalid value for `right_to_left` ({0}), must be one of {1}" # noqa: E501
.format(right_to_left, allowed_values)
)
self._right_to_left = right_to_left
@property
def portion_list(self):
"""Gets the portion_list of this Paragraph. # noqa: E501
List of portion links. # noqa: E501
:return: The portion_list of this Paragraph. # noqa: E501
:rtype: list[Portion]
"""
return self._portion_list
@portion_list.setter
def portion_list(self, portion_list):
"""Sets the portion_list of this Paragraph.
List of portion links. # noqa: E501
:param portion_list: The portion_list of this Paragraph. # noqa: E501
:type: list[Portion]
"""
self._portion_list = portion_list
def to_dict(self):
"""Returns the model properties as a dict"""
result = {}
for attr, _ in six.iteritems(self.swagger_types):
value = getattr(self, attr)
if isinstance(value, list):
result[attr] = list(map(
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
value
))
elif hasattr(value, "to_dict"):
result[attr] = value.to_dict()
elif isinstance(value, dict):
result[attr] = dict(map(
lambda item: (item[0], item[1].to_dict())
if hasattr(item[1], "to_dict") else item,
value.items()
))
else:
result[attr] = value
return result
def to_str(self):
"""Returns the string representation of the model"""
return pprint.pformat(self.to_dict())
def __repr__(self):
"""For `print` and `pprint`"""
return self.to_str()
def __eq__(self, other):
"""Returns true if both objects are equal"""
if not isinstance(other, Paragraph):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other
|
import xbmc
xbmc.executebuiltin( "PlayMedia(/media/MEDIA/autoplay.m3u)" )
xbmc.executebuiltin( "PlayerControl(RepeatAll)" )
|
from ._C_nqs.optimizer import *
|
import numpy as np
import torch
import torch.nn as nn
from .functions import dice, get_activation_func
class DiceLoss(nn.Module):
def __init__(
self,
eps: float = 1e-7,
activation: str = 'none',
reduction: str = 'mean'
):
super().__init__()
self.eps = eps
self.activation = activation
self.reduction = reduction
def forward(
self,
logits: torch.Tensor,
target: torch.Tensor
) -> float:
return dice(
logits=logits,
target=target,
eps=self.eps,
activation=self.activation,
reduction=self.reduction
)
class BCEDiceLoss(nn.Module):
def __init__(
self,
activation: str = 'none'
):
super().__init__()
self.bce = nn.BCELoss()
self.dice = DiceLoss(activation=activation)
self.activation = get_activation_func(activation)
def forward(
self,
logits: torch.Tensor,
target: torch.Tensor
) -> float:
predicted = self.activation(logits)
return self.bce(predicted, target) - torch.log(self.dice(logits, target) + 1e-6)
class BCEDiceWeightedLoss(nn.Module):
def __init__(
self,
alpha: float = 0.5
):
super().__init__()
self.alpha = alpha
self.bce = nn.BCEWithLogitsLoss()
self.dice = DiceLoss()
def forward(
self,
logits: torch.Tensor,
target: torch.Tensor
) -> float:
return self.alpha * self.bce(logits, target) - (1 - self.alpha) * self.dice(logits, target) + 1
|
# MIT licensed
# Copyright (c) 2020 lilydjwg <lilydjwg@gmail.com>, et al.
# Copyright (c) 2017 Felix Yan <felixonmars@archlinux.org>, et al.
from flaky import flaky
import pytest
pytestmark = [pytest.mark.asyncio, pytest.mark.needs_net]
@flaky(max_runs=10)
async def test_debianpkg(get_version):
assert await get_version("sigrok-firmware-fx2lafw", {
"source": "debianpkg",
}) == "0.1.7-1"
@flaky(max_runs=10)
async def test_debianpkg_strip_release(get_version):
assert await get_version("sigrok-firmware-fx2lafw", {
"source": "debianpkg",
"strip_release": 1,
}) == "0.1.7"
@flaky(max_runs=10)
async def test_debianpkg_suite(get_version):
assert await get_version("sigrok-firmware-fx2lafw", {
"source": "debianpkg",
"suite": "buster",
}) == "0.1.6-1"
|
# -*- coding: utf-8 -*-
'''
File name: code\the_chase\sol_227.py
Author: Vaidic Joshi
Date created: Oct 20, 2018
Python Version: 3.x
'''
# Solution to Project Euler Problem #227 :: The Chase
#
# For more information see:
# https://projecteuler.net/problem=227
# Problem Statement
'''
"The Chase" is a game played with two dice and an even number of players.
The players sit around a table; the game begins with two opposite players having one die each. On each turn, the two players with a die roll it.
If a player rolls a 1, he passes the die to his neighbour on the left; if he rolls a 6, he passes the die to his neighbour on the right; otherwise, he keeps the die for the next turn.
The game ends when one player has both dice after they have been rolled and passed; that player has then lost.
In a game with 100 players, what is the expected number of turns the game lasts?
Give your answer rounded to ten significant digits.
'''
# Solution
# Solution Approach
'''
'''
|
# -*- coding: utf-8 -*-
########
# Copyright (c) 2015 Fastconnect - Atost. All rights reserved
#
# 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
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# * See the License for the specific language governing permissions and
# * limitations under the License.
from plugin import (utils,
constants,
connection,
)
from cloudify import ctx
from cloudify.decorators import operation
def get_provisioning_state(**_):
"""Get the provisioning state of a resource group.
:param ctx: The Cloudify ctx context.
:return: The provisioning state of a resource group.
:rtype: string
"""
utils.validate_node_property(constants.RESOURCE_GROUP_KEY, ctx.node.properties)
azure_config = utils.get_azure_config(ctx)
subscription_id = azure_config[constants.SUBSCRIPTION_KEY]
api_version = str(constants.AZURE_API_VERSION_04_PREVIEW)
resource_group_name = ctx.node.properties[constants.RESOURCE_GROUP_KEY]
response = connection.AzureConnectionClient().azure_get(
ctx,
("subscriptions/{}/resourcegroups/"+
"{}?api-version={}").format(
subscription_id,
resource_group_name,
api_version
)
)
jsonGet = response.json()
status_resource_group = jsonGet['properties']['provisioningState']
return status_resource_group
@operation
def delete(**_):
"""Delete a resource group.
:param ctx: The Cloudify ctx context.
:return: The status code of the REST request.
:rtype: int
"""
utils.validate_node_property(constants.RESOURCE_GROUP_KEY, ctx.node.properties)
utils.validate_node_property(constants.DELETABLE_KEY, ctx.node.properties)
azure_config = utils.get_azure_config(ctx)
subscription_id = azure_config[constants.SUBSCRIPTION_KEY]
api_version = constants.AZURE_API_VERSION_04_PREVIEW
resource_group_name = ctx.node.properties[constants.RESOURCE_GROUP_KEY]
deletable = ctx.node.properties[constants.DELETABLE_KEY]
if deletable:
ctx.logger.info('Propertie deletable set to True.')
ctx.logger.info('Deleting resource group {}.'.format(resource_group_name))
cntn = connection.AzureConnectionClient()
response = cntn.azure_delete(ctx,
("subscriptions/{}/resourcegroups/{}" +
"?api-version={}").format(
subscription_id,
resource_group_name,
api_version
)
)
return response.status_code
else:
ctx.logger.info('Propertie deletable set to False.')
ctx.logger.info('Not deleting resource group {}.'.format(resource_group_name))
return 0
@operation
def create(**_):
"""Create a resource group.
:param ctx: The Cloudify ctx context.
:return: The status code of the REST request.
:rtype: int
"""
utils.validate_node_property(constants.RESOURCE_GROUP_KEY, ctx.node.properties)
azure_config = utils.get_azure_config(ctx)
subscription_id = azure_config[constants.SUBSCRIPTION_KEY]
location = azure_config[constants.LOCATION_KEY]
api_version = constants.AZURE_API_VERSION_04_PREVIEW
resource_group_name = ctx.node.properties[constants.RESOURCE_GROUP_KEY]
json ={"location": str(location)}
ctx.logger.info('Beginning resource_group creation')
cntn = connection.AzureConnectionClient()
response = cntn.azure_put(ctx,
("subscriptions/{}/resourcegroups/{}" +
"?api-version={}").format(
subscription_id,
resource_group_name,
api_version
),
json=json
)
utils.wait_status(ctx, 'resource_group')
return response.status_code
|
import logging
import os
import time
def mount_plentyfs(ctx, dirname=None, options=None):
logging.info(f"starting plentyfs at {dirname} with options {options}")
srcdir = globals()["srcdir"]
_daemon_start = globals()["_daemon_start"]
os.mkdir(dirname)
plentyfs = os.path.join(srcdir, "target", "debug", "plentyfs")
if options is None:
argv = dirname
else:
argv = f"-o {options} -- {dirname}"
_daemon_start(ctx, plentyfs, argv, "plentyfs")
# Wait for plentyfs to have started, up to two seconds.
started = time.time()
timeout = 2.0
while time.time() < started + timeout:
if os.listdir(dirname):
break
ctx["mount-point"] = dirname
def unmount_plentyfs(ctx, dirname=None, options=None):
runcmd_run = globals()["runcmd_run"]
runcmd_exit_code_is = globals()["runcmd_exit_code_is"]
dirname = ctx["mount-point"]
logging.info(f"stopping plentyfs at {dirname}")
runcmd_run(ctx, ["fusermount", "-u", dirname])
runcmd_exit_code_is(ctx, 0)
def run_plentyfs(ctx, arguments=None):
runcmd_try_to_run = globals()["runcmd_try_to_run"]
srcdir = globals()["srcdir"]
plentyfs = os.path.join(srcdir, "target", "debug", "plentyfs")
runcmd_try_to_run(ctx, plentyfs, arguments or "")
def file_count_is(ctx, count=None, dirname=None):
logging.debug(f"counting files under {dirname}")
n = 0
for path, subdirs, basenames in os.walk(dirname):
logging.debug(f"path: {path}")
logging.debug(f"subdirs: {subdirs}")
logging.debug(f"basenames: {basenames}")
at_path = len(basenames) + len(subdirs)
logging.debug(f"under {path}: {at_path}")
n += at_path
assert_eq = globals()["assert_eq"]
assert_eq(int(count), n)
def stdout_is_empty(ctx):
runcmd_get_stdout = globals()["runcmd_get_stdout"]
assert_eq = globals()["assert_eq"]
stdout = runcmd_get_stdout(ctx)
assert_eq(stdout, "")
def file_has_prefix(ctx, path=None, prefix=None):
binary_prefix = bytes.fromhex(prefix)
with open(path, "rb") as f:
actual_prefix = f.read(len(binary_prefix))
assert_eq = globals()["assert_eq"]
assert_eq(binary_prefix, actual_prefix)
def file_is_not_empty(ctx, path=None):
assert_eq = globals()["assert_eq"]
stat_size = os.stat(path).st_size
assert_ne(0, stat_size)
with open(path, "rb") as f:
first_byte = f.read(1)
assert_ne(0, len(first_byte))
|
# -*- coding: utf-8 -*-
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: third_party/openapi/v1/openapi.proto
"""Generated protocol buffer code."""
from google.protobuf.internal import enum_type_wrapper
from google.protobuf import descriptor as _descriptor
from google.protobuf import descriptor_pool as _descriptor_pool
from google.protobuf import message as _message
from google.protobuf import reflection as _reflection
from google.protobuf import symbol_database as _symbol_database
# @@protoc_insertion_point(imports)
_sym_db = _symbol_database.Default()
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(
b'\n$third_party/openapi/v1/openapi.proto\x12\nopenapi.v1\"7\n\x06Result\x12 \n\x03ret\x18\x01 \x01(\x0e\x32\x13.openapi.v1.Retcode\x12\x0b\n\x03msg\x18\x02 \x01(\t\".\n\x0f\x42riefPluginInfo\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0f\n\x07version\x18\x02 \x01(\t\")\n\x0b\x41\x64\x64onsPoint\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04\x64\x65sc\x18\x02 \x01(\t\"G\n\x11ImplementedAddons\x12\x14\n\x0c\x61\x64\x64ons_point\x18\x01 \x01(\t\x12\x1c\n\x14implemented_endpoint\x18\x02 \x01(\t\"o\n\x11ImplementedPlugin\x12+\n\x06plugin\x18\x01 \x01(\x0b\x32\x1b.openapi.v1.BriefPluginInfo\x12-\n\x06\x61\x64\x64ons\x18\x02 \x03(\x0b\x32\x1d.openapi.v1.ImplementedAddons\"\xd8\x01\n\x10IdentifyResponse\x12\x1f\n\x03res\x18\x01 \x01(\x0b\x32\x12.openapi.v1.Result\x12\x11\n\tplugin_id\x18\x02 \x01(\t\x12\x0f\n\x07version\x18\x03 \x01(\t\x12\x15\n\rtkeel_version\x18\x04 \x01(\t\x12-\n\x0c\x61\x64\x64ons_point\x18\x05 \x03(\x0b\x32\x17.openapi.v1.AddonsPoint\x12\x39\n\x12implemented_plugin\x18\x06 \x03(\x0b\x32\x1d.openapi.v1.ImplementedPlugin\"\x7f\n\x15\x41\x64\x64onsIdentifyRequest\x12+\n\x06plugin\x18\x01 \x01(\x0b\x32\x1b.openapi.v1.BriefPluginInfo\x12\x39\n\x12implemented_addons\x18\x02 \x03(\x0b\x32\x1d.openapi.v1.ImplementedAddons\"9\n\x16\x41\x64\x64onsIdentifyResponse\x12\x1f\n\x03res\x18\x01 \x01(\x0b\x32\x12.openapi.v1.Result\"4\n\x10TenantBindRequst\x12\x11\n\ttenant_id\x18\x01 \x01(\t\x12\r\n\x05\x65xtra\x18\x02 \x01(\x0c\"5\n\x12TenantBindResponse\x12\x1f\n\x03res\x18\x01 \x01(\x0b\x32\x12.openapi.v1.Result\"6\n\x12TenantUnbindRequst\x12\x11\n\ttenant_id\x18\x01 \x01(\t\x12\r\n\x05\x65xtra\x18\x02 \x01(\x0c\"7\n\x14TenantUnbindResponse\x12\x1f\n\x03res\x18\x01 \x01(\x0b\x32\x12.openapi.v1.Result\"[\n\x0eStatusResponse\x12\x1f\n\x03res\x18\x01 \x01(\x0b\x32\x12.openapi.v1.Result\x12(\n\x06status\x18\x02 \x01(\x0e\x32\x18.openapi.v1.PluginStatus*8\n\x07Retcode\x12\x06\n\x02OK\x10\x00\x12\x10\n\x0b\x42\x41\x44_REQEUST\x10\x90\x03\x12\x13\n\x0eINTERNAL_ERROR\x10\xf4\x03*O\n\x0cPluginStatus\x12\t\n\x05\x45RROR\x10\x00\x12\x0c\n\x08STARTING\x10\x01\x12\x0b\n\x07RUNNING\x10\x02\x12\x0c\n\x08STOPPING\x10\x03\x12\x0b\n\x07STOPPED\x10\x04\x42\x33Z1github.com/tkeel-io/tkeel-interface/openapi/v1;v1b\x06proto3')
_RETCODE = DESCRIPTOR.enum_types_by_name['Retcode']
Retcode = enum_type_wrapper.EnumTypeWrapper(_RETCODE)
_PLUGINSTATUS = DESCRIPTOR.enum_types_by_name['PluginStatus']
PluginStatus = enum_type_wrapper.EnumTypeWrapper(_PLUGINSTATUS)
OK = 0
BAD_REQEUST = 400
INTERNAL_ERROR = 500
ERROR = 0
STARTING = 1
RUNNING = 2
STOPPING = 3
STOPPED = 4
_RESULT = DESCRIPTOR.message_types_by_name['Result']
_BRIEFPLUGININFO = DESCRIPTOR.message_types_by_name['BriefPluginInfo']
_ADDONSPOINT = DESCRIPTOR.message_types_by_name['AddonsPoint']
_IMPLEMENTEDADDONS = DESCRIPTOR.message_types_by_name['ImplementedAddons']
_IMPLEMENTEDPLUGIN = DESCRIPTOR.message_types_by_name['ImplementedPlugin']
_IDENTIFYRESPONSE = DESCRIPTOR.message_types_by_name['IdentifyResponse']
_ADDONSIDENTIFYREQUEST = DESCRIPTOR.message_types_by_name['AddonsIdentifyRequest']
_ADDONSIDENTIFYRESPONSE = DESCRIPTOR.message_types_by_name['AddonsIdentifyResponse']
_TENANTBINDREQUST = DESCRIPTOR.message_types_by_name['TenantBindRequst']
_TENANTBINDRESPONSE = DESCRIPTOR.message_types_by_name['TenantBindResponse']
_TENANTUNBINDREQUST = DESCRIPTOR.message_types_by_name['TenantUnbindRequst']
_TENANTUNBINDRESPONSE = DESCRIPTOR.message_types_by_name['TenantUnbindResponse']
_STATUSRESPONSE = DESCRIPTOR.message_types_by_name['StatusResponse']
Result = _reflection.GeneratedProtocolMessageType('Result', (_message.Message,), {
'DESCRIPTOR': _RESULT,
'__module__': 'openapi_pb2'
# @@protoc_insertion_point(class_scope:openapi.v1.Result)
})
_sym_db.RegisterMessage(Result)
BriefPluginInfo = _reflection.GeneratedProtocolMessageType('BriefPluginInfo', (_message.Message,), {
'DESCRIPTOR': _BRIEFPLUGININFO,
'__module__': 'openapi_pb2'
# @@protoc_insertion_point(class_scope:openapi.v1.BriefPluginInfo)
})
_sym_db.RegisterMessage(BriefPluginInfo)
AddonsPoint = _reflection.GeneratedProtocolMessageType('AddonsPoint', (_message.Message,), {
'DESCRIPTOR': _ADDONSPOINT,
'__module__': 'openapi_pb2'
# @@protoc_insertion_point(class_scope:openapi.v1.AddonsPoint)
})
_sym_db.RegisterMessage(AddonsPoint)
ImplementedAddons = _reflection.GeneratedProtocolMessageType('ImplementedAddons', (_message.Message,), {
'DESCRIPTOR': _IMPLEMENTEDADDONS,
'__module__': 'openapi_pb2'
# @@protoc_insertion_point(class_scope:openapi.v1.ImplementedAddons)
})
_sym_db.RegisterMessage(ImplementedAddons)
ImplementedPlugin = _reflection.GeneratedProtocolMessageType('ImplementedPlugin', (_message.Message,), {
'DESCRIPTOR': _IMPLEMENTEDPLUGIN,
'__module__': 'openapi_pb2'
# @@protoc_insertion_point(class_scope:openapi.v1.ImplementedPlugin)
})
_sym_db.RegisterMessage(ImplementedPlugin)
IdentifyResponse = _reflection.GeneratedProtocolMessageType('IdentifyResponse', (_message.Message,), {
'DESCRIPTOR': _IDENTIFYRESPONSE,
'__module__': 'openapi_pb2'
# @@protoc_insertion_point(class_scope:openapi.v1.IdentifyResponse)
})
_sym_db.RegisterMessage(IdentifyResponse)
AddonsIdentifyRequest = _reflection.GeneratedProtocolMessageType('AddonsIdentifyRequest', (_message.Message,), {
'DESCRIPTOR': _ADDONSIDENTIFYREQUEST,
'__module__': 'openapi_pb2'
# @@protoc_insertion_point(class_scope:openapi.v1.AddonsIdentifyRequest)
})
_sym_db.RegisterMessage(AddonsIdentifyRequest)
AddonsIdentifyResponse = _reflection.GeneratedProtocolMessageType('AddonsIdentifyResponse', (_message.Message,), {
'DESCRIPTOR': _ADDONSIDENTIFYRESPONSE,
'__module__': 'openapi_pb2'
# @@protoc_insertion_point(class_scope:openapi.v1.AddonsIdentifyResponse)
})
_sym_db.RegisterMessage(AddonsIdentifyResponse)
TenantBindRequst = _reflection.GeneratedProtocolMessageType('TenantBindRequst', (_message.Message,), {
'DESCRIPTOR': _TENANTBINDREQUST,
'__module__': 'openapi_pb2'
# @@protoc_insertion_point(class_scope:openapi.v1.TenantBindRequst)
})
_sym_db.RegisterMessage(TenantBindRequst)
TenantBindResponse = _reflection.GeneratedProtocolMessageType('TenantBindResponse', (_message.Message,), {
'DESCRIPTOR': _TENANTBINDRESPONSE,
'__module__': 'openapi_pb2'
# @@protoc_insertion_point(class_scope:openapi.v1.TenantBindResponse)
})
_sym_db.RegisterMessage(TenantBindResponse)
TenantUnbindRequst = _reflection.GeneratedProtocolMessageType('TenantUnbindRequst', (_message.Message,), {
'DESCRIPTOR': _TENANTUNBINDREQUST,
'__module__': 'openapi_pb2'
# @@protoc_insertion_point(class_scope:openapi.v1.TenantUnbindRequst)
})
_sym_db.RegisterMessage(TenantUnbindRequst)
TenantUnbindResponse = _reflection.GeneratedProtocolMessageType('TenantUnbindResponse', (_message.Message,), {
'DESCRIPTOR': _TENANTUNBINDRESPONSE,
'__module__': 'openapi_pb2'
# @@protoc_insertion_point(class_scope:openapi.v1.TenantUnbindResponse)
})
_sym_db.RegisterMessage(TenantUnbindResponse)
StatusResponse = _reflection.GeneratedProtocolMessageType('StatusResponse', (_message.Message,), {
'DESCRIPTOR': _STATUSRESPONSE,
'__module__': 'openapi_pb2'
# @@protoc_insertion_point(class_scope:openapi.v1.StatusResponse)
})
_sym_db.RegisterMessage(StatusResponse)
if _descriptor._USE_C_DESCRIPTORS == False:
DESCRIPTOR._options = None
DESCRIPTOR._serialized_options = b'Z1github.com/tkeel-io/tkeel-interface/openapi/v1;v1'
_RETCODE._serialized_start = 1108
_RETCODE._serialized_end = 1164
_PLUGINSTATUS._serialized_start = 1166
_PLUGINSTATUS._serialized_end = 1245
_RESULT._serialized_start = 52
_RESULT._serialized_end = 107
_BRIEFPLUGININFO._serialized_start = 109
_BRIEFPLUGININFO._serialized_end = 155
_ADDONSPOINT._serialized_start = 157
_ADDONSPOINT._serialized_end = 198
_IMPLEMENTEDADDONS._serialized_start = 200
_IMPLEMENTEDADDONS._serialized_end = 271
_IMPLEMENTEDPLUGIN._serialized_start = 273
_IMPLEMENTEDPLUGIN._serialized_end = 384
_IDENTIFYRESPONSE._serialized_start = 387
_IDENTIFYRESPONSE._serialized_end = 603
_ADDONSIDENTIFYREQUEST._serialized_start = 605
_ADDONSIDENTIFYREQUEST._serialized_end = 732
_ADDONSIDENTIFYRESPONSE._serialized_start = 734
_ADDONSIDENTIFYRESPONSE._serialized_end = 791
_TENANTBINDREQUST._serialized_start = 793
_TENANTBINDREQUST._serialized_end = 845
_TENANTBINDRESPONSE._serialized_start = 847
_TENANTBINDRESPONSE._serialized_end = 900
_TENANTUNBINDREQUST._serialized_start = 902
_TENANTUNBINDREQUST._serialized_end = 956
_TENANTUNBINDRESPONSE._serialized_start = 958
_TENANTUNBINDRESPONSE._serialized_end = 1013
_STATUSRESPONSE._serialized_start = 1015
_STATUSRESPONSE._serialized_end = 1106
# @@protoc_insertion_point(module_scope)
|
import sys
import time
import numpy as np
# Download and install the Python COCO tools from https://github.com/waleedka/coco
# That's a fork from the original https://github.com/pdollar/coco with a bug
# fix for Python 3.
# I submitted a pull request https://github.com/cocodataset/cocoapi/pull/50
# If the PR is merged then use the original repo.
# Note: Edit PythonAPI/Makefile and replace "python" with "python3".
#
# A quick one liner to install the library
# !pip install git+https://github.com/waleedka/coco.git#subdirectory=PythonAPI
from pycocotools.coco import COCO
from pycocotools.cocoeval import COCOeval
from pycocotools import mask as maskUtils
from mrcnn.evaluate import build_coco_results, evaluate_coco
from mrcnn.dataset import MappingChallengeDataset
import zipfile
import urllib.request
import shutil
import os
ROOT_DIR = os.getcwd()
# Import Mask RCNN
sys.path.append(ROOT_DIR) # To find local version of the library
from mrcnn.config import Config
from mrcnn import model as modellib, utils
PRETRAINED_MODEL_PATH = os.path.join(ROOT_DIR,"data", "mask_rcnn_coco.h5")
LOGS_DIRECTORY = os.path.join(ROOT_DIR, "logs")
class MappingChallengeConfig(Config):
"""Configuration for training on data in MS COCO format.
Derives from the base Config class and overrides values specific
to the COCO dataset.
"""
# Give the configuration a recognizable name
NAME = "crowdai-mapping-challenge"
# We use a GPU with 12GB memory, which can fit two images.
# Adjust down if you use a smaller GPU.
IMAGES_PER_GPU = 5
# Uncomment to train on 8 GPUs (default is 1)
GPU_COUNT = 1
# Number of classes (including background)
NUM_CLASSES = 41 # 1 Backgroun + 1 Building
STEPS_PER_EPOCH=1000
VALIDATION_STEPS=50
IMAGE_MAX_DIM=256
IMAGE_MIN_DIM=256
config = MappingChallengeConfig()
config.display()
import keras.backend
K = keras.backend.backend()
if K=='tensorflow':
keras.backend.set_image_dim_ordering('tf')
model = modellib.MaskRCNN(mode="training", config=config, model_dir=LOGS_DIRECTORY)
model_path = PRETRAINED_MODEL_PATH
model.load_weights(model_path, by_name=True, exclude=[
"mrcnn_class_logits", "mrcnn_bbox_fc",
"mrcnn_bbox", "mrcnn_mask"])
dataset_train = MappingChallengeDataset()
dataset_train.load_dataset(dataset_dir=os.path.join("data", "train"), load_small=False)
dataset_train.prepare()
dataset_val = MappingChallengeDataset()
val_coco = dataset_val.load_dataset(dataset_dir=os.path.join("data", "val"), load_small=False, return_coco=True)
dataset_val.prepare()
print("Training network heads")
#model.train(dataset_train, dataset_val,
# learning_rate=config.LEARNING_RATE,
# epochs=40,
# layers='heads')
_, checkpoint = model.find_last()
model.load_weights(checkpoint, by_name=True)
# Training - Stage 2
# Finetune layers from ResNet stage 4 and up
print("Fine tune Resnet stage 4 and up")
model.train(dataset_train, dataset_val,
learning_rate=config.LEARNING_RATE,
epochs=120,
layers='4+')
_, checkpoint = model.find_last()
model.load_weights(checkpoint, by_name=True)
# Training - Stage 3
# Fine tune all layers
print("Fine tune all layers")
model.train(dataset_train, dataset_val,
learning_rate=config.LEARNING_RATE / 10,
epochs=160,
layers='all')
|
# coding:utf-8
import numpy as np
import pandas as pd
import pickle
import os
from settings import DATA_DIR
def deepfm_onehot_representation(sample, fields_dict, array_length):
array = np.zeros([array_length])
idxs = []
for field in fields_dict:
if field == "click":
continue
if field == "hour":
field_value = int(str(sample[field])[-2:])
else:
field_value = sample[field]
ind = fields_dict[field][field_value]
array[ind] = 1.0
idxs.append(ind)
return array, idxs
def deepfm_batch_data_generate(batch_data, fields_dict, array_length):
batch_x = []
batch_y = []
batch_idx = []
for i in range(len(batch_data)):
sample = batch_data.iloc[i,:]
click = sample.get("click", 0)
if click == 0:
label = 0
else:
label = 1
array, idx = deepfm_onehot_representation(sample, fields_dict, array_length)
batch_x.append(array)
batch_y.append(label)
batch_idx.append(idx)
batch_x = np.array(batch_x)
batch_y = np.array(batch_y)
batch_idx = np.array(batch_idx)
return batch_x, batch_y, batch_idx
def ffm_onehot_representation(sample, fields_dict, array_length):
array = np.zeros([array_length])
for field in fields_dict:
if field == "click":
continue
if field == "hour":
field_value = int(str(sample[field])[-2:])
else:
field_value = sample[field]
ind = fields_dict[field][field_value]
array[ind] = 1.0
return array
def ffm_batch_data_generate(batch_data, fields_dict, array_length):
batch_x = []
batch_y = []
for i in range(len(batch_data)):
sample = batch_data.iloc[i,:]
click = sample["click"]
if click == 0:
label = 0
else:
label = 1
batch_y.append(label)
array = ffm_onehot_representation(sample, fields_dict, array_length)
batch_x.append(array)
batch_x = np.array(batch_x)
batch_y = np.array(batch_y)
return batch_x, batch_y
def one_hot_representation(sample, fields_dict, isample):
"""
One hot presentation for every sample data
:param fields_dict: fields value to array index
:param sample: sample data, type of pd.series
:param isample: sample index
:return: sample index
"""
index = []
for field in fields_dict:
if field == "click":
continue
# get index of array
if field == 'hour':
field_value = int(str(sample[field])[-2:])
else:
field_value = sample[field]
ind = fields_dict[field][field_value]
index.append([isample, ind])
return index
def train_batch_sparse_data_generate(batch_data, field_dict):
labels = []
indexes = []
for i in range(len(batch_data)):
sample = batch_data.iloc[i, :]
click = sample["click"]
if click == 0:
label = 0
else:
label = 1
labels.append(label)
index = one_hot_representation(sample, field_dict, i)
indexes.extend(index)
return indexes, labels
def train_sparse_data_generate(train_data, field_dict):
sparse_data = []
ibatch = 0
for data in train_data:
indexes, labels = train_batch_sparse_data_generate(data, field_dict)
sparse_data.append({"indexes":indexes, "labels":labels})
ibatch += 1
if ibatch % 1000 == 0:
with open(os.path.join(DATA_DIR, "sparse_data", "train", "sparse_data_%d_%d.pkl"%(ibatch-1000, ibatch-1)), "wb") as f:
pickle.dump(sparse_data, f)
sparse_data = []
print("%d batch has finished." % ibatch)
with open(os.path.join(DATA_DIR, "sparse_data", "train", "sparse_data_%d_%d.pkl"%(ibatch-len(sparse_data), ibatch-1)), "wb") as f:
pickle.dump(sparse_data, f)
def ttest_sparse_data_generate(batch_data, field_dict):
ids = []
indexes = []
for i in range(len(batch_data)):
sample = batch_data.iloc[i,:]
ids.append(sample["id"])
index = one_hot_representation(sample, field_dict, i)
indexes.extend(index)
return indexes, ids
def ttest_sparse_data_generate(test_data, fields_dict):
sparse_data = []
ibatch = 0
for data in test_data:
indexes, ids = ttest_sparse_data_generate(data, fields_dict)
sparse_data.append({"indexes":indexes, "id":ids})
ibatch += 1
if ibatch % 1000 == 0:
with open(os.path.join(DATA_DIR, "sparse_data", "test", "sparse_data_%d_%d.pkl"%(ibatch-1000, ibatch-1)), "wb") as f:
pickle.dump(sparse_data, f)
sparse_data = []
print("%d batch has finished." % ibatch)
with open(os.path.join(DATA_DIR, "sparse_data", "test", "sparse_data_%d_%d.pkl"%(ibatch-len(sparse_data), ibatch-1)), "wb") as f:
pickle.dump(sparse_data, f)
if __name__ == '__main__':
# fields_train = ['hour', 'C1', 'C14', 'C15', 'C16', 'C17', 'C18', 'C19', 'C20', 'C21',
# 'banner_pos', 'site_id' ,'site_domain', 'site_category', 'app_domain',
# 'app_id', 'app_category', 'device_model', 'device_type', 'device_id',
# 'device_conn_type'] #,'click']
#
# fields_test = ['hour', 'C1', 'C14', 'C15', 'C16', 'C17', 'C18', 'C19', 'C20', 'C21',
# 'banner_pos', 'site_id' ,'site_domain', 'site_category', 'app_domain',
# 'app_id', 'device_id', 'app_category', 'device_model', 'device_type',
# 'device_conn_type']
fields = ['hour', 'C1', 'C14', 'C15', 'C16', 'C17', 'C18', 'C19', 'C20', 'C21',
'banner_pos', 'site_id' ,'site_domain', 'site_category', 'app_domain',
'app_id', 'device_id', 'app_category', 'device_model', 'device_type',
'device_conn_type']
batch_size = 512
train = pd.read_csv('G://Datasets//avazuCTR//train.csv', chunksize=batch_size)
test = pd.read_csv('G://Datasets//avazuCTR//test.csv', chunksize=batch_size)
# loading dicts
fields_dict = {}
for field in fields:
with open(os.path.join(DATA_DIR, 'dicts', field+'.pkl'),'rb') as f:
fields_dict[field] = pickle.load(f)
print("field: %s, len: %d" % (field, len(fields_dict[field])))
train_sparse_data_generate(train, fields_dict)
ttest_sparse_data_generate(test, fields_dict)
|
# -*- coding: utf-8 -*-
"""
flask-snippets.template
~~~~~~~~~~~~~~~~~~~~~~~
Template Python file for flask-snippets.
"""
import os
import sys
sys.path.insert(0, os.path.dirname(os.path.abspath(os.path.dirname(__file__))))
from flask import request, Response
from app import app
@app.route('/')
def index():
return 'index'
if __name__ == "__main__":
app.run()
|
from datetime import date, timedelta
import logging
from smtplib import SMTPException
from django.conf import settings
from django.core.mail import send_mail
from django.contrib.auth import get_user_model
from django.utils.translation import gettext_lazy as _
from django.core.exceptions import ValidationError
from .models import EmailConfirmationToken
logger = logging.getLogger(__name__)
User = get_user_model()
def request_email_verification(*, user: User) -> None:
"""
Send the user an email to their EA email address with a link to verify
that they are EA staff.
"""
email_conf_tok = EmailConfirmationToken.objects.create(
owner=user,
)
if not send_mail(
# subject
'Email Confirmation Link for Zoom Report Aggregator',
# message
'Visit this link to verify your empacad.org email address: '
f'https://{settings.EA_AUTHENTICATION.get("domain_name")}/'
f'register/verified/{email_conf_tok.token}/',
# from
settings.EMAIL_FROM,
# to
[user.email],
fail_silently=True
):
logger.error(f'Email to {user.email} failed.')
def is_ea(email: str) -> bool:
"""
Email domain name is "empacad.org"
"""
eml_domain = email.split('@')[1]
if eml_domain == 'empacad.org':
return True
return False
def is_ea_teacher(email: str):
"""
Email domain is "empacad.org" and first four characters of email are not
digits.
(empacad students' emails start with their student ID)
"""
if is_ea(email):
return not email[:4].isnumeric()
return False
def validate_email_is_ea(email: str) -> None:
"""
Custom form validator raise ValidationError if email does not appear to
be an @empacad.org email address.
"""
# check that the domain is correct at all
if not is_ea(email):
raise ValidationError(_("Email address must be an @empacad.org email"))
if not is_ea_teacher(email):
raise ValidationError(_("This tool is available for teachers only."))
def assign_user_role_from_slug(*, slug: str) -> User:
"""
Upon recieving the email validation slug, verify the user and give them a
role. User will recieve teacher or student role depending on the naming
pattern of their verified email address.
"""
token_record = EmailConfirmationToken.objects.get(token=slug)
user = token_record.owner
if user.email[:4].isnumeric():
# students email start with their numerical student id
user.role = User.STUDENT
user.save()
else:
user.role = User.TEACHER
user.save()
return user
def delete_email_tokens(*, user) -> None:
"""
Delete all validation tokens issued to the user.
"""
EmailConfirmationToken.objects.filter(owner=user).delete()
def prune_email_tokens() -> None:
"""
Run as a daily cron job. Delte email tokens that are more than five days
old.
"""
EmailConfirmationToken.objects.filter(created__lt=(
date.today() - timedelta(days=5)
)).delte()
|
import time
class Memoize(object):
def __init__(self, func):
self.func = func
self.cache = {}
def __call__(self, *args):
if args in self.cache:
return self.cache[args]
ret = self.func(*args)
self.cache[args] = ret
return ret
@Memoize
def fib(n):
if n < 2:
return 1
return fib(n-2) + fib(n-1)
@Memoize
def SubFibDig(n):
if n<=3:
return n
else:
return SubFibDig(n-1) + SubFibDig(n-2) + fib(n-2) - 1
@Memoize
def Z(n):
i=1
while fib(i)<=n:
i+=1
if fib(i-1)==n:
return SubFibDig(i-1)
else:
diff=n-fib(i-1)
return SubFibDig(i-1) + diff + Z(diff)
if __name__=='__main__':
start=time.time()
print(Z(10**17))
print(time.time()-start)
|
#!/usr/bin/env python3
from metasploit import module, probe_scanner
metadata = {
'name': 'Open WAN-to-LAN proxy on AT&T routers',
'description': '''
The Arris NVG589 and NVG599 routers configured with AT&T U-verse
firmware 9.2.2h0d83 expose an un-authenticated proxy that allows
connecting from WAN to LAN by MAC address.
''',
'authors': [
'Joseph Hutchins' # Initial disclosure
'Jon Hart <jon_hart[AT]rapid7.com>', # Dummy payload and response pattern
'Adam Cammack <adam_cammack[AT]rapid7.com>' # Metasploit module
],
'date': '2017-08-31',
'references': [
{'type': 'cve', 'ref': '2017-14117'},
{'type': 'url', 'ref': 'https://www.nomotion.net/blog/sharknatto/'},
{'type': 'url', 'ref': 'https://blog.rapid7.com/2017/09/07/measuring-sharknat-to-exposures/#vulnerability5port49152tcpexposure'}
],
'type': 'multi_scanner',
'options': {
'rhosts': {'type': 'address_range', 'description': 'The target address', 'required': True, 'default': None},
'rport': {'type': 'port', 'description': 'The target port', 'required': True, 'default': 49152},
},
'notes': {
'AKA': [
'SharknAT&To',
'sharknatto'
]
}
}
def report_wproxy(target, response):
# We don't use the response here, but if we were a banner scraper we could
# print or report it
module.report_vuln(target[0], 'wproxy', port=target[0])
if __name__ == "__main__":
study = probe_scanner.make_scanner(
# Payload and pattern are given and applied straight to the socket, so
# they need to be bytes-like
payload=b'\x2a\xce\x00\x00\x00\x00\x00\x00\x00\x00\x00',
pattern=b'^\\*\xce.{3}$',
onmatch=report_wproxy
)
module.run(metadata, study)
|
import random
import sys
for line in sys.stdin:
line = line.rstrip("\n\r")
try:
newline = [' ' for c in line]
indexes = list(range(len(newline)))
random.shuffle(indexes)
for i in indexes:
newline[i] = line[i]
sys.stdout.write('\r')
sys.stdout.write(''.join(newline))
sys.stdout.write('\n')
except BrokenPipeError:
break
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Flask main script."""
# Run locally
# export HOST=0.0.0.0 # 0.0.0.0 or localhost
# export PORT=8000
# gunicorn -w 1 --bind $HOST:$PORT main:app
# Heroku App name = {{cookiecutter.flask_app_name}} # export FLASK_APP_NAME={{cookiecutter.flask_app_name}}
# Heroku Procfile
# web: gunicorn -w 1 --bind $HOST:$PORT main:app
import os
import yaml
from bokeh.embed import server_document
from flask import Flask, render_template
PROJ_ROOT_DIR = os.getcwd()
app_config_filepath = os.path.join(PROJ_ROOT_DIR, "flask_app_config.yaml")
with open(app_config_filepath) as f:
params = yaml.safe_load(os.path.expandvars(f.read()))
deploy = params["deploy"]
deployed_bokeh_server_app_name = params["deployed_bokeh_server_app_name"]
standalone_bokeh_apps = params["standalone_bokeh_apps"]
if deploy:
# Heroku
BOKEH_URLS = {
sname: f"https://{deployed_bokeh_server_app_name}.com/{bokeh_app}"
for sname, bokeh_app in standalone_bokeh_apps.items()
}
else:
BOKEH_URLS = {
sname: f"http://localhost:5006/{bokeh_app}"
for sname, bokeh_app in standalone_bokeh_apps.items()
}
app = Flask(__name__)
@app.route("/", methods=["GET"])
def bkapp_page():
script = {
sname: server_document(BOKEH_URL)
for sname, BOKEH_URL in BOKEH_URLS.items()
}
return render_template("embed.html", script=script)
|
#!/usr/bin/env python
from subprocess import Popen, PIPE
import sys
import os
os.chdir("storm-core")
ns = sys.argv[1]
pipe = Popen(["mvn", "clojure:repl"], stdin=PIPE)
pipe.stdin.write("(do (use 'clojure.test) (require '%s :reload-all) (run-tests '%s))\n" % (ns, ns))
pipe.stdin.write("\n")
pipe.stdin.close()
pipe.wait()
os.chdir("..")
|
# -*- coding: utf-8 -*-
"""Example of one-time token with "encoding" for additional security
level.
"""
import json
from datetime import datetime
import ckan.plugins as p
import ckan.model as model
class ExampleIApiTokenPlugin(p.SingletonPlugin):
"""Example of plugin, that allows every token to be used only once and
uses plain JSON instead of JWT.
"""
p.implements(p.IApiToken)
# IApiToken
def create_api_token_schema(self, schema):
return schema
def encode_api_token(self, data, **kwargs):
for k, v in data.items():
if isinstance(v, datetime):
data[k] = v.timestamp()
return json.dumps(data)
def decode_api_token(self, token, **kwargs):
return json.loads(token)
def postprocess_api_token(self, data, jti, data_dict):
data[u"jti"] = u"!" + jti + u"!"
return data
def preprocess_api_token(self, data):
"""Decode token. If it has `last_access` remove it.
"""
token = data[u"jti"][1:-1]
data[u"jti"] = token
obj = model.ApiToken.get(token)
if obj.last_access:
model.ApiToken.revoke(token)
return data
def add_extra_fields(self, data_dict):
data_dict[u"hello"] = u"world"
return data_dict
|
def parse_minizinc_output():
board_raw = """P I N A T A P A N E R A S M L B V N
O Y A V E E U R O P E O E O R E I F
B Z C E M S L U R P R Z N U N B E R
L Z H N P E Q E J B C D L I B C N A
E I O T E P U A E A O E C L O O N N
T F S E H C E T L N E E E F T S A C
F R E S C A R P L O Q C F O C M V E
R A H S C O N E S U C E R A E O C C
O P C E T E G E A I E T C E D E O R
T P E A U A T R I M A A A K M V R E
H E L D B A T H C E O M A P E E K M
Y E N U H S Q U E S O H E N A E S A
G O C C E Y G O D R S F T V I S T F
F A T T E O T S K I F I A A O M O L
T A T K N I U N W A E J H D E I F A
M A R G J G I S C D E C A F E L U N
L U G O E R U M B A O T I L A K E E
T E M N D A I R Y M P I N T E E E E"""
word_lens_raw = """4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6"""
pos_ys_raw = """14 13 16 11 4 13 13 10 17 16 8 15 18 18 16 10 11 3 16 16 9 16 8 6 12 11 8 7 7 9 7 7 17 6 6 5 18 18 18 8 4 2 4 18 18 6 2 2 18 17 16 1 15 14 13 7 1 7 1 1 1 1 1 1 1 1 1 1 1"""
pos_xs_raw = """16 16 12 12 9 18 17 9 12 12 11 12 11 10 10 16 5 6 9 9 12 8 18 2 7 3 17 12 17 6 15 11 6 15 6 6 5 5 4 4 16 4 16 3 2 2 6 18 1 1 1 17 1 1 1 1 7 1 18 17 16 3 15 14 13 7 5 1 1"""
delta_ys_raw = """1 1 -1 -1 1 1 1 1 0 0 -1 -1 0 -1 0 1 -1 0 -1 -1 1 -1 1 -1 0 -1 1 1 1 1 1 1 0 1 1 1 0 -1 -1 0 1 1 1 -1 -1 1 0 1 -1 -1 -1 1 -1 -1 -1 0 1 1 1 1 1 1 1 1 1 0 1 1 0"""
delta_xs_raw = """0 -1 1 0 0 0 0 0 1 1 -1 1 1 1 1 -1 1 1 1 1 1 1 0 0 1 0 0 1 -1 1 -1 -1 1 -1 1 1 1 1 1 1 0 0 -1 1 1 0 1 0 1 1 1 0 1 1 1 1 0 0 -1 -1 -1 0 -1 -1 -1 1 0 0 1"""
# Parse the inputs.
board = [row.split() for row in board_raw.split("\n")]
word_lens = [int(x) for x in word_lens_raw.split()]
pos_ys = [int(x) for x in pos_ys_raw.split()]
pos_xs = [int(x) for x in pos_xs_raw.split()]
delta_ys = [int(x) for x in delta_ys_raw.split()]
delta_xs = [int(x) for x in delta_xs_raw.split()]
# Generate a new zero'ed out board.
board_fresh = [["_" for _ in range(len(board))] for _ in range(len(board))]
for i,l in enumerate(word_lens):
for k in range(l):
y = pos_ys[i] - 1 + delta_ys[i]*k
x = pos_xs[i] - 1 + delta_xs[i]*k
board_fresh[y][x] = board[y][x]
for row in board_fresh:
print(" ".join(row))
print("\nLeftover squares:", sum([sum([1 for _ in row if _ == "_"]) for row in board_fresh]))
if __name__ == "__main__":
parse_minizinc_output()
# "happyholidays" - 13
# "merrychristmas" - 14
# "verymerrychristmas" - 18
# "icallitajonderword" - 18
# "merrychristmasmaria" - 19
# "haveamerrychristmas" - 19
# "doyoulikeyourpresent" - 20
# "mariachristmaspresent" - 21
# "mariaschristmaspresent" - 22
# "howdoyoulikeyourpresent" - 23
# "haveaverymerrychristmas" - 23
# "ihopeyoulikeyourpresent" - 23
# "doesmarialikeherpresent" - 23
# "thistookalongtimetomake" - 23
# "doyoulikeyourjonderword" - 23
# "mariadoyoulikethepresent" - 24
# "mariadoyoulikeyourpresent" - 25
# "whatdoyouthinkofyourpresent" - 27
|
import pytest
from django.urls import reverse
from harrastuspassi.models import Organizer
@pytest.mark.django_db
def test_organizer_list_returns_only_editable_for_authenticated_user(user_api_client, user2_api_client, api_client):
""" Organizer endpoint should return only editable organizers for authenticated user """
api_url = reverse('organizer-list')
response = user_api_client.get(api_url)
assert response.status_code == 200
assert len(response.data) == 0
data_for_user = {'name': 'organizer for user'}
response = user_api_client.post(api_url, data_for_user)
data_for_user2 = {'name': 'organizer for user 2'}
response = user2_api_client.post(api_url, data_for_user2)
# user should not not receive organizer created by user2
response = user_api_client.get(api_url)
assert len(response.data) == 1
response_json = response.json()[0]
assert response_json['name'] == data_for_user['name']
# user2 should not receive organizer created by user
response = user2_api_client.get(api_url)
assert len(response.data) == 1
response_json = response.json()[0]
assert response_json['name'] == data_for_user2['name']
# unauthenticated user should receive both organizers
response = api_client.get(api_url)
assert len(response.data) == 2
|
import numpy as np
import os
import urllib.request
import gzip
import struct
def download_data(url, force_download=True):
fname = url.split("/")[-1]
if force_download or not os.path.exists(fname):
urllib.request.urlretrieve(url, fname)
return fname
def read_data(label_url, image_url):
with gzip.open(download_data(label_url)) as flbl:
magic, num = struct.unpack(">II", flbl.read(8))
label = np.fromstring(flbl.read(), dtype=np.int8)
with gzip.open(download_data(image_url), 'rb') as fimg:
magic, num, rows, cols = struct.unpack(">IIII", fimg.read(16))
image = np.fromstring(fimg.read(), dtype=np.uint8).reshape(len(label), rows, cols)
return (label, image)
path='http://yann.lecun.com/exdb/mnist/'
(train_lbl, train_img) = read_data(
path+'train-labels-idx1-ubyte.gz', path+'train-images-idx3-ubyte.gz')
(val_lbl, val_img) = read_data(
path+'t10k-labels-idx1-ubyte.gz', path+'t10k-images-idx3-ubyte.gz')
import mxnet as mx
def to4d(img):
return img.reshape(img.shape[0], 1, 28, 28).astype(np.float32)/255
batch_size = 100
train_iter = mx.io.NDArrayIter(to4d(train_img), train_lbl, batch_size, shuffle=True)
val_iter = mx.io.NDArrayIter(to4d(val_img), val_lbl, batch_size)
# Create a place holder variable for the input data
data = mx.sym.Variable('data')
# Flatten the data from 4-D shape (batch_size, num_channel, width, height)
# into 2-D (batch_size, num_channel*width*height)
data = mx.sym.Flatten(data=data)
# The first fully-connected layer
fc1 = mx.sym.FullyConnected(data=data, name='fc1', num_hidden=128)
# Apply relu to the output of the first fully-connnected layer
act1 = mx.sym.Activation(data=fc1, name='relu1', act_type="relu")
# The second fully-connected layer and the according activation function
fc2 = mx.sym.FullyConnected(data=act1, name='fc2', num_hidden = 64)
act2 = mx.sym.Activation(data=fc2, name='relu2', act_type="relu")
# The thrid fully-connected layer, note that the hidden size should be 10, which is the number of unique digits
fc3 = mx.sym.FullyConnected(data=act2, name='fc3', num_hidden=10)
# The softmax and loss layer
mlp = mx.sym.SoftmaxOutput(data=fc3, name='softmax')
# We visualize the network structure with output size (the batch_size is ignored.)
shape = {"data" : (batch_size, 1, 28, 28)}
# @@@ AUTOTEST_OUTPUT_IGNORED_CELL
import logging
logging.getLogger().setLevel(logging.DEBUG)
model = mx.model.FeedForward(
ctx = mx.gpu(0),
symbol = mlp, # network structure
num_epoch = 10, # number of data passes for training
learning_rate = 0.1 # learning rate of SGD
)
model.fit(
X=train_iter, # training data
eval_data=val_iter, # validation data
batch_end_callback = mx.callback.Speedometer(batch_size, 200) # output progress for each 200 data batches
)
|
'''
Users URL Configuration
'''
from django.urls import path
from . import views
urlpatterns = [
path('user/signup/', views.signup_user),
path('user/signin/', views.signin_user),
path('user/change_password/', views.change_password_user),
path('comment/add/', views.add_comment),
path('comment/delete/', views.delete_comment),
path('comment/report/', views.report_comment),
path('comment/search/article/', views.search_comment_by_article),
path('article/add/', views.add_article),
path('article/search/title/', views.search_article_by_title),
path('article/search/', views.search_article),
path('appcomment/add/', views.add_appcomment),
path('appcomment/search/mycomment/', views.search_appcomments_by_user)
]
|
# Copyright (c) OpenMMLab. All rights reserved.
from copy import deepcopy
from functools import partial
from typing import Any, Dict, Optional, Sequence, Tuple, Union
import torch
from mmdeploy.apis.core import PIPELINE_MANAGER
from mmdeploy.core import RewriterContext, patch_model
from mmdeploy.utils import Backend, get_root_logger
from .optimizer import * # noqa
from .passes import optimize_onnx
@PIPELINE_MANAGER.register_pipeline()
def export(model: torch.nn.Module,
args: Union[torch.Tensor, Tuple, Dict],
output_path_prefix: str,
backend: Union[Backend, str] = 'default',
input_metas: Optional[Dict] = None,
context_info: Dict = dict(),
input_names: Optional[Sequence[str]] = None,
output_names: Optional[Sequence[str]] = None,
opset_version: int = 11,
dynamic_axes: Optional[Dict] = None,
verbose: bool = False,
keep_initializers_as_inputs: Optional[bool] = None,
optimize: bool = True,
**kwargs):
"""Export a PyTorch model into ONNX format. This is a wrap of
`torch.onnx.export` with some enhancement.
Examples:
>>> from mmdeploy.apis.onnx import export
>>>
>>> model = create_model()
>>> args = get_input_tensor()
>>>
>>> export(
>>> model,
>>> args,
>>> 'place/to/save/model',
>>> backend='tensorrt',
>>> input_names=['input'],
>>> output_names=['output'],
>>> dynamic_axes={'input': {
>>> 0: 'batch',
>>> 2: 'height',
>>> 3: 'width'
>>> }})
Args:
model (torch.nn.Module): the model to be exported.
args (torch.Tensor|Tuple|Dict): Dummy input of the model.
output_path_prefix (str): The output file prefix. The model will
be saved to `<output_path_prefix>.onnx`.
backend (Backend|str): Which backend will the graph be used. Different
backend would generate different graph.
input_metas (Dict): The constant inputs of the model.
context_info (Dict): The information that would be used in the context
of exporting.
input_names (Sequence[str]): The input names of the model.
output_names (Sequence[str]): The output names of the model.
opset_version (int): The version of ONNX opset version. 11 as default.
dynamic_axes (Dict): The information used to determine which axes are
dynamic.
verbose (bool): Enable verbose model on `torch.onnx.export`.
keep_initializers_as_inputs (bool): Whether we should add inputs for
each initializer.
optimize (bool): Perform optimize on model.
"""
output_path = output_path_prefix + '.onnx'
logger = get_root_logger()
logger.info(f'Export PyTorch model to ONNX: {output_path}.')
def _add_or_update(cfg: dict, key: str, val: Any):
if key in cfg and isinstance(cfg[key], dict) and isinstance(val, dict):
cfg[key].update(val)
else:
cfg[key] = val
context_info = deepcopy(context_info)
deploy_cfg = context_info.pop('deploy_cfg', dict())
ir_config = dict(
type='onnx',
input_names=input_names,
output_names=output_names,
opset_version=opset_version,
dynamic_axes=dynamic_axes,
verbose=verbose,
keep_initializers_as_inputs=keep_initializers_as_inputs)
_add_or_update(deploy_cfg, 'ir_config', ir_config)
if isinstance(backend, Backend):
backend = backend.value
backend_config = dict(type=backend)
_add_or_update(deploy_cfg, 'backend_config', backend_config)
context_info['cfg'] = deploy_cfg
if 'backend' not in context_info:
context_info['backend'] = backend
if 'opset' not in context_info:
context_info['opset'] = opset_version
# patch model
patched_model = patch_model(model, cfg=deploy_cfg, backend=backend)
if 'onnx_custom_passes' not in context_info:
onnx_custom_passes = optimize_onnx if optimize else None
context_info['onnx_custom_passes'] = onnx_custom_passes
with RewriterContext(**context_info), torch.no_grad():
# patch input_metas
if input_metas is not None:
assert isinstance(
input_metas, dict
), f'Expect input_metas type is dict, get {type(input_metas)}.'
model_forward = model.forward
model.forward = partial(model.forward, **input_metas)
torch.onnx.export(
patched_model,
args,
output_path,
export_params=True,
input_names=input_names,
output_names=output_names,
opset_version=opset_version,
dynamic_axes=dynamic_axes,
keep_initializers_as_inputs=keep_initializers_as_inputs,
verbose=verbose)
if input_metas is not None:
model.forward = model_forward
|
# -*- coding: utf-8 -*-
"""
Shorthands for type constructing, promotions, etc.
"""
from __future__ import print_function, division, absolute_import
import inspect
from numba.typesystem import types, universe
from numba.typesystem.types import *
__all__ = [] # set below
integral = []
unsigned_integral = []
floating = []
complextypes = []
numeric = []
native_integral = []
domain_name = "numba"
ranking = ["bool", "int", "float", "complex", "object"]
def rank(type):
return ranking.index(type.kind)
#------------------------------------------------------------------------
# All unit types
#------------------------------------------------------------------------
def unit(*args, **kwargs):
ty = types.unit(*args, **kwargs)
if ty.is_int:
ty.signed = ty.typename in universe.signed
if ty.is_int or ty.is_float:
ty.itemsize = universe.default_type_sizes[ty.typename]
# Add types to categories numeric, integral, floating, etc...
if ty.is_int:
integral.append(ty)
if not ty.signed:
unsigned_integral.append(ty)
if universe.is_native_int(ty.typename):
native_integral.append(ty)
elif ty.is_float:
floating.append(ty)
if ty.is_numeric:
numeric.append(ty)
return ty
# Numeric types
char = unit("int", "char", flags=["numeric"])
uchar = unit("int", "uchar", flags=["numeric"])
short = unit("int", "short", flags=["numeric"])
ushort = unit("int", "ushort", flags=["numeric"])
int_ = unit("int", "int", flags=["numeric"])
uint = unit("int", "uint", flags=["numeric"])
long_ = unit("int", "long", flags=["numeric"])
ulong = unit("int", "ulong", flags=["numeric"])
longlong = unit("int", "longlong", flags=["numeric"])
ulonglong = unit("int", "ulonglong", flags=["numeric"])
int8 = unit("int", "int8", flags=["numeric"])
int16 = unit("int", "int16", flags=["numeric"])
int32 = unit("int", "int32", flags=["numeric"])
int64 = unit("int", "int64", flags=["numeric"])
uint8 = unit("int", "uint8", flags=["numeric"])
uint16 = unit("int", "uint16", flags=["numeric"])
uint32 = unit("int", "uint32", flags=["numeric"])
uint64 = unit("int", "uint64", flags=["numeric"])
size_t = unit("int", "size_t", flags=["numeric"])
npy_intp = unit("int", "npy_intp", flags=["numeric"])
Py_ssize_t = unit("int", "Py_ssize_t", flags=["numeric"])
Py_uintptr_t = unit("int", "Py_uintptr_t", flags=["numeric"])
float32 = unit("float", "float32", flags=["numeric"])
float64 = unit("float", "float64", flags=["numeric"])
float128 = unit("float", "float128", flags=["numeric"])
float_, double, longdouble = float32, float64, float128
complex64 = complex_(float32)
complex128 = complex_(float64)
complex256 = complex_(float128)
bool_ = unit("bool", "bool", flags=["int", "numeric"])
null = unit("null", "null", flags=["pointer"])
void = unit("void", "void")
obj_type = lambda name: unit(name, name, flags=["object"])
# Add some unit types... (objects)
object_ = obj_type("object")
unicode_ = obj_type("unicode")
none = obj_type("none")
ellipsis = obj_type("ellipsis")
slice_ = obj_type("slice")
newaxis = obj_type("newaxis")
range_ = obj_type("range")
string_ = unit("string", "string", flags=[#"object",
"c_string"])
c_string_type = string_
complextypes.extend([complex64, complex128, complex256])
tuple_of_obj = tuple_(object_, -1)
list_of_obj = list_(object_, -1)
dict_of_obj = dict_(object_, object_, -1)
# ______________________________________________________________________
O = object_
b1 = bool_
i1 = int8
i2 = int16
i4 = int32
i8 = int64
u1 = uint8
u2 = uint16
u4 = uint32
u8 = uint64
f4 = float32
f8 = float64
f16 = float128
c8 = complex64
c16 = complex128
c32 = complex256
for name, value in list(globals().iteritems()): # TODO: Do this better
if not inspect.ismodule(value) and not name.startswith("_"):
__all__.append(name)
|
from setuptools import setup, find_packages
setup(name='distance_sensor_118X',
version='0.1',
description = 'interface to the micro-epsilon optoNCDT ILR 118X laser distance sensors.',
author = 'William Dickson, IO Rodeo Inc.',
author_email = 'will@iorodeo.com',
packages=find_packages(),
)
|
import math
import sys
if __name__ == '__main__':
area = int(sys.stdin.readline().strip())
print(math.sqrt(area) * 4)
|
import numpy as np
weights = {
'excellent': 3,
'good': 2,
'fair': 1
}
data = np.array([
'excellent',
'fair',
'good',
'excellent'
])
# Parsing the categories to weights
data = np.fromiter(map(lambda x: weights[x], data), dtype=np.int)
# Creating a zero matrix for the Proximity measure matrix
dmatrix = np.zeros((data.shape[0], data.shape[0]))
# Get Pmeasure matrix dimensions
x, y = dmatrix.shape
# Max range in the array
M = data.max()
# Looping a lower triangular matrix
for j in range(0, y):
for i in range(j+1, y):
# d(i, j) = Z(i) - Z(j)
# Z(i) = (r(i) - 1) / M - 1
# Where Z(i) is the norm of "i" and r(i) is the weight of "i"
# Carrying out the sum of fractions and simplifying,
# the following equation remains
dmatrix[i,j] = np.abs(data[i] - data[j])/(M - 1)
print(dmatrix) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.