text stringlengths 5 22M | id stringlengths 12 177 | metadata dict | __index_level_0__ int64 0 1.37k |
|---|---|---|---|
bistring
========
The bistring library provides non-destructive versions of common string processing operations like normalization, case folding, and find/replace.
Each bistring remembers the original string, and how its substrings map to substrings of the modified version.
.. toctree::
:maxdepth: 2
:caption:... | bistring/docs/index.rst/0 | {
"file_path": "bistring/docs/index.rst",
"repo_id": "bistring",
"token_count": 146
} | 433 |
import Alignment, { BiIndex } from "./alignment";
import BiString from "./bistring";
// https://unicode.org/reports/tr44/#GC_Values_Table
const CATEGORIES = [
"Lu", "Ll", "Lt", "Lm", "Lo",
"Mn", "Mc", "Me",
"Nd", "Nl", "No",
"Pc", "Pd", "Ps", "Pe", "Pi", "Pf", "Po",
"Sm", "Sc", "Sk", "So",
"Zs"... | bistring/js/src/infer.ts/0 | {
"file_path": "bistring/js/src/infer.ts",
"repo_id": "bistring",
"token_count": 1903
} | 434 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT license.
from __future__ import annotations
__all__ = ['bistr']
from itertools import islice
from typing import Any, Callable, Iterable, Iterator, List, Optional, Tuple, Union, overload, TYPE_CHECKING
import unicodedata
from ._alig... | bistring/python/bistring/_bistr.py/0 | {
"file_path": "bistring/python/bistring/_bistr.py",
"repo_id": "bistring",
"token_count": 11907
} | 435 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT license.
from bistring import bistr, Token, Tokenization, Tokenizer
import pytest
def test_tokenization():
text = bistr(' The quick, brown fox jumps over the lazy dog ')
text = text.replace(',', '')
text = text.sub(r'^... | bistring/python/tests/test_token.py/0 | {
"file_path": "bistring/python/tests/test_token.py",
"repo_id": "bistring",
"token_count": 2020
} | 436 |
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"azureBotId": {
"value": ""
},
"azureBotSku": {
"value": "S1"
},
"azureBotRegion": {
"val... | botbuilder-python/generators/app/templates/core/{{cookiecutter.bot_name}}/deploymentTemplates/deployUseExistResourceGroup/parameters-for-template-AzureBot-with-rg.json/0 | {
"file_path": "botbuilder-python/generators/app/templates/core/{{cookiecutter.bot_name}}/deploymentTemplates/deployUseExistResourceGroup/parameters-for-template-AzureBot-with-rg.json",
"repo_id": "botbuilder-python",
"token_count": 276
} | 437 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from .luis_helper import Intent, LuisHelper
from .dialog_helper import DialogHelper
__all__ = [
"DialogHelper",
"LuisHelper",
"Intent"
]
| botbuilder-python/generators/app/templates/core/{{cookiecutter.bot_name}}/helpers/__init__.py/0 | {
"file_path": "botbuilder-python/generators/app/templates/core/{{cookiecutter.bot_name}}/helpers/__init__.py",
"repo_id": "botbuilder-python",
"token_count": 81
} | 438 |
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"groupName": {
"value": ""
},
"groupLocation": {
"value": ""
},
"azureBotId": {
"value": ... | botbuilder-python/generators/app/templates/echo/{{cookiecutter.bot_name}}/deploymentTemplates/deployWithNewResourceGroup/parameters-for-template-AzureBot-new-rg.json/0 | {
"file_path": "botbuilder-python/generators/app/templates/echo/{{cookiecutter.bot_name}}/deploymentTemplates/deployWithNewResourceGroup/parameters-for-template-AzureBot-new-rg.json",
"repo_id": "botbuilder-python",
"token_count": 352
} | 439 |
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"azureBotId": {
"type": "string",
"metadata": {
"description": "The globally unique and immutable bot ID."
... | botbuilder-python/generators/app/templates/empty/{{cookiecutter.bot_name}}/deploymentTemplates/deployUseExistResourceGroup/template-AzureBot-with-rg.json/0 | {
"file_path": "botbuilder-python/generators/app/templates/empty/{{cookiecutter.bot_name}}/deploymentTemplates/deployUseExistResourceGroup/template-AzureBot-with-rg.json",
"repo_id": "botbuilder-python",
"token_count": 1188
} | 440 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import List
from botbuilder.adapters.slack.slack_message import SlackMessage
class SlackEvent:
"""
Wrapper class for an incoming slack event.
"""
def __init__(self, **kwargs):
self.clien... | botbuilder-python/libraries/botbuilder-adapters-slack/botbuilder/adapters/slack/slack_event.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-adapters-slack/botbuilder/adapters/slack/slack_event.py",
"repo_id": "botbuilder-python",
"token_count": 562
} | 441 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import json
from typing import Dict, List, Tuple, Union
from botbuilder.core import (
BotAssert,
IntentScore,
Recognizer,
RecognizerResult,
TurnContext,
)
from botbuilder.schema import ActivityTypes
from .... | botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/luis/luis_recognizer.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/luis/luis_recognizer.py",
"repo_id": "botbuilder-python",
"token_count": 5420
} | 442 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from msrest.serialization import Model
class GenerateAnswerRequestBody(Model):
"""Question used as the payload body for QnA Maker's Generate Answer API."""
_attribute_map = {
"question": {"key": "question",... | botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/qna/models/generate_answer_request_body.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/qna/models/generate_answer_request_body.py",
"repo_id": "botbuilder-python",
"token_count": 668
} | 443 |
# 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-ai/botbuilder/ai/qna/utils/__init__.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/qna/utils/__init__.py",
"repo_id": "botbuilder-python",
"token_count": 210
} | 444 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import Dict
from botbuilder.ai.luis import LuisRecognizer, LuisTelemetryConstants
from botbuilder.core import RecognizerResult, TurnContext
class TelemetryOverrideRecognizer(LuisRecognizer):
def __init__(se... | botbuilder-python/libraries/botbuilder-ai/tests/luis/telemetry_override_recognizer.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/tests/luis/telemetry_override_recognizer.py",
"repo_id": "botbuilder-python",
"token_count": 449
} | 445 |
{
"query": "Please deliver it to 98033 WA",
"topScoringIntent": {
"intent": "Delivery",
"score": 0.8785189
},
"intents": [
{
"intent": "Delivery",
"score": 0.8785189
}
],
"entities": [
{
"entity": "98033 wa",
... | botbuilder-python/libraries/botbuilder-ai/tests/luis/test_data/MultipleIntents_CompositeEntityModel.json/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/tests/luis/test_data/MultipleIntents_CompositeEntityModel.json",
"repo_id": "botbuilder-python",
"token_count": 799
} | 446 |
{
"answers": [
{
"questions": [
"Where can I buy cleaning products?"
],
"answer": "Any DIY store",
"score": 100,
"id": 55,
"source": "Editorial",
"metadata": [],
"context": {
"isContextOnly": true,
"prompts": []
... | botbuilder-python/libraries/botbuilder-ai/tests/qna/test_data/AnswerWithHighScoreProvidedContext.json/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/tests/qna/test_data/AnswerWithHighScoreProvidedContext.json",
"repo_id": "botbuilder-python",
"token_count": 197
} | 447 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
# pylint: disable=protected-access
# pylint: disable=too-many-lines
import unittest
from os import path
from typing import List, Dict
from unittest.mock import patch
import json
import requests
from aiohttp import ClientSes... | botbuilder-python/libraries/botbuilder-ai/tests/qna/test_qna.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/tests/qna/test_qna.py",
"repo_id": "botbuilder-python",
"token_count": 21286
} | 448 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
"""Telemetry processor for Flask."""
import sys
from ..processor.telemetry_processor import TelemetryProcessor
from .flask_telemetry_middleware import retrieve_flask_body
class FlaskTelemetryProcessor(TelemetryProcessor):
... | botbuilder-python/libraries/botbuilder-applicationinsights/botbuilder/applicationinsights/flask/flask_telemetry_processor.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-applicationinsights/botbuilder/applicationinsights/flask/flask_telemetry_processor.py",
"repo_id": "botbuilder-python",
"token_count": 228
} | 449 |
[bdist_wheel]
universal=0 | botbuilder-python/libraries/botbuilder-azure/setup.cfg/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-azure/setup.cfg",
"repo_id": "botbuilder-python",
"token_count": 10
} | 450 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from abc import ABC, abstractmethod
from typing import List, Callable, Awaitable
from botbuilder.schema import (
Activity,
ConversationReference,
ConversationParameters,
ResourceResponse,
)
from botframework.c... | botbuilder-python/libraries/botbuilder-core/botbuilder/core/bot_adapter.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/bot_adapter.py",
"repo_id": "botbuilder-python",
"token_count": 2779
} | 451 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import Dict
from botbuilder.schema import ConversationReference
class InspectionSessionsByStatus:
def __init__(
self,
opened_sessions: Dict[str, ConversationReference] = None,
attach... | botbuilder-python/libraries/botbuilder-core/botbuilder/core/inspection/inspection_sessions_by_status.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/inspection/inspection_sessions_by_status.py",
"repo_id": "botbuilder-python",
"token_count": 227
} | 452 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from abc import ABC
from typing import Dict, List
from botframework.connector.token_api.models import (
SignInUrlResponse,
TokenExchangeRequest,
TokenResponse,
)
from botframework.connector.auth import AppCredent... | botbuilder-python/libraries/botbuilder-core/botbuilder/core/oauth/extended_user_token_provider.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/oauth/extended_user_token_provider.py",
"repo_id": "botbuilder-python",
"token_count": 2525
} | 453 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from abc import ABC
from typing import Union
from botbuilder.schema import ConversationReference
from .skill_conversation_id_factory_options import SkillConversationIdFactoryOptions
from .skill_conversation_reference import S... | botbuilder-python/libraries/botbuilder-core/botbuilder/core/skills/conversation_id_factory.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/skills/conversation_id_factory.py",
"repo_id": "botbuilder-python",
"token_count": 998
} | 454 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
# pylint: disable=too-many-lines
from http import HTTPStatus
from botbuilder.schema import ChannelAccount, ErrorResponseException, SignInConstants
from botbuilder.core import ActivityHandler, InvokeResponse
from botbuilder.c... | botbuilder-python/libraries/botbuilder-core/botbuilder/core/teams/teams_activity_handler.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/teams/teams_activity_handler.py",
"repo_id": "botbuilder-python",
"token_count": 16572
} | 455 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from uuid import uuid4 as uuid
from aiounittest import AsyncTestCase
from botbuilder.core import MemoryStorage
from botbuilder.schema import (
Activity,
ConversationAccount,
ConversationReference,
)
from botbuilde... | botbuilder-python/libraries/botbuilder-core/tests/skills/test_skill_conversation_id_factory.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/tests/skills/test_skill_conversation_id_factory.py",
"repo_id": "botbuilder-python",
"token_count": 2021
} | 456 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import aiounittest
from botbuilder.core import TurnContext, MemoryStorage, ConversationState
from botbuilder.core.adapters import TestAdapter
from botbuilder.schema import Activity, ConversationAccount
RECEIVED_MESSAGE = Ac... | botbuilder-python/libraries/botbuilder-core/tests/test_conversation_state.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/tests/test_conversation_state.py",
"repo_id": "botbuilder-python",
"token_count": 828
} | 457 |
# 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/__init__.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/__init__.py",
"repo_id": "botbuilder-python",
"token_count": 634
} | 458 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
class SortedValue:
"""A value that can be sorted and still refer to its original position with a source array."""
def __init__(self, value: str, index: int):
"""
Parameters:
-----------
... | botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/choices/sorted_value.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/choices/sorted_value.py",
"repo_id": "botbuilder-python",
"token_count": 172
} | 459 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from .dialog_turn_status import DialogTurnStatus
class DialogTurnResult:
"""
Result returned to the caller of one of the various stack manipulation methods.
"""
def __init__(self, status: DialogTurnStatus, ... | botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/dialog_turn_result.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/dialog_turn_result.py",
"repo_id": "botbuilder-python",
"token_count": 430
} | 460 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from .alias_path_resolver import AliasPathResolver
class PercentPathResolver(AliasPathResolver):
def __init__(self):
super().__init__(alias="%", prefix="class.")
| botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/memory/path_resolvers/percent_path_resolver.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/memory/path_resolvers/percent_path_resolver.py",
"repo_id": "botbuilder-python",
"token_count": 83
} | 461 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
class PersistedStateKeys:
def __init__(self):
self.user_state: str = None
self.conversation_state: str = None
| botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/persisted_state_keys.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/persisted_state_keys.py",
"repo_id": "botbuilder-python",
"token_count": 76
} | 462 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import Dict
from botbuilder.core.turn_context import TurnContext
from .prompt_options import PromptOptions
from .prompt_recognizer_result import PromptRecognizerResult
class PromptValidatorContext:
def __init... | botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/prompts/prompt_validator_context.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/prompts/prompt_validator_context.py",
"repo_id": "botbuilder-python",
"token_count": 529
} | 463 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import List
import aiounittest
from botbuilder.dialogs.choices import (
ChoiceRecognizers,
Find,
FindValuesOptions,
SortedValue,
)
def assert_result(result, start, end, text):
assert (
... | botbuilder-python/libraries/botbuilder-dialogs/tests/choices/test_choice_recognizers.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/tests/choices/test_choice_recognizers.py",
"repo_id": "botbuilder-python",
"token_count": 3283
} | 464 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import uuid
from http import HTTPStatus
from typing import Callable, Union, List
from unittest.mock import Mock
import aiounittest
from botframework.connector.token_api.models import TokenExchangeResource
from botbuilder.core... | botbuilder-python/libraries/botbuilder-dialogs/tests/test_skill_dialog.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/tests/test_skill_dialog.py",
"repo_id": "botbuilder-python",
"token_count": 10360
} | 465 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from .aiohttp_web_socket import AiohttpWebSocket
__all__ = [
"AiohttpWebSocket",
]
| botbuilder-python/libraries/botbuilder-integration-aiohttp/botbuilder/integration/aiohttp/streaming/__init__.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-integration-aiohttp/botbuilder/integration/aiohttp/streaming/__init__.py",
"repo_id": "botbuilder-python",
"token_count": 58
} | 466 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from .dialog_test_client import DialogTestClient
from .dialog_test_logger import DialogTestLogger
from .storage_base_tests import StorageBaseTests
__all__ = ["DialogTestClient", "DialogTestLogger", "StorageBaseTests"]
| botbuilder-python/libraries/botbuilder-testing/botbuilder/testing/__init__.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-testing/botbuilder/testing/__init__.py",
"repo_id": "botbuilder-python",
"token_count": 88
} | 467 |
# 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/_connector_client_async.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/botframework/connector/aio/_connector_client_async.py",
"repo_id": "botbuilder-python",
"token_count": 1288
} | 468 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from .claims_identity import ClaimsIdentity
from .connector_factory import ConnectorFactory
class AuthenticateRequestResult:
def __init__(self) -> None:
# A value for the Audience.
self.audience: str = N... | botbuilder-python/libraries/botframework-connector/botframework/connector/auth/authenticate_request_result.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/botframework/connector/auth/authenticate_request_result.py",
"repo_id": "botbuilder-python",
"token_count": 210
} | 469 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import json
from datetime import datetime, timedelta
from typing import List
import requests
from jwt.algorithms import RSAAlgorithm
import jwt
from .claims_identity import ClaimsIdentity
from .verify_options import VerifyOpt... | botbuilder-python/libraries/botframework-connector/botframework/connector/auth/jwt_token_extractor.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/botframework/connector/auth/jwt_token_extractor.py",
"repo_id": "botbuilder-python",
"token_count": 2357
} | 470 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import Any, Dict
class HttpRequest:
def __init__(
self,
*,
request_uri: str = None,
content: Any = None,
headers: Dict[str, str] = None
) -> None:
self.req... | botbuilder-python/libraries/botframework-connector/botframework/connector/http_request.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/botframework/connector/http_request.py",
"repo_id": "botbuilder-python",
"token_count": 166
} | 471 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from msrest.authentication import BasicTokenAuthentication, Authentication
class MicrosoftTokenAuthenticationStub(Authentication):
def __init__(self, access_token):
self.access_token = access_token
def sign... | botbuilder-python/libraries/botframework-connector/tests/authentication_stub.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/tests/authentication_stub.py",
"repo_id": "botbuilder-python",
"token_count": 166
} | 472 |
interactions:
- request:
body: '{"type": "message", "channelId": "slack", "from": {"id": "B21UTEF8S:T03CWQ0QB"},
"recipient": {"id": "U19KH8EHJ:T03CWQ0QB"}, "textFormat": "markdown", "attachmentLayout":
"list", "text": "Test Activity"}'
headers:
Accept: [application/json]
Accept-Encoding... | botbuilder-python/libraries/botframework-connector/tests/recordings/test_conversations_get_activity_members_invalid_conversation_id_fails.yaml/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/tests/recordings/test_conversations_get_activity_members_invalid_conversation_id_fails.yaml",
"repo_id": "botbuilder-python",
"token_count": 1104
} | 473 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import os
import base64
import asyncio
import pytest
import msrest
from botbuilder.schema import AttachmentData, ErrorResponseException
from botframework.connector.aio import ConnectorClient
from botframework.connector.auth ... | botbuilder-python/libraries/botframework-connector/tests/test_attachments_async.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/tests/test_attachments_async.py",
"repo_id": "botbuilder-python",
"token_count": 2300
} | 474 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from .content_stream import ContentStream
from .header_serializer import HeaderSerializer
from .payload_assembler_manager import PayloadAssemblerManager
from .request_manager import RequestManager
from .response_message_strea... | botbuilder-python/libraries/botframework-streaming/botframework/streaming/payloads/__init__.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-streaming/botframework/streaming/payloads/__init__.py",
"repo_id": "botbuilder-python",
"token_count": 172
} | 475 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from .header import Header
class PayloadTypes:
REQUEST = "A"
RESPONSE = "B"
STREAM = "S"
CANCEL_ALL = "X"
CANCEL_STREAM = "C"
@staticmethod
def is_stream(header: Header) -> bool:
return ... | botbuilder-python/libraries/botframework-streaming/botframework/streaming/payloads/models/payload_types.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-streaming/botframework/streaming/payloads/models/payload_types.py",
"repo_id": "botbuilder-python",
"token_count": 135
} | 476 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from .disconnected_event_args import DisconnectedEventArgs
from .streaming_transport_service import StreamingTransportService
from .transport_base import TransportBase
from .transport_constants import TransportConstants
from ... | botbuilder-python/libraries/botframework-streaming/botframework/streaming/transport/__init__.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-streaming/botframework/streaming/transport/__init__.py",
"repo_id": "botbuilder-python",
"token_count": 174
} | 477 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from uuid import uuid4
import aiounittest
from botframework.streaming.payloads import ContentStream
from botframework.streaming.payloads.assemblers import PayloadStreamAssembler
class TestResponses(aiounittest.AsyncTestCa... | botbuilder-python/libraries/botframework-streaming/tests/test_content_stream.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-streaming/tests/test_content_stream.py",
"repo_id": "botbuilder-python",
"token_count": 412
} | 478 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from botbuilder.core import StatePropertyAccessor, TurnContext
from botbuilder.dialogs import Dialog, DialogSet, DialogTurnStatus
class DialogHelper:
@staticmethod
async def run_dialog(
dialog: Dialog, turn_... | botbuilder-python/tests/experimental/sso/child/helpers/dialog_helper.py/0 | {
"file_path": "botbuilder-python/tests/experimental/sso/child/helpers/dialog_helper.py",
"repo_id": "botbuilder-python",
"token_count": 240
} | 479 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
FROM python:3.7-slim as pkg_holder
ARG EXTRA_INDEX_URL
RUN pip config set global.extra-index-url "${EXTRA_INDEX_URL}"
COPY requirements.txt .
RUN pip download -r requirements.txt -d packages
FROM python:3.7-slim
ENV VIRTU... | botbuilder-python/tests/functional-tests/functionaltestbot/Dockfile/0 | {
"file_path": "botbuilder-python/tests/functional-tests/functionaltestbot/Dockfile",
"repo_id": "botbuilder-python",
"token_count": 232
} | 480 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import os
from setuptools import setup
REQUIRES = [
"botbuilder-core>=4.9.0",
"flask==2.2.5",
]
root = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(root, "functionaltestbot", "about.py")) as f:... | botbuilder-python/tests/functional-tests/functionaltestbot/setup.py/0 | {
"file_path": "botbuilder-python/tests/functional-tests/functionaltestbot/setup.py",
"repo_id": "botbuilder-python",
"token_count": 450
} | 481 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from .echo_bot import EchoBot
__all__ = ["EchoBot"]
| botbuilder-python/tests/skills/skills-prototypes/simple-bot-to-bot/simple-child-bot/bots/__init__.py/0 | {
"file_path": "botbuilder-python/tests/skills/skills-prototypes/simple-bot-to-bot/simple-child-bot/bots/__init__.py",
"repo_id": "botbuilder-python",
"token_count": 42
} | 482 |
Copyright (c) 2019 - Present, Microsoft Corporation,
with Reserved Font Name Cascadia Code.
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
------------------------------------------------------... | cascadia-code/LICENSE/0 | {
"file_path": "cascadia-code/LICENSE",
"repo_id": "cascadia-code",
"token_count": 1043
} | 483 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Acircumflextilde" format="2">
<advance width="1200"/>
<unicode hex="1EAA"/>
<outline>
<component base="A"/>
<component base="circumflexcomb.case"/>
<component base="tildecomb.case" xOffset="10" yOffset="380"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/A_circumflextilde.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/A_circumflextilde.glif",
"repo_id": "cascadia-code",
"token_count": 120
} | 484 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Ecaron" format="2">
<advance width="1200"/>
<unicode hex="011A"/>
<outline>
<component base="E"/>
<component base="caroncomb.case" xOffset="30"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/E_caron.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/E_caron.glif",
"repo_id": "cascadia-code",
"token_count": 95
} | 485 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Em-cy" format="2">
<advance width="1200"/>
<unicode hex="041C"/>
<outline>
<component base="M"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/E_m-cy.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/E_m-cy.glif",
"repo_id": "cascadia-code",
"token_count": 76
} | 486 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Eth" format="2">
<advance width="1200"/>
<unicode hex="00D0"/>
<outline>
<contour>
<point x="12" y="585" type="line"/>
<point x="651" y="585" type="line"/>
<point x="651" y="829" type="line"/>
<point x="12" y="829" type="line"/>
<... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/E_th.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/E_th.glif",
"repo_id": "cascadia-code",
"token_count": 368
} | 487 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="I" format="2">
<advance width="1200"/>
<unicode hex="0049"/>
<anchor x="600" y="0" name="bottom"/>
<anchor x="600" y="10" name="ogonek"/>
<anchor x="600" y="1420" name="top"/>
<anchor x="20" y="1420" name="topleft"/>
<outline>
<contour>
<point ... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/I_.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/I_.glif",
"repo_id": "cascadia-code",
"token_count": 438
} | 488 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Iigrave-cy" format="2">
<advance width="1200"/>
<unicode hex="040D"/>
<outline>
<component base="Ii-cy"/>
<component base="gravecomb.case" xOffset="-80"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/I_igrave-cy.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/I_igrave-cy.glif",
"repo_id": "cascadia-code",
"token_count": 100
} | 489 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Je-cy" format="2">
<advance width="1200"/>
<unicode hex="0408"/>
<outline>
<component base="J"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/J_e-cy.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/J_e-cy.glif",
"repo_id": "cascadia-code",
"token_count": 76
} | 490 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Lambda" format="2">
<advance width="1200"/>
<unicode hex="039B"/>
<outline>
<component base="El-cy.loclBGR"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/L_ambda.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/L_ambda.glif",
"repo_id": "cascadia-code",
"token_count": 84
} | 491 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Nacute" format="2">
<advance width="1200"/>
<unicode hex="0143"/>
<outline>
<component base="N"/>
<component base="acutecomb.case" xOffset="79"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/N_acute.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/N_acute.glif",
"repo_id": "cascadia-code",
"token_count": 96
} | 492 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Obreve" format="2">
<advance width="1200"/>
<unicode hex="014E"/>
<outline>
<component base="O"/>
<component base="brevecomb.case"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/O_breve.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/O_breve.glif",
"repo_id": "cascadia-code",
"token_count": 90
} | 493 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Ohornhookabove" format="2">
<advance width="1200"/>
<unicode hex="1EDE"/>
<outline>
<component base="Ohorn"/>
<component base="hookabovecomb.case"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/O_hornhookabove.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/O_hornhookabove.glif",
"repo_id": "cascadia-code",
"token_count": 93
} | 494 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Uacute" format="2">
<advance width="1200"/>
<unicode hex="00DA"/>
<outline>
<component base="U"/>
<component base="acutecomb.case" xOffset="79"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/U_acute.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/U_acute.glif",
"repo_id": "cascadia-code",
"token_count": 96
} | 495 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Wacute" format="2">
<advance width="1200"/>
<unicode hex="1E82"/>
<outline>
<component base="W"/>
<component base="acutecomb.case" xOffset="79"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/W_acute.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/W_acute.glif",
"repo_id": "cascadia-code",
"token_count": 97
} | 496 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Yi-cy" format="2">
<advance width="1200"/>
<unicode hex="0407"/>
<outline>
<component base="I"/>
<component base="dieresiscomb.case"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/Y_i-cy.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/Y_i-cy.glif",
"repo_id": "cascadia-code",
"token_count": 92
} | 497 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="_alefHamzabelow-ar.fina.rlig" format="2">
<anchor x="0" y="0" name="_overlap"/>
<anchor x="359" y="-492" name="bottom"/>
<anchor x="294" y="1317" name="top"/>
<outline>
<component base="_alef-ar.fina.rlig"/>
<component base="hamzabelow-ar" xOffset="-26... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/_alefH_amzabelow-ar.fina.rlig.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/_alefH_amzabelow-ar.fina.rlig.glif",
"repo_id": "cascadia-code",
"token_count": 574
} | 498 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="_fatha-ar" format="2">
<advance width="1200"/>
<outline>
<contour>
<point x="330" y="1241" type="line"/>
<point x="848" y="1385" type="line"/>
<point x="854" y="1548" type="line"/>
<point x="336" y="1404" type="line"/>
</contour>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/_fatha-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/_fatha-ar.glif",
"repo_id": "cascadia-code",
"token_count": 225
} | 499 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="_twodotshorizontal-ar" format="2">
<advance width="1200"/>
<outline>
<component base="_dot-ar" xScale="0.96" yScale="0.96" xOffset="149" yOffset="20"/>
<component base="_dot-ar" xScale="0.96" yScale="0.96" xOffset="-101" yOffset="20"/>
</outline>
<lib>... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/_twodotshorizontal-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/_twodotshorizontal-ar.glif",
"repo_id": "cascadia-code",
"token_count": 505
} | 500 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="abrevetilde" format="2">
<advance width="1200"/>
<unicode hex="1EB5"/>
<outline>
<component base="a"/>
<component base="brevecomb" xOffset="-20"/>
<component base="tildecomb" xOffset="-10" yOffset="480"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/abrevetilde.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/abrevetilde.glif",
"repo_id": "cascadia-code",
"token_count": 119
} | 501 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="adieresis" format="2">
<advance width="1200"/>
<unicode hex="00E4"/>
<outline>
<component base="a"/>
<component base="dieresiscomb" xOffset="-18"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/adieresis.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/adieresis.glif",
"repo_id": "cascadia-code",
"token_count": 97
} | 502 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="ainThreedots-ar.medi" format="2">
<advance width="1200"/>
<outline>
<component base="ain-ar.medi"/>
<component base="threedotsupabove-ar" xOffset="10" yOffset="273"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<string>0.98,0.36... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/ainT_hreedots-ar.medi.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/ainT_hreedots-ar.medi.glif",
"repo_id": "cascadia-code",
"token_count": 166
} | 503 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="alefHamzabelow-ar" format="2">
<advance width="1200"/>
<unicode hex="0625"/>
<anchor x="626" y="-493" name="bottom"/>
<outline>
<component base="alef-ar"/>
<component base="hamzabelow-ar" xOffset="7" yOffset="-26"/>
</outline>
<lib>
<dict>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/alefH_amzabelow-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/alefH_amzabelow-ar.glif",
"repo_id": "cascadia-code",
"token_count": 370
} | 504 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="alefThreeabove-ar.fina.rlig" format="2">
<anchor x="0" y="0" name="_overlap"/>
<anchor x="283" y="-141" name="bottom"/>
<anchor x="7" y="1490" name="top"/>
<outline>
<component base="three-persian.small01" xOffset="-600" yOffset="-151"/>
<component bas... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/alefT_hreeabove-ar.fina.rlig.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/alefT_hreeabove-ar.fina.rlig.glif",
"repo_id": "cascadia-code",
"token_count": 402
} | 505 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="alefWavyhamzabelow-ar.fina.rlig" format="2">
<anchor x="0" y="0" name="_overlap"/>
<anchor x="271" y="-491" name="bottom"/>
<anchor x="274" y="1310" name="top"/>
<outline>
<component base="alef-ar.fina.rlig"/>
<component base="wavyhamzabelow-ar" xOffse... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/alefW_avyhamzabelow-ar.fina.rlig.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/alefW_avyhamzabelow-ar.fina.rlig.glif",
"repo_id": "cascadia-code",
"token_count": 542
} | 506 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="baht" format="2">
<advance width="1200"/>
<unicode hex="0E3F"/>
<outline>
<contour>
<point x="457" y="-320" type="line"/>
<point x="710" y="-320" type="line"/>
<point x="710" y="1740" type="line"/>
<point x="457" y="1740" type="line"/... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/baht.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/baht.glif",
"repo_id": "cascadia-code",
"token_count": 372
} | 507 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="bar_equal_start.seq" format="2">
<advance width="1200"/>
<outline>
<contour>
<point x="586" y="835" type="line"/>
<point x="1220" y="835" type="line"/>
<point x="1220" y="1085" type="line"/>
<point x="585" y="1085" type="line"/>
</c... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/bar_equal_start.seq.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/bar_equal_start.seq.glif",
"repo_id": "cascadia-code",
"token_count": 270
} | 508 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="beh-ar.fina.alt" format="2">
<advance width="1200"/>
<outline>
<component base="behDotless-ar.fina.alt"/>
<component base="dotbelow-ar" xOffset="-710" yOffset="-24"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.ComponentInfo</ke... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/beh-ar.fina.alt.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/beh-ar.fina.alt.glif",
"repo_id": "cascadia-code",
"token_count": 346
} | 509 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="behMeemabove-ar" format="2">
<advance width="1200"/>
<unicode hex="08B6"/>
<outline>
<component base="behDotless-ar"/>
<component base="dotbelow-ar" xOffset="-20" yOffset="-24"/>
<component base="meemStopabove-ar" xOffset="-26" yOffset="-369"/>
</o... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behM_eemabove-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behM_eemabove-ar.glif",
"repo_id": "cascadia-code",
"token_count": 509
} | 510 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="behVabove-ar.alt" format="2">
<advance width="1200"/>
<outline>
<component base="behDotless-ar.alt"/>
<component base="vabove-ar" xOffset="-610" yOffset="93"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.ComponentInfo</key>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behV_above-ar.alt.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behV_above-ar.alt.glif",
"repo_id": "cascadia-code",
"token_count": 341
} | 511 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="behVinvertedbelow-ar.fina" format="2">
<advance width="1200"/>
<outline>
<component base="behDotless-ar.fina"/>
<component base="_vinvertedbelow-ar" xOffset="-20" yOffset="-24"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<stri... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behV_invertedbelow-ar.fina.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behV_invertedbelow-ar.fina.glif",
"repo_id": "cascadia-code",
"token_count": 173
} | 512 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="behhamzaabove-ar.init" format="2">
<advance width="1200"/>
<outline>
<component base="beh-ar.init"/>
<component base="hamzaabove-ar" xOffset="215" yOffset="-237"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<string>0.98,0.36,0.... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behhamzaabove-ar.init.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behhamzaabove-ar.init.glif",
"repo_id": "cascadia-code",
"token_count": 165
} | 513 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="blackMediumDownTriangleCentred" format="2">
<advance width="1200"/>
<unicode hex="2BC6"/>
<note>
uni2BC6
</note>
<outline>
<contour>
<point x="600" y="466" type="line"/>
<point x="938" y="1040" type="line"/>
<point x="262" y="1040" type="... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blackM_ediumD_ownT_riangleC_entred.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blackM_ediumD_ownT_riangleC_entred.glif",
"repo_id": "cascadia-code",
"token_count": 164
} | 514 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="blockCircle-UC" format="2">
<advance width="1200"/>
<unicode hex="1FBE8"/>
<outline>
<contour>
<point x="0" y="2226" type="line" smooth="yes"/>
<point x="0" y="1549"/>
<point x="300" y="873"/>
<point x="600" y="873" type="curve" smoot... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-UC.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-UC.glif",
"repo_id": "cascadia-code",
"token_count": 231
} | 515 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="blockDiagonal-1FB43" format="2">
<advance width="1200"/>
<unicode hex="1FB43"/>
<outline>
<contour>
<point x="0" y="422" type="line"/>
<point x="600" y="2226" type="line"/>
<point x="1200" y="2226" type="line"/>
<point x="1200" y="-48... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB43.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB43.glif",
"repo_id": "cascadia-code",
"token_count": 191
} | 516 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="blockDiagonal-1FB4B" format="2">
<advance width="1200"/>
<unicode hex="1FB4B"/>
<outline>
<contour>
<point x="600" y="-480" type="line"/>
<point x="1200" y="2226" type="line"/>
<point x="1200" y="-480" type="line"/>
</contour>
</outli... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4B.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4B.glif",
"repo_id": "cascadia-code",
"token_count": 152
} | 517 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="blockOctant-1234678" format="2">
<advance width="1200"/>
<unicode hex="1CDDA"/>
<outline>
<contour>
<point x="0" y="2226" type="line"/>
<point x="1200" y="2226" type="line"/>
<point x="1200" y="-480" type="line"/>
<point x="0" y="-480... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1234678.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1234678.glif",
"repo_id": "cascadia-code",
"token_count": 253
} | 518 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="blockOctant-1237" format="2">
<advance width="1200"/>
<unicode hex="1CD3C"/>
<outline>
<contour>
<point x="0" y="2226" type="line"/>
<point x="1200" y="2226" type="line"/>
<point x="1200" y="1549" type="line"/>
<point x="600" y="1549"... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1237.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1237.glif",
"repo_id": "cascadia-code",
"token_count": 311
} | 519 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="blockOctant-2578" format="2">
<advance width="1200"/>
<unicode hex="1CDBD"/>
<outline>
<contour>
<point x="600" y="2226" type="line"/>
<point x="1200" y="2226" type="line"/>
<point x="1200" y="1549" type="line"/>
<point x="600" y="154... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2578.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2578.glif",
"repo_id": "cascadia-code",
"token_count": 310
} | 520 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="blockOctant-8" format="2">
<advance width="1200"/>
<unicode hex="1CEA0"/>
<outline>
<contour>
<point x="600" y="196" type="line"/>
<point x="1200" y="196" type="line"/>
<point x="1200" y="-480" type="line"/>
<point x="600" y="-480" ty... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-8.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-8.glif",
"repo_id": "cascadia-code",
"token_count": 168
} | 521 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="blockSedecimant-159" format="2">
<advance width="1200"/>
<unicode hex="1CEA6"/>
<outline>
<contour>
<point x="0" y="2226" type="line"/>
<point x="300" y="2226" type="line"/>
<point x="300" y="196" type="line"/>
<point x="0" y="196" ty... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-159.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-159.glif",
"repo_id": "cascadia-code",
"token_count": 171
} | 522 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="blockSedecimant-59D" format="2">
<advance width="1200"/>
<unicode hex="1CEA5"/>
<outline>
<contour>
<point x="0" y="1549" type="line"/>
<point x="300" y="1549" type="line"/>
<point x="300" y="-480" type="line"/>
<point x="0" y="-480" ... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-59D.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-59D.glif",
"repo_id": "cascadia-code",
"token_count": 174
} | 523 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="blockSedecimant-B" format="2">
<advance width="1200"/>
<unicode hex="1CE9A"/>
<outline>
<contour>
<point x="600" y="873" type="line"/>
<point x="900" y="873" type="line"/>
<point x="900" y="196" type="line"/>
<point x="600" y="196" ty... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-B.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-B.glif",
"repo_id": "cascadia-code",
"token_count": 171
} | 524 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="blockSedecimant-G" format="2">
<advance width="1200"/>
<unicode hex="1CE9F"/>
<outline>
<contour>
<point x="900" y="196" type="line"/>
<point x="1200" y="196" type="line"/>
<point x="1200" y="-480" type="line"/>
<point x="900" y="-480... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-G.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-G.glif",
"repo_id": "cascadia-code",
"token_count": 171
} | 525 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="blockSextant-12" format="2">
<advance width="1200"/>
<unicode hex="1FB02"/>
<outline>
<contour>
<point x="0" y="2226" type="line"/>
<point x="1200" y="2226" type="line"/>
<point x="1200" y="1324" type="line"/>
<point x="0" y="1324" ty... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-12.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-12.glif",
"repo_id": "cascadia-code",
"token_count": 170
} | 526 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="blockSextant-5" format="2">
<advance width="1200"/>
<unicode hex="1FB0F"/>
<outline>
<contour>
<point x="0" y="422" type="line"/>
<point x="600" y="422" type="line"/>
<point x="600" y="-480" type="line"/>
<point x="0" y="-480" type="l... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-5.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-5.glif",
"repo_id": "cascadia-code",
"token_count": 169
} | 527 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="boxHeavyDownAndRight" format="2">
<advance width="1200"/>
<unicode hex="250F"/>
<outline>
<contour>
<point x="336" y="-530" type="line"/>
<point x="864" y="-530" type="line"/>
<point x="864" y="443" type="line"/>
<point x="1332" y="44... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_ownA_ndR_ight.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_ownA_ndR_ight.glif",
"repo_id": "cascadia-code",
"token_count": 210
} | 528 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="boxHeavyVerticalAndLeft" format="2">
<advance width="1200"/>
<unicode hex="252B"/>
<outline>
<contour>
<point x="336" y="-530" type="line"/>
<point x="864" y="-530" type="line"/>
<point x="864" y="2226" type="line"/>
<point x="336" y=... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyV_erticalA_ndL_eft.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyV_erticalA_ndL_eft.glif",
"repo_id": "cascadia-code",
"token_count": 253
} | 529 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="boxLightDiagonalUpperRightToLowerLeft" format="2">
<advance width="1200"/>
<unicode hex="2571"/>
<outline>
<contour>
<point x="0" y="-518" type="line"/>
<point x="147" y="-518" type="line"/>
<point x="1200" y="1632" type="line"/>
<poi... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif",
"repo_id": "cascadia-code",
"token_count": 216
} | 530 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="boxLightUpAndHeavyDown" format="2">
<advance width="1200"/>
<unicode hex="257D"/>
<outline>
<contour>
<point x="336" y="-530" type="line"/>
<point x="864" y="-530" type="line"/>
<point x="864" y="839" type="line"/>
<point x="732" y="8... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightU_pA_ndH_eavyD_own.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightU_pA_ndH_eavyD_own.glif",
"repo_id": "cascadia-code",
"token_count": 255
} | 531 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="boxRightDownHeavyAndLeftUpLight" format="2">
<advance width="1200"/>
<unicode hex="2546"/>
<outline>
<contour>
<point x="336" y="-530" type="line"/>
<point x="864" y="-530" type="line"/>
<point x="864" y="443" type="line"/>
<point x="... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif",
"repo_id": "cascadia-code",
"token_count": 383
} | 532 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.