text stringlengths 5 22M | id stringlengths 12 177 | metadata dict | __index_level_0__ int64 0 1.37k |
|---|---|---|---|
#!/bin/env python
# -*- coding: utf-8 -*-
##
# resource_estimator.py: Qiskit result for microsoft.estimator target.
##
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
##
from azure.quantum.target.microsoft import MicrosoftEstimatorResult
def make_estimator_result(data):
... | azure-quantum-python/azure-quantum/azure/quantum/qiskit/results/resource_estimator.py/0 | {
"file_path": "azure-quantum-python/azure-quantum/azure/quantum/qiskit/results/resource_estimator.py",
"repo_id": "azure-quantum-python",
"token_count": 294
} | 407 |
##
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
##
from typing import Any, Dict
from warnings import warn
from azure.quantum.target.target import (
Target,
_determine_shots_or_deprecated_num_shots,
)
from azure.quantum.job.job import Job
from azure.quantum.workspace import Workspace... | azure-quantum-python/azure-quantum/azure/quantum/target/quantinuum.py/0 | {
"file_path": "azure-quantum-python/azure-quantum/azure/quantum/target/quantinuum.py",
"repo_id": "azure-quantum-python",
"token_count": 3744
} | 408 |
open Microsoft.Quantum.Arithmetic;
@EntryPoint()
operation EstimateMultiplier(bitwidth : Int) : Unit {
use xs = Qubit[bitwidth];
use ys = Qubit[bitwidth];
use zs = Qubit[2 * bitwidth];
MultiplyI(LittleEndian(xs), LittleEndian(ys), LittleEndian(zs));
}
| azure-quantum-python/azure-quantum/examples/resource_estimation/cli_test_files/multiplier.qs/0 | {
"file_path": "azure-quantum-python/azure-quantum/examples/resource_estimation/cli_test_files/multiplier.qs",
"repo_id": "azure-quantum-python",
"token_count": 109
} | 409 |
##
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
##
import re
import os
import json
import time
from unittest.mock import patch
from vcr.request import Request as VcrRequest
from azure_devtools.scenario_tests.base import ReplayableTest
from azure_devtools.scenario_tests... | azure-quantum-python/azure-quantum/tests/unit/common.py/0 | {
"file_path": "azure-quantum-python/azure-quantum/tests/unit/common.py",
"repo_id": "azure-quantum-python",
"token_count": 12406
} | 410 |
interactions:
- request:
body: client_id=PLACEHOLDER&grant_type=client_credentials&client_info=1&client_secret=PLACEHOLDER&scope=https%3A%2F%2Fquantum.microsoft.com%2F.default
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
Connection:
- keep-alive
... | azure-quantum-python/azure-quantum/tests/unit/recordings/test_job_get_results_with_expired_sas_token.yaml/0 | {
"file_path": "azure-quantum-python/azure-quantum/tests/unit/recordings/test_job_get_results_with_expired_sas_token.yaml",
"repo_id": "azure-quantum-python",
"token_count": 16901
} | 411 |
interactions:
- request:
body: client_id=PLACEHOLDER&grant_type=client_credentials&client_assertion=PLACEHOLDER&client_info=1&client_assertion_type=PLACEHOLDER&scope=https%3A%2F%2Fquantum.microsoft.com%2F.default
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
... | azure-quantum-python/azure-quantum/tests/unit/recordings/test_quil_syntax_error.yaml/0 | {
"file_path": "azure-quantum-python/azure-quantum/tests/unit/recordings/test_quil_syntax_error.yaml",
"repo_id": "azure-quantum-python",
"token_count": 12213
} | 412 |
interactions:
- request:
body: null
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
Connection:
- keep-alive
User-Agent:
- azsdk-python-quantum/0.0.1 Python/3.9.18 (Windows-10-10.0.22631-SP0)
x-ms-quantum-api-key:
- PLACEHOLDER
... | azure-quantum-python/azure-quantum/tests/unit/recordings/test_workspace_auth_connection_string_api_key.yaml/0 | {
"file_path": "azure-quantum-python/azure-quantum/tests/unit/recordings/test_workspace_auth_connection_string_api_key.yaml",
"repo_id": "azure-quantum-python",
"token_count": 764
} | 413 |
##
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
##
import pytest
from pytest import raises
from os import path
import re
from azure.quantum.target.microsoft.target import DistillationUnitSpecification, MicrosoftEstimatorConstraints, ProtocolSpecificDistillationUnitSpecif... | azure-quantum-python/azure-quantum/tests/unit/test_microsoft_qc.py/0 | {
"file_path": "azure-quantum-python/azure-quantum/tests/unit/test_microsoft_qc.py",
"repo_id": "azure-quantum-python",
"token_count": 10337
} | 414 |
<jupyter_start><jupyter_text>👋🌍 Hello, world: Submit a Q job to QuantinuumIn this notebook, we'll review the basics of Azure Quantum by submitting a simple *job*, or quantum program, to [Quantinuum](https://www.quantinuum.com/). We will use [Q](https://learn.microsoft.com/azure/quantum/user-guide/) to express the qua... | azure-quantum-python/samples/hello-world/HW-quantinuum-qsharp.ipynb/0 | {
"file_path": "azure-quantum-python/samples/hello-world/HW-quantinuum-qsharp.ipynb",
"repo_id": "azure-quantum-python",
"token_count": 1646
} | 415 |
#!/usr/bin/env python3
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
import os
from typing import List
from urllib.request import urlopen
import json
ALLOWED_RELEASE_TYPES = ["major", "minor", "patch"]
ALLOWED_BUILD_TYPES = ["stable", "rc", "dev"]
PACKAGE_NAME = "azure-quantum"
PYPI_URL = ... | azure-quantum-python/set_version.py/0 | {
"file_path": "azure-quantum-python/set_version.py",
"repo_id": "azure-quantum-python",
"token_count": 1769
} | 416 |
/*------------------------------------
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
All rights reserved.
------------------------------------ */
import React from "react";
import { create } from "react-test-renderer";
import { IColumn, IGroup, ThemeProvider } from "@fluentui/react";
import... | azure-quantum-python/visualization/react-lib/src/components/table/__tests__/Table.test.tsx/0 | {
"file_path": "azure-quantum-python/visualization/react-lib/src/components/table/__tests__/Table.test.tsx",
"repo_id": "azure-quantum-python",
"token_count": 1621
} | 417 |
BiStringBuilder
===============
.. js:autoclass:: BiStringBuilder
:members:
| bistring/docs/JavaScript/BiStringBuilder.rst/0 | {
"file_path": "bistring/docs/JavaScript/BiStringBuilder.rst",
"repo_id": "bistring",
"token_count": 26
} | 418 |
/*!
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT license.
*/
import Alignment, { BiIndex, Bounds } from "./alignment";
import BiString, { AnyString } from "./bistring";
import { cloneRegExp } from "./regex";
/**
* A token extracted from a string.
*/
export class Token {
... | bistring/js/src/token.ts/0 | {
"file_path": "bistring/js/src/token.ts",
"repo_id": "bistring",
"token_count": 3465
} | 419 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT license.
import icu
from typing import Callable, Optional
from ._bistr import bistr
from ._builder import BistrBuilder
def _edit(bs: bistr, op: Callable, locale: Optional[str] = None) -> bistr:
builder = BistrBuilder(bs)
ed... | bistring/python/bistring/_icu.py/0 | {
"file_path": "bistring/python/bistring/_icu.py",
"repo_id": "bistring",
"token_count": 960
} | 420 |
[run]
source = ./libraries/
omit =
*/tests/*
setup.py
*/botbuilder-schema/* | botbuilder-python/.coveragerc/0 | {
"file_path": "botbuilder-python/.coveragerc",
"repo_id": "botbuilder-python",
"token_count": 39
} | 421 |
{
"bot_name": "my_chat_bot",
"bot_description": "Demonstrate the core capabilities of the Microsoft Bot Framework"
} | botbuilder-python/generators/app/templates/core/cookiecutter.json/0 | {
"file_path": "botbuilder-python/generators/app/templates/core/cookiecutter.json",
"repo_id": "botbuilder-python",
"token_count": 40
} | 422 |
Need deploy BotAppService before AzureBot
---
az login
az deployment group create --resource-group <group-name> --template-file <template-file> --parameters @<parameters-file>
---
# parameters-for-template-BotApp-with-rg:
**appServiceName**:(required) The Name of the Bot App Service.
(choose an existingAppServiceP... | botbuilder-python/generators/app/templates/core/{{cookiecutter.bot_name}}/deploymentTemplates/deployUseExistResourceGroup/readme.md/0 | {
"file_path": "botbuilder-python/generators/app/templates/core/{{cookiecutter.bot_name}}/deploymentTemplates/deployUseExistResourceGroup/readme.md",
"repo_id": "botbuilder-python",
"token_count": 606
} | 423 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from enum import Enum
from typing import Dict
from botbuilder.ai.luis import LuisRecognizer
from botbuilder.core import IntentScore, TopIntent, TurnContext
from booking_details import BookingDetails
class Intent(Enum):
... | botbuilder-python/generators/app/templates/core/{{cookiecutter.bot_name}}/helpers/luis_helper.py/0 | {
"file_path": "botbuilder-python/generators/app/templates/core/{{cookiecutter.bot_name}}/helpers/luis_helper.py",
"repo_id": "botbuilder-python",
"token_count": 1863
} | 424 |
Need deploy BotAppService before AzureBot
---
az login
az deployment sub create --template-file <template-file> --location <bot-region> --parameters @<parameters-file>
---
# parameters-for-template-BotApp-new-rg:
**groupName**:(required) Specifies the name of the new Resource Group.
**groupLocation**:(... | botbuilder-python/generators/app/templates/echo/{{cookiecutter.bot_name}}/deploymentTemplates/deployWithNewResourceGroup/readme.md/0 | {
"file_path": "botbuilder-python/generators/app/templates/echo/{{cookiecutter.bot_name}}/deploymentTemplates/deployWithNewResourceGroup/readme.md",
"repo_id": "botbuilder-python",
"token_count": 715
} | 425 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from slack.web.classes.attachments import Attachment
from slack.web.classes.blocks import Block
class SlackMessage:
def __init__(self, **kwargs):
self.ephemeral = kwargs.get("ephemeral")
self.as_user = k... | botbuilder-python/libraries/botbuilder-adapters-slack/botbuilder/adapters/slack/slack_message.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-adapters-slack/botbuilder/adapters/slack/slack_message.py",
"repo_id": "botbuilder-python",
"token_count": 583
} | 426 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from botbuilder.core import BotTelemetryClient, NullTelemetryClient
class LuisRecognizerOptions:
def __init__(
self,
include_api_results: bool = None,
telemetry_client: BotTelemetryClient = NullT... | botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/luis/luis_recognizer_options.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/luis/luis_recognizer_options.py",
"repo_id": "botbuilder-python",
"token_count": 191
} | 427 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from msrest.serialization import Model
class Metadata(Model):
"""Metadata associated with the answer."""
_attribute_map = {
"name": {"key": "name", "type": "str"},
"value": {"key": "value", "type": ... | botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/qna/models/metadata.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/qna/models/metadata.py",
"repo_id": "botbuilder-python",
"token_count": 190
} | 428 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from copy import copy
from typing import Any, List, Union
import json
import requests
from aiohttp import ClientResponse, ClientSession
from botbuilder.core import BotTelemetryClient, NullTelemetryClient, TurnContext
from b... | botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/qna/utils/generate_answer_utils.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/qna/utils/generate_answer_utils.py",
"repo_id": "botbuilder-python",
"token_count": 3361
} | 429 |
{
"text": "12 years old and 3 days old and monday july 3rd, 2019 and every monday and between 3am and 5:30am and 4 acres and 4 pico meters and chrimc@hotmail.com and $4 and $4.25 and also 32 and 210.4 and first and 10% and 10.5% and 425-555-1234 and 3 degrees and -27.5 degrees c and the next one and the previous one"... | botbuilder-python/libraries/botbuilder-ai/tests/luis/test_data/Composite1_v3.json/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/tests/luis/test_data/Composite1_v3.json",
"repo_id": "botbuilder-python",
"token_count": 25710
} | 430 |
{
"query": "I want to travel on united",
"topScoringIntent": {
"intent": "Travel",
"score": 0.8785189
},
"intents": [
{
"intent": "Travel",
"score": 0.8785189
}
],
"entities": [
{
"entity": "united",
"type": ... | botbuilder-python/libraries/botbuilder-ai/tests/luis/test_data/MultipleIntents_ListEntityWithSingleValue.json/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/tests/luis/test_data/MultipleIntents_ListEntityWithSingleValue.json",
"repo_id": "botbuilder-python",
"token_count": 329
} | 431 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import base64
import json
from abc import ABC, abstractmethod
from _sha256 import sha256
class TelemetryProcessor(ABC):
"""Application Insights Telemetry Processor base class for Bot"""
@property
def activity_js... | botbuilder-python/libraries/botbuilder-applicationinsights/botbuilder/applicationinsights/processor/telemetry_processor.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-applicationinsights/botbuilder/applicationinsights/processor/telemetry_processor.py",
"repo_id": "botbuilder-python",
"token_count": 1565
} | 432 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import pytest
from azure.core.exceptions import ResourceNotFoundError
from azure.storage.blob.aio import BlobServiceClient
from botbuilder.core import StoreItem
from botbuilder.azure import BlobStorage, BlobStorageSettings
fr... | botbuilder-python/libraries/botbuilder-azure/tests/test_blob_storage.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-azure/tests/test_blob_storage.py",
"repo_id": "botbuilder-python",
"token_count": 3557
} | 433 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
# pylint: disable=too-many-lines
import asyncio
import base64
import json
import os
import uuid
from http import HTTPStatus
from typing import List, Callable, Awaitable, Union, Dict
from msrest.serialization import Model
fr... | botbuilder-python/libraries/botbuilder-core/botbuilder/core/bot_framework_adapter.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/bot_framework_adapter.py",
"repo_id": "botbuilder-python",
"token_count": 24039
} | 434 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from abc import abstractmethod
from typing import Any, Awaitable, Callable, List
from botbuilder.core import Middleware, TurnContext
from botbuilder.schema import Activity, ConversationReference
from .trace_activity import ... | botbuilder-python/libraries/botbuilder-core/botbuilder/core/inspection/interception_middleware.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/inspection/interception_middleware.py",
"repo_id": "botbuilder-python",
"token_count": 1591
} | 435 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from .bot_state import BotState
from .turn_context import TurnContext
from .storage import Storage
class PrivateConversationState(BotState):
def __init__(self, storage: Storage, namespace: str = ""):
async def a... | botbuilder-python/libraries/botbuilder-core/botbuilder/core/private_conversation_state.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/private_conversation_state.py",
"repo_id": "botbuilder-python",
"token_count": 529
} | 436 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from botbuilder.schema import Activity
from .bot_framework_skill import BotFrameworkSkill
class SkillConversationIdFactoryOptions:
def __init__(
self,
from_bot_oauth_scope: str,
from_bot_id: str,... | botbuilder-python/libraries/botbuilder-core/botbuilder/core/skills/skill_conversation_id_factory_options.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/skills/skill_conversation_id_factory_options.py",
"repo_id": "botbuilder-python",
"token_count": 227
} | 437 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import List, Tuple
from botframework.connector import Channels
from botframework.connector.aio import ConnectorClient
from botframework.connector.teams import TeamsConnectorClient
from botbuilder.core.teams.teams... | botbuilder-python/libraries/botbuilder-core/botbuilder/core/teams/teams_info.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/teams/teams_info.py",
"repo_id": "botbuilder-python",
"token_count": 6076
} | 438 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from unittest.mock import Mock
from typing import Any
import aiounittest
from botbuilder.core.streaming import StreamingRequestHandler
from botframework.streaming.transport.web_socket import (
WebSocket,
WebSocketSt... | botbuilder-python/libraries/botbuilder-core/tests/streaming/test_streaming_request_handler.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/tests/streaming/test_streaming_request_handler.py",
"repo_id": "botbuilder-python",
"token_count": 527
} | 439 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import pytest
from botbuilder.core import MemoryStorage, StoreItem
from botbuilder.testing import StorageBaseTests
def get_storage():
return MemoryStorage()
class SimpleStoreItem(StoreItem):
def __init__(self, co... | botbuilder-python/libraries/botbuilder-core/tests/test_memory_storage.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/tests/test_memory_storage.py",
"repo_id": "botbuilder-python",
"token_count": 2614
} | 440 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import Union
from .token import Token
class Tokenizer:
"""Provides a default tokenizer implementation."""
@staticmethod
def default_tokenizer( # pylint: disable=unused-argument
text: str, ... | botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/choices/tokenizer.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/choices/tokenizer.py",
"repo_id": "botbuilder-python",
"token_count": 1390
} | 441 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import Iterable
from botbuilder.core import ComponentRegistration
from botbuilder.dialogs.memory import (
ComponentMemoryScopesBase,
ComponentPathResolversBase,
PathResolverBase,
)
from botbuilder.dia... | botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/dialogs_component_registration.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/dialogs_component_registration.py",
"repo_id": "botbuilder-python",
"token_count": 514
} | 442 |
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# ---------------------------------------------------------------------... | botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/memory/scopes/__init__.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/memory/scopes/__init__.py",
"repo_id": "botbuilder-python",
"token_count": 308
} | 443 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import Callable, Dict
from botbuilder.core import TurnContext
from botbuilder.dialogs import (
Dialog,
DialogContext,
DialogInstance,
DialogReason,
DialogTurnResult,
)
from botbuilder.schema i... | botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/prompts/activity_prompt.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/prompts/activity_prompt.py",
"repo_id": "botbuilder-python",
"token_count": 3539
} | 444 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
# pylint: disable=pointless-string-statement
from collections import namedtuple
import aiounittest
from botbuilder.core import ConversationState, MemoryStorage, TurnContext, UserState
from botbuilder.core.adapters import Te... | botbuilder-python/libraries/botbuilder-dialogs/tests/memory/scopes/test_memory_scopes.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/tests/memory/scopes/test_memory_scopes.py",
"repo_id": "botbuilder-python",
"token_count": 8837
} | 445 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from enum import Enum
class RoleTypes(str, Enum):
user = "user"
bot = "bot"
skill = "skill"
class ActivityTypes(str, Enum):
message = "message"
contact_relation_update = "contactRelationUpdate"
con... | botbuilder-python/libraries/botbuilder-schema/botbuilder/schema/_connector_client_enums.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-schema/botbuilder/schema/_connector_client_enums.py",
"repo_id": "botbuilder-python",
"token_count": 891
} | 446 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import List, Union
from botbuilder.core import (
AutoSaveStateMiddleware,
ConversationState,
MemoryStorage,
Middleware,
StatePropertyAccessor,
TurnContext,
)
from botbuilder.core.adapters... | botbuilder-python/libraries/botbuilder-testing/botbuilder/testing/dialog_test_client.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-testing/botbuilder/testing/dialog_test_client.py",
"repo_id": "botbuilder-python",
"token_count": 1926
} | 447 |
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# ---------------------------------------------------------------------... | botbuilder-python/libraries/botframework-connector/botframework/connector/aio/operations_async/_attachments_operations_async.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/botframework/connector/aio/operations_async/_attachments_operations_async.py",
"repo_id": "botbuilder-python",
"token_count": 2208
} | 448 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from abc import ABC
class AuthenticationConstants(ABC):
# TO CHANNEL FROM BOT: Login URL
#
# DEPRECATED: DO NOT USE
TO_CHANNEL_FROM_BOT_LOGIN_URL = (
"https://login.microsoftonline.com/botframework.c... | botbuilder-python/libraries/botframework-connector/botframework/connector/auth/authentication_constants.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/botframework/connector/auth/authentication_constants.py",
"repo_id": "botbuilder-python",
"token_count": 2147
} | 449 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from abc import ABC
from msal import ConfidentialClientApplication
from .app_credentials import AppCredentials
class MicrosoftAppCredentials(AppCredentials, ABC):
"""
AppCredentials implementation using applicatio... | botbuilder-python/libraries/botframework-connector/botframework/connector/auth/microsoft_app_credentials.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/botframework/connector/auth/microsoft_app_credentials.py",
"repo_id": "botbuilder-python",
"token_count": 859
} | 450 |
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# ---------------------------------------------------------------------... | botbuilder-python/libraries/botframework-connector/botframework/connector/models/__init__.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/botframework/connector/models/__init__.py",
"repo_id": "botbuilder-python",
"token_count": 72
} | 451 |
interactions:
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.1 msrest/0.4.23
azure-bo... | botbuilder-python/libraries/botframework-connector/tests/recordings/test_attachments_get_attachment_view_with_invalid_attachment_id_fails.yaml/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/tests/recordings/test_attachments_get_attachment_view_with_invalid_attachment_id_fails.yaml",
"repo_id": "botbuilder-python",
"token_count": 423
} | 452 |
interactions:
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.1 msrest/0.4.23
azure-bo... | botbuilder-python/libraries/botframework-connector/tests/recordings/test_conversations_get_conversation_members_invalid_id_fails.yaml/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/tests/recordings/test_conversations_get_conversation_members_invalid_id_fails.yaml",
"repo_id": "botbuilder-python",
"token_count": 501
} | 453 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import asyncio
import pytest
from botbuilder.schema import (
Activity,
ActivityTypes,
Attachment,
AttachmentLayoutTypes,
CardImage,
ChannelAccount,
ConversationParameters,
ErrorResponseExcepti... | botbuilder-python/libraries/botframework-connector/tests/test_conversations.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/tests/test_conversations.py",
"repo_id": "botbuilder-python",
"token_count": 6719
} | 454 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from abc import ABC
from uuid import UUID
from typing import List
from botframework.streaming.payloads.models import Header
class Assembler(ABC):
def __init__(self, end: bool, identifier: UUID):
self.end = en... | botbuilder-python/libraries/botframework-streaming/botframework/streaming/payloads/assemblers/assembler.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-streaming/botframework/streaming/payloads/assemblers/assembler.py",
"repo_id": "botbuilder-python",
"token_count": 268
} | 455 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import json
from typing import List
from .serializable import Serializable
from .stream_description import StreamDescription
class ResponsePayload(Serializable):
def __init__(
self, *, status_code: int = None, ... | botbuilder-python/libraries/botframework-streaming/botframework/streaming/payloads/models/response_payload.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-streaming/botframework/streaming/payloads/models/response_payload.py",
"repo_id": "botbuilder-python",
"token_count": 415
} | 456 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from abc import ABC
class StreamingTransportService(ABC):
async def start(self):
raise NotImplementedError()
async def send(self, request):
raise NotImplementedError()
| botbuilder-python/libraries/botframework-streaming/botframework/streaming/transport/streaming_transport_service.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-streaming/botframework/streaming/transport/streaming_transport_service.py",
"repo_id": "botbuilder-python",
"token_count": 90
} | 457 |
from unittest import TestCase
from uuid import UUID, uuid4
from botframework.streaming.payloads import StreamManager
from botframework.streaming.payloads.assemblers import PayloadStreamAssembler
from botframework.streaming.payloads.models import Header
class TestPayloadAssembler(TestCase):
def test_ctor_id(self)... | botbuilder-python/libraries/botframework-streaming/tests/test_payload_assembler.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-streaming/tests/test_payload_assembler.py",
"repo_id": "botbuilder-python",
"token_count": 781
} | 458 |
# BotFramework Connector
> see https://aka.ms/autorest
Configuration for generating BotFramework Connector SDK.
``` yaml
add-credentials: true
openapi-type: data-plane
```
The current release for the BotFramework Connector is v3.0.
# Releases
## Connector API 3.0
``` yaml
input-file: ConnectorAPI.json
```
### C... | botbuilder-python/swagger/README.md/0 | {
"file_path": "botbuilder-python/swagger/README.md",
"repo_id": "botbuilder-python",
"token_count": 284
} | 459 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import logging
import sys
import traceback
from datetime import datetime
from aiohttp import web
from aiohttp.web import Request, Response
from botbuilder.core import (
BotFrameworkAdapterSettings,
BotFrameworkHttpCl... | botbuilder-python/tests/experimental/sso/parent/app.py/0 | {
"file_path": "botbuilder-python/tests/experimental/sso/parent/app.py",
"repo_id": "botbuilder-python",
"token_count": 1186
} | 460 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from .app import APP
__all__ = ["APP"]
| botbuilder-python/tests/functional-tests/functionaltestbot/flask_bot_app/__init__.py/0 | {
"file_path": "botbuilder-python/tests/functional-tests/functionaltestbot/flask_bot_app/__init__.py",
"repo_id": "botbuilder-python",
"token_count": 37
} | 461 |
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"botName": {
"defaultValue": "nightly-build-python-linux",
"type": "string",
"minLength": 2
},
"sku": {
... | botbuilder-python/tests/functional-tests/functionaltestbot/template/linux/template.json/0 | {
"file_path": "botbuilder-python/tests/functional-tests/functionaltestbot/template/linux/template.json",
"repo_id": "botbuilder-python",
"token_count": 5164
} | 462 |
# EchoBot
Bot Framework v4 echo bot sample.
This bot has been created using [Bot Framework](https://dev.botframework.com), it shows how to create a simple bot that accepts input from the user and echoes it back.
## Running the sample
- Clone the repository
```bash
git clone https://github.com/Microsoft/botbuilder-py... | botbuilder-python/tests/skills/skills-prototypes/dialog-to-dialog/authentication-bot/README.md/0 | {
"file_path": "botbuilder-python/tests/skills/skills-prototypes/dialog-to-dialog/authentication-bot/README.md",
"repo_id": "botbuilder-python",
"token_count": 388
} | 463 |
#!/usr/bin/env python3
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import os
""" Bot Configuration """
class DefaultConfig:
""" Bot Configuration """
PORT = 3978
APP_ID = os.environ.get("MicrosoftAppId", "")
APP_PASSWORD = os.environ.get("MicrosoftA... | botbuilder-python/tests/skills/skills-prototypes/simple-bot-to-bot/simple-child-bot/config.py/0 | {
"file_path": "botbuilder-python/tests/skills/skills-prototypes/simple-bot-to-bot/simple-child-bot/config.py",
"repo_id": "botbuilder-python",
"token_count": 108
} | 464 |

# About Cascadia Code
Cascadia is a fun new coding font that comes bundled with [Windows Terminal](https://github.com/microsoft/terminal), and is now the default font in Visual Studio as well.
# Font Variants
- `Cascadia Code`: standard version of Cascadia
- `Cascadia Mon... | cascadia-code/README.md/0 | {
"file_path": "cascadia-code/README.md",
"repo_id": "cascadia-code",
"token_count": 1565
} | 465 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="AEacute" format="2">
<advance width="1200"/>
<unicode hex="01FC"/>
<outline>
<component base="AE"/>
<component base="acutecomb.case" xOffset="119"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/A_E_acute.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/A_E_acute.glif",
"repo_id": "cascadia-code",
"token_count": 96
} | 466 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Beta" format="2">
<advance width="1200"/>
<unicode hex="0392"/>
<outline>
<component base="B"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/B_eta.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/B_eta.glif",
"repo_id": "cascadia-code",
"token_count": 74
} | 467 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Dafrican" format="2">
<advance width="1200"/>
<unicode hex="0189"/>
<outline>
<component base="Eth"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/D_african.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/D_african.glif",
"repo_id": "cascadia-code",
"token_count": 76
} | 468 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Ecircumflexacute" format="2">
<advance width="1200"/>
<unicode hex="1EBE"/>
<outline>
<component base="E"/>
<component base="circumflexcomb.case" xOffset="30"/>
<component base="acutecomb.case" xOffset="493" yOffset="248"/>
</outline>
<lib>
<... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/E_circumflexacute.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/E_circumflexacute.glif",
"repo_id": "cascadia-code",
"token_count": 327
} | 469 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="En-cy" format="2">
<advance width="1200"/>
<unicode hex="041D"/>
<outline>
<component base="H"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/E_n-cy.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/E_n-cy.glif",
"repo_id": "cascadia-code",
"token_count": 76
} | 470 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Gheupturn-cy" format="2">
<advance width="1200"/>
<unicode hex="0490"/>
<anchor x="600" y="0" name="bottom"/>
<anchor x="600" y="1420" name="top"/>
<outline>
<contour>
<point x="163" y="0" type="line"/>
<point x="427" y="0" type="line"/>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/G_heupturn-cy.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/G_heupturn-cy.glif",
"repo_id": "cascadia-code",
"token_count": 408
} | 471 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Imacron-cy" format="2">
<advance width="1200"/>
<unicode hex="04E2"/>
<outline>
<component base="Ii-cy"/>
<component base="macroncomb.case"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/I_macron-cy.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/I_macron-cy.glif",
"repo_id": "cascadia-code",
"token_count": 96
} | 472 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="K.half" format="2">
<advance width="840"/>
<outline>
<contour>
<point x="202" y="167" type="line"/>
<point x="565" y="167"/>
<point x="775" y="437"/>
<point x="775" y="639" type="curve"/>
<point x="619" y="639" type="line"/>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/K_.half.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/K_.half.glif",
"repo_id": "cascadia-code",
"token_count": 419
} | 473 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Lcaron" format="2">
<advance width="1200"/>
<unicode hex="013D"/>
<outline>
<contour>
<point x="704" y="1188" type="line"/>
<point x="951" y="1188" type="line"/>
<point x="1041" y="1568" type="line"/>
<point x="754" y="1568" type="lin... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/L_caron.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/L_caron.glif",
"repo_id": "cascadia-code",
"token_count": 372
} | 474 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Ncaron" format="2">
<advance width="1200"/>
<unicode hex="0147"/>
<outline>
<component base="N"/>
<component base="caroncomb.case"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/N_caron.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/N_caron.glif",
"repo_id": "cascadia-code",
"token_count": 90
} | 475 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Ocircumflexacute" format="2">
<advance width="1200"/>
<unicode hex="1ED0"/>
<outline>
<component base="O"/>
<component base="circumflexcomb.case"/>
<component base="acutecomb.case" xOffset="463" yOffset="248"/>
</outline>
<lib>
<dict>
<... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/O_circumflexacute.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/O_circumflexacute.glif",
"repo_id": "cascadia-code",
"token_count": 322
} | 476 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Ohungarumlaut" format="2">
<advance width="1200"/>
<unicode hex="0150"/>
<outline>
<component base="O"/>
<component base="hungarumlautcomb.case"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/O_hungarumlaut.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/O_hungarumlaut.glif",
"repo_id": "cascadia-code",
"token_count": 96
} | 477 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Sacute.loclPLK" format="2">
<advance width="1200"/>
<outline>
<component base="S"/>
<component base="acutecomb.case.loclPLK" xOffset="20"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/S_acute.loclP_L_K_.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/S_acute.loclP_L_K_.glif",
"repo_id": "cascadia-code",
"token_count": 95
} | 478 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Tbar" format="2">
<advance width="1200"/>
<unicode hex="0166"/>
<outline>
<contour>
<point x="172" y="561" type="line"/>
<point x="1028" y="561" type="line"/>
<point x="1028" y="803" type="line"/>
<point x="172" y="803" type="line"/>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/T_bar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/T_bar.glif",
"repo_id": "cascadia-code",
"token_count": 368
} | 479 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Ucircumflex" format="2">
<advance width="1200"/>
<unicode hex="00DB"/>
<outline>
<component base="U"/>
<component base="circumflexcomb.case"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/U_circumflex.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/U_circumflex.glif",
"repo_id": "cascadia-code",
"token_count": 92
} | 480 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Ytilde" format="2">
<advance width="1200"/>
<unicode hex="1EF8"/>
<outline>
<component base="Y"/>
<component base="tildecomb.case" xOffset="10"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/Y_tilde.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/Y_tilde.glif",
"repo_id": "cascadia-code",
"token_count": 97
} | 481 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="_fourdotscenter-ar" format="2">
<advance width="1200"/>
<outline>
<component base="dotbelow-ar" xScale="0.9" yScale="0.9" xOffset="-60" yOffset="681"/>
<component base="dotbelow-ar" xScale="0.9" yScale="0.9" xOffset="-63" yOffset="434"/>
<component bas... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/_fourdotscenter-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/_fourdotscenter-ar.glif",
"repo_id": "cascadia-code",
"token_count": 707
} | 482 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="ae-ar.fina" format="2">
<advance width="1200"/>
<outline>
<component base="heh-ar.fina"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<string>0.98,0.36,0.67,1</string>
</dict>
</lib>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/ae-ar.fina.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/ae-ar.fina.glif",
"repo_id": "cascadia-code",
"token_count": 140
} | 483 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="ainThreedotsdownabove-ar" format="2">
<advance width="1200"/>
<unicode hex="075E"/>
<anchor x="511" y="1704" name="top"/>
<outline>
<component base="ain-ar"/>
<component base="threedotsdownabove-ar" xScale="1.001" xOffset="-94" yOffset="476"/>
</outl... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/ainT_hreedotsdownabove-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/ainT_hreedotsdownabove-ar.glif",
"repo_id": "cascadia-code",
"token_count": 378
} | 484 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="alefMadda-ar.fina" format="2">
<advance width="1200"/>
<outline>
<component base="alef-ar.fina.short"/>
<component base="madda-ar" xOffset="-187" yOffset="81"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<string>0.98,0.36,0.67,... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/alefM_adda-ar.fina.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/alefM_adda-ar.fina.glif",
"repo_id": "cascadia-code",
"token_count": 171
} | 485 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="alefTwoabove-ar.fina.alt" format="2">
<anchor x="0" y="0" name="_overlap"/>
<anchor x="319" y="-141" name="bottom"/>
<anchor x="59" y="1570" name="top"/>
<outline>
<component base="two-persian.small01" xOffset="-582" yOffset="-83"/>
<component base="al... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/alefT_woabove-ar.fina.alt.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/alefT_woabove-ar.fina.alt.glif",
"repo_id": "cascadia-code",
"token_count": 541
} | 486 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="alefabove-ar" format="2">
<unicode hex="0670"/>
<anchor x="621" y="527" name="_top"/>
<anchor x="620" y="414" name="_top.dot"/>
<anchor x="573" y="1025" name="top"/>
<outline>
<component base="_alefabove" xOffset="-1" yOffset="3"/>
</outline>
<lib>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/alefabove-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/alefabove-ar.glif",
"repo_id": "cascadia-code",
"token_count": 420
} | 487 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="approxequal" format="2">
<advance width="1200"/>
<unicode hex="2248"/>
<outline>
<component base="asciitilde" yOffset="290"/>
<component base="asciitilde" yOffset="-290"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.ComponentI... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/approxequal.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/approxequal.glif",
"repo_id": "cascadia-code",
"token_count": 430
} | 488 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="asterisk_asterisk_asterisk.liga" format="2">
<advance width="1200"/>
<outline>
<component base="asterisk" xOffset="2340"/>
<component base="asterisk" xOffset="60"/>
<component base="asterisk" xOffset="1208" yOffset="300"/>
</outline>
<lib>
<dic... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif",
"repo_id": "cascadia-code",
"token_count": 568
} | 489 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="bar_bar.liga" format="2">
<advance width="1200"/>
<outline>
<component base="bar" xOffset="1070"/>
<component base="bar" xOffset="130"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.ComponentInfo</key>
<array>
<dict... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/bar_bar.liga.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/bar_bar.liga.glif",
"repo_id": "cascadia-code",
"token_count": 410
} | 490 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="bar_hyphen_end.seq" format="2">
<advance width="1200"/>
<outline>
<contour>
<point x="-20" y="584" type="line"/>
<point x="604" y="584" type="line"/>
<point x="604" y="834" type="line"/>
<point x="-20" y="834" type="line"/>
</contou... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/bar_hyphen_end.seq.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/bar_hyphen_end.seq.glif",
"repo_id": "cascadia-code",
"token_count": 171
} | 491 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="beh-ar" format="2">
<advance width="1200"/>
<unicode hex="0628"/>
<outline>
<component base="behDotless-ar"/>
<component base="dotbelow-ar" xOffset="-20" yOffset="-24"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<string>0.98... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/beh-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/beh-ar.glif",
"repo_id": "cascadia-code",
"token_count": 171
} | 492 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="behThreedotsupbelow-ar.alt" format="2">
<advance width="1200"/>
<outline>
<component base="behDotless-ar.alt"/>
<component base="threedotsupbelow-ar" xOffset="-620" yOffset="-24"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<st... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupbelow-ar.alt.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupbelow-ar.alt.glif",
"repo_id": "cascadia-code",
"token_count": 173
} | 493 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="behVabove-ar.fina" format="2">
<advance width="1200"/>
<outline>
<component base="behDotless-ar.fina"/>
<component base="vabove-ar" xOffset="-10" yOffset="93"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.ComponentInfo</key>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behV_above-ar.fina.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behV_above-ar.fina.glif",
"repo_id": "cascadia-code",
"token_count": 343
} | 494 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="behVinvertedbelow-ar.init.alt" format="2">
<advance width="1200"/>
<anchor x="0" y="0" name="overlap"/>
<outline>
<component base="behDotless-ar.init.alt"/>
<component base="_vinvertedbelow-ar" xOffset="210" yOffset="-24"/>
</outline>
<lib>
<dict... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behV_invertedbelow-ar.init.alt.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behV_invertedbelow-ar.init.alt.glif",
"repo_id": "cascadia-code",
"token_count": 192
} | 495 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="bellControl" format="2">
<advance width="1200"/>
<unicode hex="2407"/>
<outline>
<component base="B.half" xOffset="-10" yOffset="781"/>
<component base="L.half" xOffset="370"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.Compo... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/bellC_ontrol.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/bellC_ontrol.glif",
"repo_id": "cascadia-code",
"token_count": 475
} | 496 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="colon_colon.liga" format="2">
<advance width="1200"/>
<outline>
<component base="colon" xOffset="140"/>
<component base="colon" xOffset="1060"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.ComponentInfo</key>
<array>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/colon_colon.liga.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/colon_colon.liga.glif",
"repo_id": "cascadia-code",
"token_count": 416
} | 497 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="dadDotbelow-ar.medi" format="2">
<advance width="1200"/>
<outline>
<component base="dad-ar.medi"/>
<component base="dotbelow-ar" xOffset="50" yOffset="-24"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<string>0.98,0.36,0.67,1</... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/dadD_otbelow-ar.medi.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/dadD_otbelow-ar.medi.glif",
"repo_id": "cascadia-code",
"token_count": 164
} | 498 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="dalThreedotsbelow-ar.fina" format="2">
<advance width="1200"/>
<outline>
<component base="dal-ar.fina"/>
<component base="threedotsdownbelow-ar" xOffset="-40" yOffset="-4"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<string>0.... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/dalT_hreedotsbelow-ar.fina.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/dalT_hreedotsbelow-ar.fina.glif",
"repo_id": "cascadia-code",
"token_count": 171
} | 499 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="dataLinkEscapeControl.ss20" format="2">
<advance width="1200"/>
<outline>
<contour>
<point x="109" y="635" type="line"/>
<point x="1091" y="635" type="line"/>
<point x="1091" y="785" type="line"/>
<point x="109" y="785" type="line"/>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/dataL_inkE_scapeC_ontrol.ss20.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/dataL_inkE_scapeC_ontrol.ss20.glif",
"repo_id": "cascadia-code",
"token_count": 251
} | 500 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="deviceControlFourControl" format="2">
<advance width="1200"/>
<unicode hex="2414"/>
<outline>
<component base="D.half" xOffset="-10" yOffset="781"/>
<component base="four.half" xOffset="370"/>
</outline>
<lib>
<dict>
<key>com.schriftgestalt... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/deviceC_ontrolF_ourC_ontrol.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/deviceC_ontrolF_ourC_ontrol.glif",
"repo_id": "cascadia-code",
"token_count": 477
} | 501 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="e-ar.medi" format="2">
<advance width="1200"/>
<outline>
<component base="beeh-ar.medi"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<string>0.98,0.36,0.67,1</string>
</dict>
</lib>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/e-ar.medi.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/e-ar.medi.glif",
"repo_id": "cascadia-code",
"token_count": 138
} | 502 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="ellipsis" format="2">
<advance width="1200"/>
<unicode hex="2026"/>
<outline>
<component base="period" xOffset="-398"/>
<component base="period" xOffset="398"/>
<component base="period"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltu... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/ellipsis.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/ellipsis.glif",
"repo_id": "cascadia-code",
"token_count": 554
} | 503 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="feh-ar.init.alt" format="2">
<advance width="1200"/>
<anchor x="0" y="0" name="overlap"/>
<outline>
<component base="fehDotless-ar.init.alt"/>
<component base="dotabove-ar" xOffset="164" yOffset="460"/>
</outline>
<lib>
<dict>
<key>public.m... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/feh-ar.init.alt.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/feh-ar.init.alt.glif",
"repo_id": "cascadia-code",
"token_count": 187
} | 504 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="fehDotbelowThreedotsabove-ar.fina.alt" format="2">
<advance width="1200"/>
<guideline x="-457" y="-107" angle="0"/>
<outline>
<component base="fehDotless-ar.fina.alt"/>
<component base="dotbelow-ar" xOffset="-37" yOffset="-24"/>
<component base="thre... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.fina.alt.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.fina.alt.glif",
"repo_id": "cascadia-code",
"token_count": 534
} | 505 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="fehThreedotsbelow-ar.init" format="2">
<advance width="1200"/>
<outline>
<component base="fehDotless-ar.init"/>
<component base="threedotsdownbelow-ar" xOffset="13" yOffset="-4"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<str... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsbelow-ar.init.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsbelow-ar.init.glif",
"repo_id": "cascadia-code",
"token_count": 173
} | 506 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.