input stringlengths 28 198k | output stringlengths 3 71k | file stringlengths 19 330 | input_tokens int64 5 159k | output_tokens int64 3 9.07k | __index_level_0__ int64 2 449k |
|---|---|---|---|---|---|
LOAD_CONST 0
LOAD_CONST ('ApiForpost',)
IMPORT_NAME onelogin.paths.api_1_users_user_id_otp_devices_device_id_verify.post
IMPORT_FROM ApiForpost
STORE_NAME ApiForpost
POP_TOP
LOAD_BUILD_CLASS
LOAD_CONST <code object Api1UsersUserIdOtpDevicesDeviceIdVerify at 0x7f8e2fe3c300, file "f.py", line 6>
LOAD_CONST 'Api1UsersUse... | from onelogin.paths.api_1_users_user_id_otp_devices_device_id_verify.post import (
ApiForpost,
)
class Api1UsersUserIdOtpDevicesDeviceIdVerify(
ApiForpost,
):
pass
| data/onelogin-3.1.6/onelogin/apis/paths/api_1_users_user_id_otp_devices_device_id_verify.py | 207 | 74 | 397,291 |
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME typer
STORE_NAME typer
LOAD_CONST 0
LOAD_CONST ('Annotated',)
IMPORT_NAME typing_extensions
IMPORT_FROM Annotated
STORE_NAME Annotated
POP_TOP
LOAD_CONST ('Wade Wilson',)
LOAD_NAME Annotated
LOAD_NAME str
LOAD_NAME typer
LOAD_METHOD Argument
CALL_METHOD
BUILD_TUPLE
BINARY_SUBS... | import typer
from typing_extensions import Annotated
def main(name: Annotated[str, typer.Argument()] = "Wade Wilson"):
print(f"Hello {name}")
if __name__ == "__main__":
typer.run(main)
| data/typer-0.9.0/docs_src/arguments/default/tutorial001_an.py | 188 | 74 | 224,531 |
LOAD_CONST 0
LOAD_CONST ('*',)
IMPORT_NAME azure.cli.core.aaz
IMPORT_STAR
LOAD_NAME register_command_group
LOAD_CONST 'disk-encryption-set'
CALL_FUNCTION
LOAD_BUILD_CLASS
LOAD_CONST <code object __CMDGroup at 0x7fab42736540, file "f.py", line 4>
LOAD_CONST '__CMDGroup'
MAKE_FUNCTION
LOAD_CONST '__CMDGroup'
LOAD_NAME... | from azure.cli.core.aaz import *
@register_command_group(
"disk-encryption-set",
)
class __CMDGroup(AAZCommandGroup):
"""Disk Encryption Set resource."""
pass
__all__ = ["__CMDGroup"]
| data/azure-cli-2.57.0/azure/cli/command_modules/vm/aaz/latest/disk_encryption_set/__cmd_group.py | 184 | 74 | 376,655 |
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME pytest
STORE_NAME pytest
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME kernels
STORE_NAME kernels
LOAD_NAME pytest
LOAD_ATTR mark
LOAD_ATTR skip
LOAD_CONST 'Unable to generate any tests for kernel'
LOAD_CONST ('reason',)
CALL_FUNCTION
LOAD_CONST <code object test_pyawkward_IndexedA... | import pytest
import kernels
@pytest.mark.skip(reason="Unable to generate any tests for kernel")
def test_pyawkward_IndexedArrayU32_ranges_next_64_1():
raise NotImplementedError("Unable to generate any tests for kernel")
| data/awkward-cpp-29/tests-spec/test_pyawkward_IndexedArrayU32_ranges_next_64.py | 200 | 74 | 220,742 |
LOAD_CONST 0
LOAD_CONST ('Enum',)
IMPORT_NAME enum
IMPORT_FROM Enum
STORE_NAME Enum
POP_TOP
LOAD_BUILD_CLASS
LOAD_CONST <code object EndUserNotificationSettingType at 0x7fab4298e8a0, file "f.py", line 4>
LOAD_CONST 'EndUserNotificationSettingType'
MAKE_FUNCTION
LOAD_CONST 'EndUserNotificationSettingType'
LOAD_NAME str... | from enum import Enum
class EndUserNotificationSettingType(str, Enum):
Unknown = ("unknown",)
NoTraining = ("noTraining",)
TrainingSelected = ("trainingSelected",)
NoNotification = ("noNotification",)
UnknownFutureValue = ("unknownFutureValue",)
| data/msgraph-sdk-1.1.0/msgraph/generated/models/end_user_notification_setting_type.py | 196 | 74 | 260,860 |
LOAD_CONST 1
LOAD_CONST ('setup_field_view',)
IMPORT_NAME field_view_setup
IMPORT_FROM setup_field_view
STORE_NAME setup_field_view
POP_TOP
LOAD_CONST 1
LOAD_CONST ('field_view_t',)
IMPORT_NAME field_view
IMPORT_FROM field_view_t
STORE_NAME field_view_t
POP_TOP
LOAD_CONST 1
LOAD_CONST ('setup_field_menu',)
IMPORT_NAM... | from .field_view_setup import setup_field_view # noqa
from .field_view import field_view_t # noqa
from .field_menu_setup import setup_field_menu # noqa
from .field_menu import field_menu_t # noqa
| data/hachoir-3.3.0/hachoir/wx/field_view/__init__.py | 152 | 74 | 203,877 |
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME inspect
STORE_NAME inspect
LOAD_CONST <code object _get_arg_names at 0x7fae471296f0, file "f.py", line 4>
LOAD_CONST '_get_arg_names'
MAKE_FUNCTION
STORE_NAME _get_arg_names
LOAD_CONST None
RETURN_VALUE
LOAD_GLOBAL list
LOAD_GLOBAL inspect
LOAD_METHOD signature
LOAD_FAST f
CAL... | import inspect
def _get_arg_names(f):
"""Get the argument names of a function.
Args:
f: A function.
Returns:
A list of argument names.
"""
return list(inspect.signature(f).parameters.keys())
| data/mlflow-2.10.2/mlflow/utils/arguments_utils.py | 102 | 74 | 43,786 |
LOAD_CONST <code object iter at 0x7fab4106ca50, file "f.py", line 1>
LOAD_CONST 'iter'
MAKE_FUNCTION
STORE_NAME iter
LOAD_CONST 10
LOAD_CONST 20
LOAD_CONST 30
BUILD_LIST
STORE_NAME A
LOAD_NAME list
LOAD_NAME iter
LOAD_NAME A
CALL_FUNCTION
CALL_FUNCTION
LOAD_NAME A
COMPARE_OP ==
POP_JUMP_IF_TRUE
LOAD_GLOBAL AssertionE... | def iter(self):
i = 0
try:
while True:
v = self[i]
yield v
i += 1
except IndexError:
return
A = [10, 20, 30]
assert list(iter(A)) == A
| data/xdis-6.0.5/test/simple_source/bug36/05_try_whiletrue.py | 195 | 74 | 85,357 |
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME pytest
STORE_NAME pytest
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME kernels
STORE_NAME kernels
LOAD_NAME pytest
LOAD_ATTR mark
LOAD_ATTR skip
LOAD_CONST 'Unable to generate any tests for kernel'
LOAD_CONST ('reason',)
CALL_FUNCTION
LOAD_CONST <code object test_pyawkward_reduce_p... | import pytest
import kernels
@pytest.mark.skip(reason="Unable to generate any tests for kernel")
def test_pyawkward_reduce_prod_int32_int8_64_1():
raise NotImplementedError("Unable to generate any tests for kernel")
| data/awkward-cpp-29/tests-spec/test_pyawkward_reduce_prod_int32_int8_64.py | 200 | 74 | 220,745 |
LOAD_CONST 'sphinxext.opengraph'
BUILD_LIST
STORE_NAME extensions
LOAD_CONST 'index'
STORE_NAME master_doc
LOAD_CONST '_build'
BUILD_LIST
STORE_NAME exclude_patterns
LOAD_CONST 'basic'
STORE_NAME html_theme
LOAD_CONST 'http://example.org/en/latest/'
STORE_NAME ogp_site_url
LOAD_CONST True
STORE_NAME ogp_enable_met... | extensions = ["sphinxext.opengraph"]
master_doc = "index"
exclude_patterns = ["_build"]
html_theme = "basic"
ogp_site_url = "http://example.org/en/latest/"
ogp_enable_meta_description = True
| data/sphinxext-opengraph-0.9.1/tests/roots/test-meta-name-description-manual-og-description/conf.py | 94 | 74 | 346,026 |
LOAD_CONST 1
LOAD_CONST ('ColumnType', 'DeclaredEnumValues', 'EnumNamesToValues', 'EnumNamesToTableReferences', 'TableReference')
IMPORT_NAME types
IMPORT_FROM ColumnType
STORE_NAME ColumnType
IMPORT_FROM DeclaredEnumValues
STORE_NAME DeclaredEnumValues
IMPORT_FROM EnumNamesToValues
STORE_NAME EnumNamesToValues
IMPORT_... | from .types import (
ColumnType,
DeclaredEnumValues,
EnumNamesToValues,
EnumNamesToTableReferences,
TableReference,
)
from .defined_enums import get_defined_enums
from .declared_enums import get_declared_enums
| data/alembic_postgresql_enum-1.1.2/alembic_postgresql_enum/get_enum_data/__init__.py | 187 | 74 | 209,375 |
LOAD_CONST 0
LOAD_CONST ('*',)
IMPORT_NAME azure.cli.core.aaz
IMPORT_STAR
LOAD_NAME register_command_group
LOAD_CONST 'vm host group'
CALL_FUNCTION
LOAD_BUILD_CLASS
LOAD_CONST <code object __CMDGroup at 0x7faa5ec3b8a0, file "f.py", line 4>
LOAD_CONST '__CMDGroup'
MAKE_FUNCTION
LOAD_CONST '__CMDGroup'
LOAD_NAME AAZCo... | from azure.cli.core.aaz import *
@register_command_group(
"vm host group",
)
class __CMDGroup(AAZCommandGroup):
"""Manage Dedicated Host Groups"""
pass
__all__ = ["__CMDGroup"]
| data/azure-cli-2.57.0/azure/cli/command_modules/vm/aaz/latest/vm/host/group/__cmd_group.py | 183 | 74 | 376,635 |
LOAD_CONST '\nDigitalOcean provides a set of services for DigitalOcean provider.\n'
STORE_NAME __doc__
LOAD_CONST 0
LOAD_CONST ('Node',)
IMPORT_NAME diagrams
IMPORT_FROM Node
STORE_NAME Node
POP_TOP
LOAD_BUILD_CLASS
LOAD_CONST <code object _DigitalOcean at 0x7fab70246e40, file "f.py", line 8>
LOAD_CONST '_DigitalOcea... | """
DigitalOcean provides a set of services for DigitalOcean provider.
"""
from diagrams import Node
class _DigitalOcean(Node):
_provider = "digitalocean"
_icon_dir = "resources/digitalocean"
fontcolor = "#ffffff"
| data/diagrams-0.23.4/diagrams/digitalocean/__init__.py | 192 | 74 | 206,039 |
LOAD_CONST 'Errors for the Konnected component.'
STORE_NAME __doc__
LOAD_CONST 0
LOAD_CONST ('HomeAssistantError',)
IMPORT_NAME homeassistant.exceptions
IMPORT_FROM HomeAssistantError
STORE_NAME HomeAssistantError
POP_TOP
LOAD_BUILD_CLASS
LOAD_CONST <code object KonnectedException at 0x7f8e2faf8c00, file "f.py", line... | """Errors for the Konnected component."""
from homeassistant.exceptions import HomeAssistantError
class KonnectedException(HomeAssistantError):
"""Base class for Konnected exceptions."""
class CannotConnect(KonnectedException):
"""Unable to connect to the panel."""
| data/homeassistant-2024.2.2/homeassistant/components/konnected/errors.py | 285 | 74 | 407,062 |
LOAD_CONST 0
LOAD_CONST ('unique',)
IMPORT_NAME enum
IMPORT_FROM unique
STORE_NAME unique
POP_TOP
LOAD_CONST 4
LOAD_CONST ('StrEnum',)
IMPORT_NAME _base_enum
IMPORT_FROM StrEnum
STORE_NAME StrEnum
POP_TOP
LOAD_NAME unique
LOAD_BUILD_CLASS
LOAD_CONST <code object BinaryType at 0x7fab700e4390, file "f.py", line 5>
LOAD... | from enum import unique
from ...._base_enum import StrEnum
@unique
class BinaryType(StrEnum):
DIGITAL = "Digital"
NO_TOUCH = "NoTouch"
NONE = "None"
ONE_TOUCH = "OneTouch"
| data/refinitiv-data-1.6.0/refinitiv/data/content/ipa/_enums/_binary_type.py | 202 | 74 | 195,540 |
LOAD_CONST 0
LOAD_CONST ('*',)
IMPORT_NAME azure.cli.core.aaz
IMPORT_STAR
LOAD_NAME register_command_group
LOAD_CONST 'consumption reservation'
CALL_FUNCTION
LOAD_BUILD_CLASS
LOAD_CONST <code object __CMDGroup at 0x7faa5dedb270, file "f.py", line 4>
LOAD_CONST '__CMDGroup'
MAKE_FUNCTION
LOAD_CONST '__CMDGroup'
LOAD_... | from azure.cli.core.aaz import *
@register_command_group(
"consumption reservation",
)
class __CMDGroup(AAZCommandGroup):
"""Manage reservations for Azure resources."""
pass
__all__ = ["__CMDGroup"]
| data/azure-cli-2.57.0/azure/cli/command_modules/consumption/aaz/latest/consumption/reservation/__cmd_group.py | 182 | 74 | 376,360 |
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME pytest
STORE_NAME pytest
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME kernels
STORE_NAME kernels
LOAD_NAME pytest
LOAD_ATTR mark
LOAD_ATTR skip
LOAD_CONST 'Unable to generate any tests for kernel'
LOAD_CONST ('reason',)
CALL_FUNCTION
LOAD_CONST <code object test_pyawkward_IndexedA... | import pytest
import kernels
@pytest.mark.skip(reason="Unable to generate any tests for kernel")
def test_pyawkward_IndexedArrayU32_reduce_next_64_1():
raise NotImplementedError("Unable to generate any tests for kernel")
| data/awkward-cpp-29/tests-spec/test_pyawkward_IndexedArrayU32_reduce_next_64.py | 201 | 74 | 220,752 |
LOAD_CONST '__copyright__'
LOAD_CONST '__license__'
LOAD_CONST '__version__'
BUILD_LIST
STORE_NAME __all__
LOAD_CONST 'Copyright (c) 2011-2024 Digital Bazaar, Inc.'
STORE_NAME __copyright__
LOAD_CONST 'New BSD license'
STORE_NAME __license__
LOAD_CONST '2.0.4'
STORE_NAME __version__
LOAD_CONST None
RETURN_VALUE | __all__ = ["__copyright__", "__license__", "__version__"]
__copyright__ = "Copyright (c) 2011-2024 Digital Bazaar, Inc."
__license__ = "New BSD license"
__version__ = "2.0.4"
| data/PyLD-2.0.4/lib/pyld/__about__.py | 94 | 74 | 246,088 |
LOAD_CONST 0
LOAD_CONST ('*',)
IMPORT_NAME azure.cli.core.aaz
IMPORT_STAR
LOAD_NAME register_command_group
LOAD_CONST 'ppg'
CALL_FUNCTION
LOAD_BUILD_CLASS
LOAD_CONST <code object __CMDGroup at 0x7fab82132300, file "f.py", line 4>
LOAD_CONST '__CMDGroup'
MAKE_FUNCTION
LOAD_CONST '__CMDGroup'
LOAD_NAME AAZCommandGroup... | from azure.cli.core.aaz import *
@register_command_group(
"ppg",
)
class __CMDGroup(AAZCommandGroup):
"""Manage Proximity Placement Groups."""
pass
__all__ = ["__CMDGroup"]
| data/azure-cli-2.57.0/azure/cli/command_modules/vm/aaz/latest/ppg/__cmd_group.py | 184 | 74 | 376,595 |
LOAD_CONST '\n-----------------------\nBase kitchen exceptions\n-----------------------\n\nException classes for kitchen and the root of the exception hierarchy for\nall kitchen modules.\n'
STORE_NAME __doc__
LOAD_BUILD_CLASS
LOAD_CONST <code object KitchenError at 0x7fab413f18a0, file "f.py", line 11>
LOAD_CONST 'Kit... | """
-----------------------
Base kitchen exceptions
-----------------------
Exception classes for kitchen and the root of the exception hierarchy for
all kitchen modules.
"""
class KitchenError(Exception):
"""Base exception class for any error thrown directly by kitchen."""
pass
__all__ = ("KitchenError",... | data/kitchen-1.2.6/kitchen2/kitchen/exceptions.py | 175 | 74 | 17,586 |
LOAD_CONST 'Generated API for package: tensorflow_examples.lite.model_maker.core.task.metadata_writers.bert.metadata_writer_for_bert.'
STORE_NAME __doc__
LOAD_CONST 0
LOAD_CONST ('*',)
IMPORT_NAME tensorflow_examples.lite.model_maker.core.task.metadata_writers.bert.metadata_writer_for_bert
IMPORT_STAR
LOAD_CONST None
... | """Generated API for package: tensorflow_examples.lite.model_maker.core.task.metadata_writers.bert.metadata_writer_for_bert."""
from tensorflow_examples.lite.model_maker.core.task.metadata_writers.bert.metadata_writer_for_bert import *
| data/tflite-model-maker-nightly-0.4.4.dev202402210609/src/tflite_model_maker/python/core/task/metadata_writers/bert/metadata_writer_for_bert.py | 94 | 74 | 389,410 |
LOAD_CONST 0
LOAD_CONST ('*',)
IMPORT_NAME azure.cli.core.aaz
IMPORT_STAR
LOAD_NAME register_command_group
LOAD_CONST 'vmss nic'
CALL_FUNCTION
LOAD_BUILD_CLASS
LOAD_CONST <code object __CMDGroup at 0x7fab82132300, file "f.py", line 4>
LOAD_CONST '__CMDGroup'
MAKE_FUNCTION
LOAD_CONST '__CMDGroup'
LOAD_NAME AAZCommand... | from azure.cli.core.aaz import *
@register_command_group(
"vmss nic",
)
class __CMDGroup(AAZCommandGroup):
"""Manage network interfaces of a VMSS."""
pass
__all__ = ["__CMDGroup"]
| data/azure-cli-2.57.0/azure/cli/command_modules/vm/aaz/latest/vmss/nic/__cmd_group.py | 184 | 74 | 376,589 |
LOAD_CONST '\nSome useful tools and utilities for wxPython.\n'
STORE_NAME __doc__
LOAD_CONST 'dbg'
LOAD_CONST 'genaxmodule'
LOAD_CONST 'helpviewer'
LOAD_CONST 'img2img'
LOAD_CONST 'img2png'
LOAD_CONST 'img2py'
LOAD_CONST 'img2xpm'
BUILD_LIST
STORE_NAME __all__
LOAD_CONST None
RETURN_VALUE | """
Some useful tools and utilities for wxPython.
"""
__all__ = [
"dbg",
"genaxmodule",
"helpviewer",
"img2img",
"img2png",
"img2py",
"img2xpm",
]
| data/wxPython-4.2.1/wx/tools/__init__.py | 89 | 74 | 301,205 |
LOAD_CONST '\nPackage for downloading data from the Arthur S3 bucket\n\n.. warning::\n This package is experimental and is under active development. The API for this package (its specific methods and\n workflows) are subject to change as the design and scope of this package evolve.\n'
STORE_NAME __doc__
LOAD_CONST 1
L... | """
Package for downloading data from the Arthur S3 bucket
.. warning::
This package is experimental and is under active development. The API for this package (its specific methods and
workflows) are subject to change as the design and scope of this package evolve.
"""
from .arthur_example import ArthurExampl... | data/arthurai-3.32.3/arthurai/datasets/__init__.py | 104 | 74 | 134,748 |
LOAD_CONST 0
LOAD_CONST ('*',)
IMPORT_NAME azure.cli.core.aaz
IMPORT_STAR
LOAD_NAME register_command_group
LOAD_CONST 'vmss extension'
CALL_FUNCTION
LOAD_BUILD_CLASS
LOAD_CONST <code object __CMDGroup at 0x7fab700555d0, file "f.py", line 4>
LOAD_CONST '__CMDGroup'
MAKE_FUNCTION
LOAD_CONST '__CMDGroup'
LOAD_NAME AAZC... | from azure.cli.core.aaz import *
@register_command_group(
"vmss extension",
)
class __CMDGroup(AAZCommandGroup):
"""Manage extensions on a VM scale set."""
pass
__all__ = ["__CMDGroup"]
| data/azure-cli-2.57.0/azure/cli/command_modules/vm/aaz/latest/vmss/extension/__cmd_group.py | 184 | 74 | 376,581 |
LOAD_CONST 0
LOAD_CONST ('Enum',)
IMPORT_NAME enum
IMPORT_FROM Enum
STORE_NAME Enum
POP_TOP
LOAD_BUILD_CLASS
LOAD_CONST <code object SharedPCAccountDeletionPolicyType at 0x7fab4298e270, file "f.py", line 4>
LOAD_CONST 'SharedPCAccountDeletionPolicyType'
MAKE_FUNCTION
LOAD_CONST 'SharedPCAccountDeletionPolicyType'
LOAD... | from enum import Enum
class SharedPCAccountDeletionPolicyType(str, Enum):
Immediate = ("immediate",)
DiskSpaceThreshold = ("diskSpaceThreshold",)
DiskSpaceThresholdOrInactiveThreshold = ("diskSpaceThresholdOrInactiveThreshold",)
| data/msgraph-sdk-1.1.0/msgraph/generated/models/shared_p_c_account_deletion_policy_type.py | 205 | 74 | 259,634 |
LOAD_CONST 'Pure-Python AES-GCM implementation.'
STORE_NAME __doc__
LOAD_CONST 1
LOAD_CONST ('AESGCM',)
IMPORT_NAME aesgcm
IMPORT_FROM AESGCM
STORE_NAME AESGCM
POP_TOP
LOAD_CONST 1
LOAD_CONST ('rijndael',)
IMPORT_NAME rijndael
IMPORT_FROM rijndael
STORE_NAME rijndael
POP_TOP
LOAD_CONST <code object new at 0x7f8e4475... | """Pure-Python AES-GCM implementation."""
from .aesgcm import AESGCM
from .rijndael import rijndael
def new(key):
return AESGCM(key, "python", rijndael(key, 16).encrypt)
| data/tlslite-ng-0.7.6/tlslite/utils/python_aesgcm.py | 174 | 74 | 7,236 |
LOAD_CONST 0
LOAD_CONST ('Enum',)
IMPORT_NAME enum
IMPORT_FROM Enum
STORE_NAME Enum
POP_TOP
LOAD_BUILD_CLASS
LOAD_CONST <code object ServiceUpdateCategory at 0x7fab4298ed20, file "f.py", line 4>
LOAD_CONST 'ServiceUpdateCategory'
MAKE_FUNCTION
LOAD_CONST 'ServiceUpdateCategory'
LOAD_NAME str
LOAD_NAME Enum
CALL_FUNCTI... | from enum import Enum
class ServiceUpdateCategory(str, Enum):
PreventOrFixIssue = ("preventOrFixIssue",)
PlanForChange = ("planForChange",)
StayInformed = ("stayInformed",)
UnknownFutureValue = ("unknownFutureValue",)
| data/msgraph-sdk-1.1.0/msgraph/generated/models/service_update_category.py | 185 | 74 | 261,239 |
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME pytest
STORE_NAME pytest
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME kernels
STORE_NAME kernels
LOAD_NAME pytest
LOAD_ATTR mark
LOAD_ATTR skip
LOAD_CONST 'Unable to generate any tests for kernel'
LOAD_CONST ('reason',)
CALL_FUNCTION
LOAD_CONST <code object test_pyawkward_UnionArr... | import pytest
import kernels
@pytest.mark.skip(reason="Unable to generate any tests for kernel")
def test_pyawkward_UnionArray32_flatten_combine_64_1():
raise NotImplementedError("Unable to generate any tests for kernel")
| data/awkward-cpp-29/tests-spec/test_pyawkward_UnionArray32_flatten_combine_64.py | 200 | 74 | 220,450 |
LOAD_CONST 0
LOAD_CONST ('gcp_audit_info',)
IMPORT_NAME prowler.providers.gcp.lib.audit_info.audit_info
IMPORT_FROM gcp_audit_info
STORE_NAME gcp_audit_info
POP_TOP
LOAD_CONST 0
LOAD_CONST ('KMS',)
IMPORT_NAME prowler.providers.gcp.services.kms.kms_service
IMPORT_FROM KMS
STORE_NAME KMS
POP_TOP
LOAD_NAME KMS
LOAD_NAM... | from prowler.providers.gcp.lib.audit_info.audit_info import gcp_audit_info
from prowler.providers.gcp.services.kms.kms_service import KMS
kms_client = KMS(gcp_audit_info)
| data/prowler-3.14.0/prowler/providers/gcp/services/kms/kms_client.py | 129 | 74 | 182,933 |
LOAD_CONST 0
LOAD_CONST ('*',)
IMPORT_NAME astropy.timeseries.periodograms.base
IMPORT_STAR
LOAD_CONST 0
LOAD_CONST ('*',)
IMPORT_NAME astropy.timeseries.periodograms.bls
IMPORT_STAR
LOAD_CONST 0
LOAD_CONST ('*',)
IMPORT_NAME astropy.timeseries.periodograms.lombscargle
IMPORT_STAR
LOAD_CONST 0
LOAD_CONST ('*',)
IMPO... | from astropy.timeseries.periodograms.base import *
from astropy.timeseries.periodograms.bls import *
from astropy.timeseries.periodograms.lombscargle import *
from astropy.timeseries.periodograms.lombscargle_multiband import *
| data/astropy-6.0.0/astropy/timeseries/periodograms/__init__.py | 121 | 74 | 21,439 |
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME abc
STORE_NAME abc
LOAD_CONST 0
LOAD_CONST ('Table',)
IMPORT_NAME rich.table
IMPORT_FROM Table
STORE_NAME Table
POP_TOP
LOAD_BUILD_CLASS
LOAD_CONST <code object Formatable at 0x7f8e2ff25270, file "f.py", line 6>
LOAD_CONST 'Formatable'
MAKE_FUNCTION
LOAD_CONST 'Formatable'
LOA... | import abc
from rich.table import Table
class Formatable(abc.ABC):
@abc.abstractmethod
def as_table(self) -> Table:
pass
@abc.abstractmethod
def as_json(self) -> str:
pass
| data/lightning-2.2.0.post0/src/lightning/app/cli/core.py | 296 | 74 | 121,470 |
LOAD_CONST 0
LOAD_CONST ('HasInputCol',)
IMPORT_NAME ai.h2o.sparkling.ml.params.HasInputCol
IMPORT_FROM HasInputCol
STORE_NAME HasInputCol
POP_TOP
LOAD_CONST 0
LOAD_CONST ('HasOutputCol',)
IMPORT_NAME ai.h2o.sparkling.ml.params.HasOutputCol
IMPORT_FROM HasOutputCol
STORE_NAME HasOutputCol
POP_TOP
LOAD_BUILD_CLASS
LOA... | from ai.h2o.sparkling.ml.params.HasInputCol import HasInputCol
from ai.h2o.sparkling.ml.params.HasOutputCol import HasOutputCol
class H2OWord2VecExtraParams(HasInputCol, HasOutputCol):
pass
| data/h2o_pysparkling_3.1-3.44.0.3.post1/ai/h2o/sparkling/ml/params/H2OWord2VecExtraParams.py | 224 | 74 | 27,298 |
LOAD_CONST 0
LOAD_CONST ('*',)
IMPORT_NAME azure.cli.core.aaz
IMPORT_STAR
LOAD_NAME register_command_group
LOAD_CONST 'monitor activity-log alert'
CALL_FUNCTION
LOAD_BUILD_CLASS
LOAD_CONST <code object __CMDGroup at 0x7fab416c6420, file "f.py", line 4>
LOAD_CONST '__CMDGroup'
MAKE_FUNCTION
LOAD_CONST '__CMDGroup'
LO... | from azure.cli.core.aaz import *
@register_command_group(
"monitor activity-log alert",
)
class __CMDGroup(AAZCommandGroup):
"""Manage activity log alert rules."""
pass
__all__ = ["__CMDGroup"]
| data/azure-cli-2.57.0/azure/cli/command_modules/monitor/aaz/latest/monitor/activity_log/alert/__cmd_group.py | 184 | 74 | 375,005 |
LOAD_CONST 0
LOAD_CONST ('ClientValue',)
IMPORT_NAME office365.runtime.client_value
IMPORT_FROM ClientValue
STORE_NAME ClientValue
POP_TOP
LOAD_BUILD_CLASS
LOAD_CONST <code object AuditSearchRequestStatus at 0x7fab82236b70, file "f.py", line 4>
LOAD_CONST 'AuditSearchRequestStatus'
MAKE_FUNCTION
LOAD_CONST 'AuditSearc... | from office365.runtime.client_value import ClientValue
class AuditSearchRequestStatus(ClientValue):
@property
def entity_type_name(self):
return (
"Microsoft.SharePoint.Administration.TenantAdmin.AuditSearchRequestStatus"
)
| data/Office365-REST-Python-Client-2.5.5/office365/sharepoint/tenant/administration/audit/search_request_status.py | 237 | 74 | 189,362 |
LOAD_CONST 'Generated API for package: tensorflow_examples.lite.model_maker.third_party.recommendation.ml.model.dotproduct_similarity.'
STORE_NAME __doc__
LOAD_CONST 0
LOAD_CONST ('*',)
IMPORT_NAME tensorflow_examples.lite.model_maker.third_party.recommendation.ml.model.dotproduct_similarity
IMPORT_STAR
LOAD_CONST Non... | """Generated API for package: tensorflow_examples.lite.model_maker.third_party.recommendation.ml.model.dotproduct_similarity."""
from tensorflow_examples.lite.model_maker.third_party.recommendation.ml.model.dotproduct_similarity import *
| data/tflite-model-maker-nightly-0.4.4.dev202402210609/src/tflite_model_maker/python/third_party/recommendation/ml/model/dotproduct_similarity.py | 94 | 74 | 389,295 |
LOAD_CONST 'Sub-package containing the matrix class and related functions.\n\n'
STORE_NAME __doc__
LOAD_CONST 1
LOAD_CONST ('defmatrix',)
IMPORT_NAME
IMPORT_FROM defmatrix
STORE_NAME defmatrix
POP_TOP
LOAD_CONST 1
LOAD_CONST ('*',)
IMPORT_NAME defmatrix
IMPORT_STAR
LOAD_NAME defmatrix
LOAD_ATTR __all__
STORE_NAME __... | """Sub-package containing the matrix class and related functions.
"""
from . import defmatrix
from .defmatrix import *
__all__ = defmatrix.__all__
from numpy._pytesttester import PytestTester
test = PytestTester(__name__)
del PytestTester
| data/numpy-1.26.4/numpy/matrixlib/__init__.py | 145 | 74 | 364,184 |
LOAD_CONST 0
LOAD_CONST ('datetime',)
IMPORT_NAME datetime
IMPORT_FROM datetime
STORE_NAME datetime
POP_TOP
LOAD_CONST 0
LOAD_CONST ('Optional',)
IMPORT_NAME typing
IMPORT_FROM Optional
STORE_NAME Optional
POP_TOP
LOAD_CONST 0
LOAD_CONST ('BaseModel',)
IMPORT_NAME pydantic
IMPORT_FROM BaseModel
STORE_NAME BaseModel
P... | from datetime import datetime
from typing import Optional
from pydantic import BaseModel
class RemoteFile(BaseModel):
"""
A file in a file-based stream.
"""
uri: str
last_modified: datetime
mime_type: Optional[str] = None
| data/airbyte-cdk-0.64.0/airbyte_cdk/sources/file_based/remote_file.py | 257 | 74 | 51,849 |
LOAD_CONST 0
LOAD_CONST ('*',)
IMPORT_NAME azure.cli.core.aaz
IMPORT_STAR
LOAD_NAME register_command_group
LOAD_CONST 'relay namespace'
CALL_FUNCTION
LOAD_BUILD_CLASS
LOAD_CONST <code object __CMDGroup at 0x7fab823bedb0, file "f.py", line 4>
LOAD_CONST '__CMDGroup'
MAKE_FUNCTION
LOAD_CONST '__CMDGroup'
LOAD_NAME AAZ... | from azure.cli.core.aaz import *
@register_command_group(
"relay namespace",
)
class __CMDGroup(AAZCommandGroup):
"""Manage Azure Relay Service Namespace."""
pass
__all__ = ["__CMDGroup"]
| data/azure-cli-2.57.0/azure/cli/command_modules/relay/aaz/latest/relay/namespace/__cmd_group.py | 182 | 74 | 375,618 |
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME opentracing
STORE_NAME opentracing
LOAD_CONST <code object test_tracer_basics at 0x7fae471296f0, file "f.py", line 4>
LOAD_CONST 'test_tracer_basics'
MAKE_FUNCTION
STORE_NAME test_tracer_basics
LOAD_CONST None
RETURN_VALUE
LOAD_GLOBAL hasattr
LOAD_GLOBAL opentracing
LOAD_ATTR ... | import opentracing
def test_tracer_basics():
assert hasattr(opentracing.tracer, "start_span")
assert hasattr(opentracing.tracer, "inject")
assert hasattr(opentracing.tracer, "extract")
| data/instana-1.38.2/tests/opentracing/test_ot_tracer.py | 187 | 74 | 232,728 |
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME pytest
STORE_NAME pytest
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME kernels
STORE_NAME kernels
LOAD_NAME pytest
LOAD_ATTR mark
LOAD_ATTR skip
LOAD_CONST 'Unable to generate any tests for kernel'
LOAD_CONST ('reason',)
CALL_FUNCTION
LOAD_CONST <code object test_pyawkward_reduce_s... | import pytest
import kernels
@pytest.mark.skip(reason="Unable to generate any tests for kernel")
def test_pyawkward_reduce_sum_uint64_uint8_64_1():
raise NotImplementedError("Unable to generate any tests for kernel")
| data/awkward-cpp-29/tests-spec/test_pyawkward_reduce_sum_uint64_uint8_64.py | 201 | 74 | 220,394 |
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME pytest
STORE_NAME pytest
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME kernels
STORE_NAME kernels
LOAD_NAME pytest
LOAD_ATTR mark
LOAD_ATTR skip
LOAD_CONST 'Unable to generate any tests for kernel'
LOAD_CONST ('reason',)
CALL_FUNCTION
LOAD_CONST <code object test_pyawkward_NumpyArr... | import pytest
import kernels
@pytest.mark.skip(reason="Unable to generate any tests for kernel")
def test_pyawkward_NumpyArray_fill_toint8_fromuint8_1():
raise NotImplementedError("Unable to generate any tests for kernel")
| data/awkward-cpp-29/tests-spec/test_pyawkward_NumpyArray_fill_toint8_fromuint8.py | 200 | 74 | 220,541 |
LOAD_CONST 0
LOAD_CONST ('*',)
IMPORT_NAME azure.cli.core.aaz
IMPORT_STAR
LOAD_NAME register_command_group
LOAD_CONST 'network private-link-service'
CALL_FUNCTION
LOAD_BUILD_CLASS
LOAD_CONST <code object __CMDGroup at 0x7faa7486a540, file "f.py", line 4>
LOAD_CONST '__CMDGroup'
MAKE_FUNCTION
LOAD_CONST '__CMDGroup'
... | from azure.cli.core.aaz import *
@register_command_group(
"network private-link-service",
)
class __CMDGroup(AAZCommandGroup):
"""Manage private link services."""
pass
__all__ = ["__CMDGroup"]
| data/azure-cli-2.57.0/azure/cli/command_modules/network/aaz/latest/network/private_link_service/__cmd_group.py | 184 | 74 | 378,253 |
LOAD_CONST 'Meta-estimators for composing models with multiple transformers.\n\nThese estimators are useful for working with heterogenous tabular data.\n'
STORE_NAME __doc__
LOAD_CONST 1
LOAD_CONST ('ColumnTransformer', 'make_column_transformer')
IMPORT_NAME _column_transformer
IMPORT_FROM ColumnTransformer
STORE_NAME... | """Meta-estimators for composing models with multiple transformers.
These estimators are useful for working with heterogenous tabular data.
"""
from ._column_transformer import ColumnTransformer, make_column_transformer
__all__ = ["ColumnTransformer", "make_column_transformer"]
| data/dask-ml-2023.3.24/dask_ml/compose/__init__.py | 126 | 74 | 17,994 |
LOAD_CONST 0
LOAD_CONST ('Enum',)
IMPORT_NAME enum
IMPORT_FROM Enum
STORE_NAME Enum
POP_TOP
LOAD_BUILD_CLASS
LOAD_CONST <code object MdmAppConfigKeyType at 0x7fab70027660, file "f.py", line 4>
LOAD_CONST 'MdmAppConfigKeyType'
MAKE_FUNCTION
LOAD_CONST 'MdmAppConfigKeyType'
LOAD_NAME str
LOAD_NAME Enum
CALL_FUNCTION
STO... | from enum import Enum
class MdmAppConfigKeyType(str, Enum):
StringType = ("stringType",)
IntegerType = ("integerType",)
RealType = ("realType",)
BooleanType = ("booleanType",)
TokenType = ("tokenType",)
| data/msgraph-sdk-1.1.0/msgraph/generated/models/mdm_app_config_key_type.py | 200 | 74 | 259,865 |
LOAD_BUILD_CLASS
LOAD_CONST <code object BaseCompressor at 0x7fab82363780, file "f.py", line 1>
LOAD_CONST 'BaseCompressor'
MAKE_FUNCTION
LOAD_CONST 'BaseCompressor'
CALL_FUNCTION
STORE_NAME BaseCompressor
LOAD_CONST None
RETURN_VALUE
LOAD_NAME __name__
STORE_NAME __module__
LOAD_CONST 'BaseCompressor'
STORE_NAME __qu... | class BaseCompressor:
def __init__(self, options):
self._options = options
def compress(self, value: bytes) -> bytes:
raise NotImplementedError
def decompress(self, value: bytes) -> bytes:
raise NotImplementedError
| data/django-redis-5.4.0/django_redis/compressors/base.py | 330 | 74 | 379,203 |
LOAD_CONST 0
LOAD_CONST ('*',)
IMPORT_NAME azure.cli.core.aaz
IMPORT_STAR
LOAD_NAME register_command_group
LOAD_CONST 'network service-endpoint policy'
CALL_FUNCTION
LOAD_BUILD_CLASS
LOAD_CONST <code object __CMDGroup at 0x7faa5e81f540, file "f.py", line 4>
LOAD_CONST '__CMDGroup'
MAKE_FUNCTION
LOAD_CONST '__CMDGroup... | from azure.cli.core.aaz import *
@register_command_group(
"network service-endpoint policy",
)
class __CMDGroup(AAZCommandGroup):
"""Manage service endpoint policies."""
pass
__all__ = ["__CMDGroup"]
| data/azure-cli-2.57.0/azure/cli/command_modules/network/aaz/latest/network/service_endpoint/policy/__cmd_group.py | 184 | 74 | 378,195 |
LOAD_CONST 0
LOAD_CONST ('Iterable',)
IMPORT_NAME typing
IMPORT_FROM Iterable
STORE_NAME Iterable
POP_TOP
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME pytest
STORE_NAME pytest
LOAD_CONST 0
LOAD_CONST ('cache',)
IMPORT_NAME django.core.cache
IMPORT_FROM cache
STORE_NAME default_cache
POP_TOP
LOAD_CONST 0
LOAD_CONST ('Bas... | from typing import Iterable
import pytest
from django.core.cache import cache as default_cache
from django_redis.cache import BaseCache
@pytest.fixture
def cache() -> Iterable[BaseCache]:
yield default_cache
default_cache.clear()
| data/django-redis-5.4.0/tests/conftest.py | 205 | 74 | 379,218 |
LOAD_CONST 0
LOAD_CONST ('AsyncClient',)
IMPORT_NAME httpx
IMPORT_FROM AsyncClient
STORE_NAME AsyncClient
POP_TOP
LOAD_CONST 0
LOAD_CONST ('Client',)
IMPORT_NAME httpx
IMPORT_FROM Client
STORE_NAME BaseClient
POP_TOP
LOAD_CONST '0.3.3'
STORE_NAME __version__
LOAD_BUILD_CLASS
LOAD_CONST <code object SyncClient at 0x7... | from httpx import AsyncClient as AsyncClient # noqa: F401
from httpx import Client as BaseClient
__version__ = "0.3.3"
class SyncClient(BaseClient):
def aclose(self) -> None:
self.close()
| data/supafunc-0.3.3/supafunc/utils.py | 238 | 74 | 293,086 |
LOAD_CONST 0
LOAD_CONST ('gcp_audit_info',)
IMPORT_NAME prowler.providers.gcp.lib.audit_info.audit_info
IMPORT_FROM gcp_audit_info
STORE_NAME gcp_audit_info
POP_TOP
LOAD_CONST 0
LOAD_CONST ('Monitoring',)
IMPORT_NAME prowler.providers.gcp.services.monitoring.monitoring_service
IMPORT_FROM Monitoring
STORE_NAME Monitor... | from prowler.providers.gcp.lib.audit_info.audit_info import gcp_audit_info
from prowler.providers.gcp.services.monitoring.monitoring_service import Monitoring
monitoring_client = Monitoring(gcp_audit_info)
| data/prowler-3.14.0/prowler/providers/gcp/services/monitoring/monitoring_client.py | 128 | 74 | 182,901 |
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME pytest
STORE_NAME pytest
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME kernels
STORE_NAME kernels
LOAD_NAME pytest
LOAD_ATTR mark
LOAD_ATTR skip
LOAD_CONST 'Unable to generate any tests for kernel'
LOAD_CONST ('reason',)
CALL_FUNCTION
LOAD_CONST <code object test_pyawkward_ListOffs... | import pytest
import kernels
@pytest.mark.skip(reason="Unable to generate any tests for kernel")
def test_pyawkward_ListOffsetArrayU32_rpad_length_axis1_1():
raise NotImplementedError("Unable to generate any tests for kernel")
| data/awkward-cpp-29/tests-spec/test_pyawkward_ListOffsetArrayU32_rpad_length_axis1.py | 201 | 74 | 220,568 |
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME pytest
STORE_NAME pytest
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME kernels
STORE_NAME kernels
LOAD_NAME pytest
LOAD_ATTR mark
LOAD_ATTR skip
LOAD_CONST 'Unable to generate any tests for kernel'
LOAD_CONST ('reason',)
CALL_FUNCTION
LOAD_CONST <code object test_pyawkward_reduce_p... | import pytest
import kernels
@pytest.mark.skip(reason="Unable to generate any tests for kernel")
def test_pyawkward_reduce_prod_int64_int8_64_1():
raise NotImplementedError("Unable to generate any tests for kernel")
| data/awkward-cpp-29/tests-spec/test_pyawkward_reduce_prod_int64_int8_64.py | 200 | 74 | 220,573 |
LOAD_CONST <code object condition_with_prefix at 0x7fab823b2390, file "f.py", line 1>
LOAD_CONST 'condition_with_prefix'
MAKE_FUNCTION
STORE_NAME condition_with_prefix
LOAD_CONST None
RETURN_VALUE
LOAD_FAST prefix
LOAD_CONST ''
COMPARE_OP ==
POP_JUMP_IF_TRUE
LOAD_FAST prefix
LOAD_CONST None
COMPARE_OP is
POP_JUMP_IF_F... | def condition_with_prefix(prefix, condition):
"""Returns the given string prefixed by the given prefix.
If the prefix is non-empty, a colon is used to separate them.
"""
if prefix == "" or prefix is None:
return condition
return prefix + ":" + condition
| data/macaroonbakery-1.3.4/macaroonbakery/checkers/_utils.py | 105 | 74 | 310,964 |
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME pytest
STORE_NAME pytest
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME kernels
STORE_NAME kernels
LOAD_NAME pytest
LOAD_ATTR mark
LOAD_ATTR skip
LOAD_CONST 'Unable to generate any tests for kernel'
LOAD_CONST ('reason',)
CALL_FUNCTION
LOAD_CONST <code object test_pyawkward_RegularA... | import pytest
import kernels
@pytest.mark.skip(reason="Unable to generate any tests for kernel")
def test_pyawkward_RegularArray_reduce_local_nextparents_64_1():
raise NotImplementedError("Unable to generate any tests for kernel")
| data/awkward-cpp-29/tests-spec/test_pyawkward_RegularArray_reduce_local_nextparents_64.py | 201 | 74 | 220,583 |
LOAD_CONST 0
LOAD_CONST ('*',)
IMPORT_NAME azure.cli.core.aaz
IMPORT_STAR
LOAD_NAME register_command_group
LOAD_CONST 'monitor diagnostic-settings subscription'
CALL_FUNCTION
LOAD_BUILD_CLASS
LOAD_CONST <code object __CMDGroup at 0x7fab70055d20, file "f.py", line 4>
LOAD_CONST '__CMDGroup'
MAKE_FUNCTION
LOAD_CONST '_... | from azure.cli.core.aaz import *
@register_command_group(
"monitor diagnostic-settings subscription",
)
class __CMDGroup(AAZCommandGroup):
"""Manage diagnostic settings for subscription."""
pass
__all__ = ["__CMDGroup"]
| data/azure-cli-2.57.0/azure/cli/command_modules/monitor/aaz/latest/monitor/diagnostic_settings/subscription/__cmd_group.py | 184 | 74 | 375,027 |
LOAD_CONST <code object make_task at 0x7fab8203ac00, file "f.py", line 1>
LOAD_CONST 'make_task'
MAKE_FUNCTION
STORE_NAME make_task
LOAD_NAME make_task
LOAD_CONST <code object sample at 0x7fab540c5150, file "f.py", line 7>
LOAD_CONST 'sample'
MAKE_FUNCTION
CALL_FUNCTION
STORE_NAME sample
LOAD_CONST None
RETURN_VALUE
... | def make_task(func):
"""make decorated function a task-creator"""
func.create_doit_tasks = func
return func
@make_task
def sample():
return {
"verbosity": 2,
"actions": ["echo hi"],
}
| data/doit-0.36.0/doc/samples/custom_task_def.py | 151 | 74 | 109,342 |
LOAD_CONST 1
LOAD_CONST ('convolve', 'convolve_fft', 'convolve_models', 'convolve_models_fft', 'interpolate_replace_nans')
IMPORT_NAME convolve
IMPORT_FROM convolve
STORE_NAME convolve
IMPORT_FROM convolve_fft
STORE_NAME convolve_fft
IMPORT_FROM convolve_models
STORE_NAME convolve_models
IMPORT_FROM convolve_models_fft... | from .convolve import (
convolve,
convolve_fft,
convolve_models,
convolve_models_fft,
interpolate_replace_nans,
)
from .core import *
from .kernels import *
from .utils import *
| data/astropy-6.0.0/astropy/convolution/__init__.py | 185 | 74 | 21,237 |
LOAD_CONST '\nAccount management functionality related to the IBM Runtime Services.\n'
STORE_NAME __doc__
LOAD_CONST 1
LOAD_CONST ('Account', 'AccountType', 'ChannelType')
IMPORT_NAME account
IMPORT_FROM Account
STORE_NAME Account
IMPORT_FROM AccountType
STORE_NAME AccountType
IMPORT_FROM ChannelType
STORE_NAME Channe... | """
Account management functionality related to the IBM Runtime Services.
"""
from .account import Account, AccountType, ChannelType
from .management import AccountManager
from .exceptions import (
AccountNotFoundError,
AccountAlreadyExistsError,
InvalidAccountError,
CloudResourceNameResolutionError,
)... | data/qiskit-ibm-runtime-0.20.0/qiskit_ibm_runtime/accounts/__init__.py | 183 | 74 | 363,203 |
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME logging
STORE_NAME logging
LOAD_CONST 0
LOAD_CONST ('version', 'plugin')
IMPORT_NAME rasa
IMPORT_FROM version
STORE_NAME version
IMPORT_FROM plugin
STORE_NAME plugin
POP_TOP
LOAD_CONST 0
LOAD_CONST ('run', 'train', 'test')
IMPORT_NAME rasa.api
IMPORT_FROM run
STORE_NAME run
IM... | import logging
from rasa import version, plugin # noqa: F401
from rasa.api import run, train, test # noqa: F401
__version__ = version.__version__
logging.getLogger(__name__).addHandler(logging.NullHandler())
| data/rasa-3.6.17/rasa/__init__.py | 137 | 74 | 293,379 |
LOAD_CONST 'EquivalencyConverter'
LOAD_CONST 'QuantityConverter'
LOAD_CONST 'UnitConverter'
LOAD_CONST 'MagUnitConverter'
BUILD_LIST
STORE_NAME __all__
LOAD_CONST 1
LOAD_CONST ('EquivalencyConverter',)
IMPORT_NAME equivalency
IMPORT_FROM EquivalencyConverter
STORE_NAME EquivalencyConverter
POP_TOP
LOAD_CONST 1
LOA... | __all__ = [
"EquivalencyConverter",
"QuantityConverter",
"UnitConverter",
"MagUnitConverter",
]
from .equivalency import EquivalencyConverter
from .magunit import MagUnitConverter
from .quantity import QuantityConverter
from .unit import UnitConverter
| data/asdf-astropy-0.5.0/asdf_astropy/converters/unit/__init__.py | 157 | 74 | 332,767 |
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME JavaScriptCore
STORE_NAME JavaScriptCore
LOAD_CONST 0
LOAD_CONST ('TestCase', 'min_os_level')
IMPORT_NAME PyObjCTools.TestSupport
IMPORT_FROM TestCase
STORE_NAME TestCase
IMPORT_FROM min_os_level
STORE_NAME min_os_level
POP_TOP
LOAD_BUILD_CLASS
LOAD_CONST <code object TestJSVi... | import JavaScriptCore
from PyObjCTools.TestSupport import TestCase, min_os_level
class TestJSVirtualMachine(TestCase):
@min_os_level("10.9")
def test_classes(self):
self.assertHasAttr(JavaScriptCore, "JSVirtualMachine")
| data/pyobjc-framework-WebKit-10.1/PyObjCTest/test_jsvirtualmachine.py | 270 | 74 | 418,814 |
LOAD_CONST <code object my_cleaner at 0x7fab540c5540, file "f.py", line 1>
LOAD_CONST 'my_cleaner'
MAKE_FUNCTION
STORE_NAME my_cleaner
LOAD_CONST <code object task_sample at 0x7fab540c58a0, file "f.py", line 8>
LOAD_CONST 'task_sample'
MAKE_FUNCTION
STORE_NAME task_sample
LOAD_CONST None
RETURN_VALUE
LOAD_FAST dryrun... | def my_cleaner(dryrun):
if dryrun:
print("dryrun, dont really execute")
return
print("execute cleaner...")
def task_sample():
return {
"actions": None,
"clean": [my_cleaner],
}
| data/doit-0.36.0/doc/samples/custom_clean.py | 182 | 74 | 109,284 |
LOAD_CONST 0
LOAD_CONST ('Enum',)
IMPORT_NAME enum
IMPORT_FROM Enum
STORE_NAME Enum
POP_TOP
LOAD_BUILD_CLASS
LOAD_CONST <code object BrowserSiteStatus at 0x7fab4298e270, file "f.py", line 4>
LOAD_CONST 'BrowserSiteStatus'
MAKE_FUNCTION
LOAD_CONST 'BrowserSiteStatus'
LOAD_NAME str
LOAD_NAME Enum
CALL_FUNCTION
STORE_NAM... | from enum import Enum
class BrowserSiteStatus(str, Enum):
Published = ("published",)
PendingAdd = ("pendingAdd",)
PendingEdit = ("pendingEdit",)
PendingDelete = ("pendingDelete",)
UnknownFutureValue = ("unknownFutureValue",)
| data/msgraph-sdk-1.1.0/msgraph/generated/models/browser_site_status.py | 189 | 74 | 259,773 |
LOAD_CONST 0
LOAD_CONST ('unicode_literals', 'print_function', 'division')
IMPORT_NAME __future__
IMPORT_FROM unicode_literals
STORE_NAME unicode_literals
IMPORT_FROM print_function
STORE_NAME print_function
IMPORT_FROM division
STORE_NAME division
POP_TOP
LOAD_CONST 'mozman <mozman@gmx.at>'
STORE_NAME __author__
LOA... | from __future__ import unicode_literals, print_function, division
__author__ = "mozman <mozman@gmx.at>"
from .drawingpage import DrawingPage
class PresentationPage(DrawingPage):
def _setup_new_page(self):
pass
| data/ezodf-0.3.2/ezodf/presentationpage.py | 273 | 74 | 17,138 |
LOAD_CONST 0
LOAD_CONST ('admin',)
IMPORT_NAME django.contrib
IMPORT_FROM admin
STORE_NAME admin
POP_TOP
LOAD_CONST 1
LOAD_CONST ('ProxmoxVM',)
IMPORT_NAME models
IMPORT_FROM ProxmoxVM
STORE_NAME ProxmoxVM
POP_TOP
LOAD_NAME admin
LOAD_METHOD register
LOAD_NAME ProxmoxVM
CALL_METHOD
LOAD_BUILD_CLASS
LOAD_CONST <code o... | from django.contrib import admin
from .models import ProxmoxVM
@admin.register(ProxmoxVM)
class ProxmoxVMAdmin(admin.ModelAdmin):
list_display = ("cluster", "node", "virtual_machine", "proxmox_vm_id")
| data/netbox_proxbox-0.0.5/netbox_proxbox/admin.py | 221 | 74 | 289,175 |
LOAD_CONST 0
LOAD_CONST ('*',)
IMPORT_NAME azure.cli.core.aaz
IMPORT_STAR
LOAD_NAME register_command_group
LOAD_CONST 'network public-ip prefix'
CALL_FUNCTION
LOAD_BUILD_CLASS
LOAD_CONST <code object __CMDGroup at 0x7fab703a5030, file "f.py", line 4>
LOAD_CONST '__CMDGroup'
MAKE_FUNCTION
LOAD_CONST '__CMDGroup'
LOAD... | from azure.cli.core.aaz import *
@register_command_group(
"network public-ip prefix",
)
class __CMDGroup(AAZCommandGroup):
"""Manage public IP prefix resources."""
pass
__all__ = ["__CMDGroup"]
| data/azure-cli-2.57.0/azure/cli/command_modules/network/aaz/profile_2020_09_01_hybrid/network/public_ip/prefix/__cmd_group.py | 184 | 74 | 378,674 |
LOAD_CONST 'FailedOperation'
STORE_NAME FAILEDOPERATION
LOAD_CONST 'FailedOperation.WorkspaceNameDuplicate'
STORE_NAME FAILEDOPERATION_WORKSPACENAMEDUPLICATE
LOAD_CONST 'InvalidParameterValue'
STORE_NAME INVALIDPARAMETERVALUE
LOAD_CONST 'RequestLimitExceeded'
STORE_NAME REQUESTLIMITEXCEEDED
LOAD_CONST None
RETURN_VA... | FAILEDOPERATION = "FailedOperation"
FAILEDOPERATION_WORKSPACENAMEDUPLICATE = "FailedOperation.WorkspaceNameDuplicate"
INVALIDPARAMETERVALUE = "InvalidParameterValue"
REQUESTLIMITEXCEEDED = "RequestLimitExceeded"
| data/tencentcloud-sdk-python-3.0.1092/tencentcloud/cloudstudio/v20230508/errorcodes.py | 87 | 74 | 119,133 |
LOAD_CONST 0
LOAD_CONST ('absolute_import', 'print_function', 'division')
IMPORT_NAME __future__
IMPORT_FROM absolute_import
STORE_NAME absolute_import
IMPORT_FROM print_function
STORE_NAME print_function
IMPORT_FROM division
STORE_NAME division
POP_TOP
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME sys
STORE_NAME sys
LOAD... | from __future__ import absolute_import, print_function, division
import sys
print(
"DEPRECATION: theano.sandbox.conv no longer provides conv. "
"They have been moved to theano.tensor.nnet.conv",
file=sys.stderr,
)
| data/Theano-1.0.5/theano/sandbox/conv.py | 131 | 74 | 417,247 |
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME pytest
STORE_NAME pytest
LOAD_CONST <code object test_qtquickcontrols2 at 0x7faab83810c0, file "f.py", line 4>
LOAD_CONST 'test_qtquickcontrols2'
MAKE_FUNCTION
STORE_NAME test_qtquickcontrols2
LOAD_CONST None
RETURN_VALUE
LOAD_GLOBAL pytest
LOAD_METHOD importorskip
LOAD_CONST ... | import pytest
def test_qtquickcontrols2():
"""Test the qtpy.QtQuickControls2 namespace"""
QtQuickControls2 = pytest.importorskip("qtpy.QtQuickControls2")
assert QtQuickControls2.QQuickStyle is not None
| data/QtPy-2.4.1/qtpy/tests/test_qtquickcontrols2.py | 146 | 74 | 356,921 |
SETUP_ANNOTATIONS
LOAD_CONST 'Constants for the JustNimbus integration.'
STORE_NAME __doc__
LOAD_CONST 0
LOAD_CONST ('Final',)
IMPORT_NAME typing
IMPORT_FROM Final
STORE_NAME Final
POP_TOP
LOAD_CONST 0
LOAD_CONST ('Platform',)
IMPORT_NAME homeassistant.const
IMPORT_FROM Platform
STORE_NAME Platform
POP_TOP
LOAD_CONS... | """Constants for the JustNimbus integration."""
from typing import Final
from homeassistant.const import Platform
DOMAIN = "justnimbus"
PLATFORMS = [
Platform.SENSOR,
]
CONF_ZIP_CODE: Final = "zip_code"
| data/homeassistant-2024.2.2/homeassistant/components/justnimbus/const.py | 141 | 74 | 296,149 |
LOAD_CONST 0
LOAD_CONST ('gcp_audit_info',)
IMPORT_NAME prowler.providers.gcp.lib.audit_info.audit_info
IMPORT_FROM gcp_audit_info
STORE_NAME gcp_audit_info
POP_TOP
LOAD_CONST 0
LOAD_CONST ('CloudSQL',)
IMPORT_NAME prowler.providers.gcp.services.cloudsql.cloudsql_service
IMPORT_FROM CloudSQL
STORE_NAME CloudSQL
POP_TO... | from prowler.providers.gcp.lib.audit_info.audit_info import gcp_audit_info
from prowler.providers.gcp.services.cloudsql.cloudsql_service import CloudSQL
cloudsql_client = CloudSQL(gcp_audit_info)
| data/prowler-3.14.0/prowler/providers/gcp/services/cloudsql/cloudsql_client.py | 129 | 74 | 182,956 |
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME pbr.version
STORE_NAME pbr
LOAD_CONST 0
LOAD_CONST ('client',)
IMPORT_NAME ironicclient
IMPORT_FROM client
STORE_NAME client
POP_TOP
LOAD_CONST 0
LOAD_CONST ('exc',)
IMPORT_NAME ironicclient
IMPORT_FROM exc
STORE_NAME exceptions
POP_TOP
LOAD_NAME pbr
LOAD_ATTR version
LOAD_ME... | import pbr.version
from ironicclient import client
from ironicclient import exc as exceptions
__version__ = pbr.version.VersionInfo("python-ironicclient").version_string()
__all__ = (
"client",
"exc",
"exceptions",
)
| data/python-ironicclient-5.4.0/ironicclient/__init__.py | 123 | 74 | 104,921 |
LOAD_CONST 0
LOAD_CONST ('absolute_import',)
IMPORT_NAME __future__
IMPORT_FROM absolute_import
STORE_NAME absolute_import
POP_TOP
LOAD_CONST 1
LOAD_CONST ('UsageapiClient',)
IMPORT_NAME usageapi_client
IMPORT_FROM UsageapiClient
STORE_NAME UsageapiClient
POP_TOP
LOAD_CONST 1
LOAD_CONST ('UsageapiClientCompositeOpera... | from __future__ import absolute_import
from .usageapi_client import UsageapiClient
from .usageapi_client_composite_operations import UsageapiClientCompositeOperations
from . import models
__all__ = ["UsageapiClient", "UsageapiClientCompositeOperations", "models"]
| data/oci-2.122.0/src/oci/usage_api/__init__.py | 171 | 74 | 178,142 |
LOAD_CONST 'Generated API for package: tensorflow_examples.lite.model_maker.third_party.efficientdet.object_detection.tf_example_decoder.'
STORE_NAME __doc__
LOAD_CONST 0
LOAD_CONST ('*',)
IMPORT_NAME tensorflow_examples.lite.model_maker.third_party.efficientdet.object_detection.tf_example_decoder
IMPORT_STAR
LOAD_CON... | """Generated API for package: tensorflow_examples.lite.model_maker.third_party.efficientdet.object_detection.tf_example_decoder."""
from tensorflow_examples.lite.model_maker.third_party.efficientdet.object_detection.tf_example_decoder import *
| data/tflite-model-maker-nightly-0.4.4.dev202402210609/src/tflite_model_maker/python/third_party/efficientdet/object_detection/tf_example_decoder.py | 94 | 74 | 389,328 |
LOAD_CONST 0
LOAD_CONST ('ClientValue',)
IMPORT_NAME office365.runtime.client_value
IMPORT_FROM ClientValue
STORE_NAME ClientValue
POP_TOP
LOAD_BUILD_CLASS
LOAD_CONST <code object CollaborationInsightsOverview at 0x7fab7002b540, file "f.py", line 4>
LOAD_CONST 'CollaborationInsightsOverview'
MAKE_FUNCTION
LOAD_CONST '... | from office365.runtime.client_value import ClientValue
class CollaborationInsightsOverview(ClientValue):
""""""
@property
def entity_type_name(self):
return "Microsoft.SharePoint.Administration.TenantAdmin.CollaborationInsightsOverview"
| data/Office365-REST-Python-Client-2.5.5/office365/sharepoint/tenant/administration/collaboration/insights_overview.py | 247 | 74 | 189,357 |
LOAD_CONST 0
LOAD_CONST ('ApiForget',)
IMPORT_NAME onelogin.paths.api_2_roles.get
IMPORT_FROM ApiForget
STORE_NAME ApiForget
POP_TOP
LOAD_CONST 0
LOAD_CONST ('ApiForpost',)
IMPORT_NAME onelogin.paths.api_2_roles.post
IMPORT_FROM ApiForpost
STORE_NAME ApiForpost
POP_TOP
LOAD_BUILD_CLASS
LOAD_CONST <code object Api2Rol... | from onelogin.paths.api_2_roles.get import ApiForget
from onelogin.paths.api_2_roles.post import ApiForpost
class Api2Roles(
ApiForget,
ApiForpost,
):
pass
| data/onelogin-3.1.6/onelogin/apis/paths/api_2_roles.py | 203 | 74 | 397,242 |
LOAD_CONST 0
LOAD_CONST ('ApiForget',)
IMPORT_NAME onelogin.paths.api_2_mappings.get
IMPORT_FROM ApiForget
STORE_NAME ApiForget
POP_TOP
LOAD_CONST 0
LOAD_CONST ('ApiForpost',)
IMPORT_NAME onelogin.paths.api_2_mappings.post
IMPORT_FROM ApiForpost
STORE_NAME ApiForpost
POP_TOP
LOAD_BUILD_CLASS
LOAD_CONST <code object A... | from onelogin.paths.api_2_mappings.get import ApiForget
from onelogin.paths.api_2_mappings.post import ApiForpost
class Api2Mappings(
ApiForget,
ApiForpost,
):
pass
| data/onelogin-3.1.6/onelogin/apis/paths/api_2_mappings.py | 203 | 74 | 397,313 |
LOAD_CONST 0
LOAD_CONST ('annotations',)
IMPORT_NAME __future__
IMPORT_FROM annotations
STORE_NAME annotations
POP_TOP
LOAD_CONST 1
LOAD_CONST ('get_wheel', 'pip_wheel_env_run')
IMPORT_NAME acquire
IMPORT_FROM get_wheel
STORE_NAME get_wheel
IMPORT_FROM pip_wheel_env_run
STORE_NAME pip_wheel_env_run
POP_TOP
LOAD_CONST... | from __future__ import annotations
from .acquire import get_wheel, pip_wheel_env_run
from .util import Version, Wheel
__all__ = [
"get_wheel",
"pip_wheel_env_run",
"Version",
"Wheel",
]
| data/virtualenv-20.25.0/src/virtualenv/seed/wheels/__init__.py | 158 | 74 | 145,357 |
LOAD_CONST 0
LOAD_CONST ('format_tool_to_openai_function', 'format_tool_to_openai_tool')
IMPORT_NAME langchain_core.utils.function_calling
IMPORT_FROM format_tool_to_openai_function
STORE_NAME format_tool_to_openai_function
IMPORT_FROM format_tool_to_openai_tool
STORE_NAME format_tool_to_openai_tool
POP_TOP
LOAD_CONST... | from langchain_core.utils.function_calling import (
format_tool_to_openai_function,
format_tool_to_openai_tool,
)
__all__ = ["format_tool_to_openai_function", "format_tool_to_openai_tool"]
| data/langchain_community-0.0.21/langchain_community/tools/convert_to_openai.py | 134 | 74 | 15,378 |
LOAD_CONST 0
LOAD_CONST ('format_tool_to_openai_function', 'format_tool_to_openai_tool')
IMPORT_NAME langchain_core.utils.function_calling
IMPORT_FROM format_tool_to_openai_function
STORE_NAME format_tool_to_openai_function
IMPORT_FROM format_tool_to_openai_tool
STORE_NAME format_tool_to_openai_tool
POP_TOP
LOAD_CONST... | from langchain_core.utils.function_calling import (
format_tool_to_openai_function,
format_tool_to_openai_tool,
)
__all__ = ["format_tool_to_openai_function", "format_tool_to_openai_tool"]
| data/langchain_community-0.0.21/langchain_community/tools/render.py | 134 | 74 | 15,377 |
LOAD_CONST '\nK8S provides a set of services for Kubernetes.\n'
STORE_NAME __doc__
LOAD_CONST 0
LOAD_CONST ('Node',)
IMPORT_NAME diagrams
IMPORT_FROM Node
STORE_NAME Node
POP_TOP
LOAD_BUILD_CLASS
LOAD_CONST <code object _K8S at 0x7fab000a6f60, file "f.py", line 8>
LOAD_CONST '_K8S'
MAKE_FUNCTION
LOAD_CONST '_K8S'
LOA... | """
K8S provides a set of services for Kubernetes.
"""
from diagrams import Node
class _K8S(Node):
_provider = "k8s"
_icon_dir = "resources/k8s"
fontcolor = "#2d3436"
| data/diagrams-0.23.4/diagrams/k8s/__init__.py | 188 | 74 | 206,067 |
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME pytest
STORE_NAME pytest
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME kernels
STORE_NAME kernels
LOAD_NAME pytest
LOAD_ATTR mark
LOAD_ATTR skip
LOAD_CONST 'Unable to generate any tests for kernel'
LOAD_CONST ('reason',)
CALL_FUNCTION
LOAD_CONST <code object test_pyawkward_reduce_p... | import pytest
import kernels
@pytest.mark.skip(reason="Unable to generate any tests for kernel")
def test_pyawkward_reduce_prod_uint64_uint8_64_1():
raise NotImplementedError("Unable to generate any tests for kernel")
| data/awkward-cpp-29/tests-spec/test_pyawkward_reduce_prod_uint64_uint8_64.py | 200 | 74 | 220,486 |
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME pytest
STORE_NAME pytest
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME kernels
STORE_NAME kernels
LOAD_NAME pytest
LOAD_ATTR mark
LOAD_ATTR skip
LOAD_CONST 'Unable to generate any tests for kernel'
LOAD_CONST ('reason',)
CALL_FUNCTION
LOAD_CONST <code object test_pyawkward_reduce_s... | import pytest
import kernels
@pytest.mark.skip(reason="Unable to generate any tests for kernel")
def test_pyawkward_reduce_sum_uint32_uint8_64_1():
raise NotImplementedError("Unable to generate any tests for kernel")
| data/awkward-cpp-29/tests-spec/test_pyawkward_reduce_sum_uint32_uint8_64.py | 200 | 74 | 220,429 |
LOAD_CONST 'FormEncode validates and converts nested structures.\n\nIt allows for a declarative form of defining the validation,\nand decoupled processes for filling and generating forms.\n\nThe official repo is at GitHub: https://github.com/formencode/formencode\n'
STORE_NAME __doc__
LOAD_CONST 0
LOAD_CONST ('setup',... | """FormEncode validates and converts nested structures.
It allows for a declarative form of defining the validation,
and decoupled processes for filling and generating forms.
The official repo is at GitHub: https://github.com/formencode/formencode
"""
from setuptools import setup
setup()
| data/FormEncode-2.1.0/setup.py | 107 | 74 | 125,216 |
LOAD_CONST <code object test at 0x7fab700adf60, file "f.py", line 1>
LOAD_CONST 'test'
MAKE_FUNCTION
STORE_NAME test
LOAD_CONST None
RETURN_VALUE
LOAD_FAST hatch
LOAD_CONST 'config'
LOAD_CONST 'find'
CALL_FUNCTION
STORE_FAST result
LOAD_FAST result
LOAD_ATTR exit_code
LOAD_CONST 0
COMPARE_OP ==
POP_JUMP_IF_TRUE
LOAD_... | def test(hatch, config_file, helpers):
result = hatch("config", "find")
assert result.exit_code == 0, result.output
assert result.output == helpers.dedent(
f"""
{config_file.path}
"""
)
| data/hatch-1.9.3/tests/cli/config/test_find.py | 156 | 74 | 183,722 |
LOAD_CONST 0
LOAD_CONST ('ClientValue',)
IMPORT_NAME office365.runtime.client_value
IMPORT_FROM ClientValue
STORE_NAME ClientValue
POP_TOP
LOAD_BUILD_CLASS
LOAD_CONST <code object SyntexBillingContext at 0x7fab700ad780, file "f.py", line 4>
LOAD_CONST 'SyntexBillingContext'
MAKE_FUNCTION
LOAD_CONST 'SyntexBillingConte... | from office365.runtime.client_value import ClientValue
class SyntexBillingContext(ClientValue):
""""""
@property
def entity_type_name(self):
return "Microsoft.Online.SharePoint.TenantAdministration.SyntexBillingContext"
| data/Office365-REST-Python-Client-2.5.5/office365/sharepoint/tenant/administration/syntex/billing_context.py | 247 | 74 | 189,360 |
LOAD_CONST 0
LOAD_CONST ('absolute_import',)
IMPORT_NAME __future__
IMPORT_FROM absolute_import
STORE_NAME absolute_import
POP_TOP
LOAD_CONST 1
LOAD_CONST ('AuditClient',)
IMPORT_NAME audit_client
IMPORT_FROM AuditClient
STORE_NAME AuditClient
POP_TOP
LOAD_CONST 1
LOAD_CONST ('AuditClientCompositeOperations',)
IMPORT... | from __future__ import absolute_import
from .audit_client import AuditClient
from .audit_client_composite_operations import AuditClientCompositeOperations
from . import models
__all__ = ["AuditClient", "AuditClientCompositeOperations", "models"]
| data/oci-2.122.0/src/oci/audit/__init__.py | 169 | 74 | 407,366 |
LOAD_CONST 2
LOAD_CONST ('_utilities',)
IMPORT_NAME
IMPORT_FROM _utilities
STORE_NAME _utilities
POP_TOP
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME typing
STORE_NAME typing
LOAD_CONST 1
LOAD_CONST ('*',)
IMPORT_NAME data_catalog
IMPORT_STAR
LOAD_CONST 1
LOAD_CONST ('*',)
IMPORT_NAME database
IMPORT_STAR
LOAD_CONST 1
... | from .. import _utilities
import typing
from .data_catalog import *
from .database import *
from .get_named_query import *
from .named_query import *
from .prepared_statement import *
from .workgroup import *
from ._inputs import *
from . import outputs
| data/pulumi_aws-6.22.2/pulumi_aws/athena/__init__.py | 193 | 74 | 226,991 |
LOAD_CONST 0
LOAD_CONST ('CMakeToolchain',)
IMPORT_NAME conan.tools.cmake.toolchain.toolchain
IMPORT_FROM CMakeToolchain
STORE_NAME CMakeToolchain
POP_TOP
LOAD_CONST 0
LOAD_CONST ('CMake',)
IMPORT_NAME conan.tools.cmake.cmake
IMPORT_FROM CMake
STORE_NAME CMake
POP_TOP
LOAD_CONST 0
LOAD_CONST ('CMakeDeps',)
IMPORT_NAM... | from conan.tools.cmake.toolchain.toolchain import CMakeToolchain
from conan.tools.cmake.cmake import CMake
from conan.tools.cmake.cmakedeps.cmakedeps import CMakeDeps
from conan.tools.cmake.layout import cmake_layout
| data/conan-2.1.0/conan/tools/cmake/__init__.py | 165 | 74 | 242,204 |
LOAD_CONST ' Run this file using ``python recorder.py`` '
STORE_NAME __doc__
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME os
STORE_NAME os
LOAD_CONST <code object open_recorder_desktop_app at 0x7fab427a64b0, file "f.py", line 6>
LOAD_CONST 'open_recorder_desktop_app'
MAKE_FUNCTION
STORE_NAME open_recorder_desktop_app
LO... | """ Run this file using ``python recorder.py`` """
import os
def open_recorder_desktop_app():
command = "sbase recorder"
os.system(command)
if __name__ == "__main__":
open_recorder_desktop_app()
| data/seleniumbase-4.23.7/examples/desktop_apps/recorder.py | 167 | 74 | 348,990 |
LOAD_CONST 1
LOAD_CONST ('*',)
IMPORT_NAME __cmd_group
IMPORT_STAR
LOAD_CONST 1
LOAD_CONST ('*',)
IMPORT_NAME _create
IMPORT_STAR
LOAD_CONST 1
LOAD_CONST ('*',)
IMPORT_NAME _delete
IMPORT_STAR
LOAD_CONST 1
LOAD_CONST ('*',)
IMPORT_NAME _list
IMPORT_STAR
LOAD_CONST 1
LOAD_CONST ('*',)
IMPORT_NAME _list_request_heade... | from .__cmd_group import *
from ._create import *
from ._delete import *
from ._list import *
from ._list_request_headers import *
from ._list_response_headers import *
from ._show import *
from ._update import *
from ._wait import *
| data/azure-cli-2.57.0/azure/cli/command_modules/network/aaz/latest/network/application_gateway/rewrite_rule/__init__.py | 167 | 74 | 378,457 |
LOAD_CONST 0
LOAD_CONST ('*',)
IMPORT_NAME azure.cli.core.aaz
IMPORT_STAR
LOAD_NAME register_command_group
LOAD_CONST 'monitor diagnostic-settings categories'
CALL_FUNCTION
LOAD_BUILD_CLASS
LOAD_CONST <code object __CMDGroup at 0x7fab415056f0, file "f.py", line 4>
LOAD_CONST '__CMDGroup'
MAKE_FUNCTION
LOAD_CONST '__C... | from azure.cli.core.aaz import *
@register_command_group(
"monitor diagnostic-settings categories",
)
class __CMDGroup(AAZCommandGroup):
"""Retrieve service diagnostic settings categories."""
pass
__all__ = ["__CMDGroup"]
| data/azure-cli-2.57.0/azure/cli/command_modules/monitor/aaz/latest/monitor/diagnostic_settings/categories/__cmd_group.py | 184 | 74 | 375,031 |
LOAD_CONST 0
LOAD_CONST ('absolute_import',)
IMPORT_NAME __future__
IMPORT_FROM absolute_import
STORE_NAME absolute_import
POP_TOP
LOAD_CONST 1
LOAD_CONST ('IncidentClient',)
IMPORT_NAME incident_client
IMPORT_FROM IncidentClient
STORE_NAME IncidentClient
POP_TOP
LOAD_CONST 1
LOAD_CONST ('IncidentClientCompositeOpera... | from __future__ import absolute_import
from .incident_client import IncidentClient
from .incident_client_composite_operations import IncidentClientCompositeOperations
from . import models
__all__ = ["IncidentClient", "IncidentClientCompositeOperations", "models"]
| data/oci-2.122.0/src/oci/cims/__init__.py | 169 | 74 | 180,791 |
LOAD_CONST 0
LOAD_CONST ('ApiForpost',)
IMPORT_NAME onelogin.paths.api_1_users_user_id_otp_devices_device_id_trigger.post
IMPORT_FROM ApiForpost
STORE_NAME ApiForpost
POP_TOP
LOAD_BUILD_CLASS
LOAD_CONST <code object Api1UsersUserIdOtpDevicesDeviceIdTrigger at 0x7f8e2ff5eb70, file "f.py", line 6>
LOAD_CONST 'Api1UsersU... | from onelogin.paths.api_1_users_user_id_otp_devices_device_id_trigger.post import (
ApiForpost,
)
class Api1UsersUserIdOtpDevicesDeviceIdTrigger(
ApiForpost,
):
pass
| data/onelogin-3.1.6/onelogin/apis/paths/api_1_users_user_id_otp_devices_device_id_trigger.py | 210 | 74 | 397,256 |
LOAD_CONST 0
LOAD_CONST ('*',)
IMPORT_NAME azure.cli.core.aaz
IMPORT_STAR
LOAD_NAME register_command_group
LOAD_CONST 'network public-ip prefix'
CALL_FUNCTION
LOAD_BUILD_CLASS
LOAD_CONST <code object __CMDGroup at 0x7fab82197930, file "f.py", line 4>
LOAD_CONST '__CMDGroup'
MAKE_FUNCTION
LOAD_CONST '__CMDGroup'
LOAD... | from azure.cli.core.aaz import *
@register_command_group(
"network public-ip prefix",
)
class __CMDGroup(AAZCommandGroup):
"""Manage public IP prefix resources."""
pass
__all__ = ["__CMDGroup"]
| data/azure-cli-2.57.0/azure/cli/command_modules/network/aaz/latest/network/public_ip/prefix/__cmd_group.py | 184 | 74 | 378,049 |
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME importlib
STORE_NAME importlib
LOAD_CONST <code object import_aaz_by_profile at 0x7faa75aac8a0, file "f.py", line 4>
LOAD_CONST 'import_aaz_by_profile'
MAKE_FUNCTION
STORE_NAME import_aaz_by_profile
LOAD_CONST None
RETURN_VALUE
LOAD_GLOBAL importlib
LOAD_METHOD import_module
... | import importlib
def import_aaz_by_profile(module_name):
return importlib.import_module(
f"azure.cli.command_modules.network.aaz.profile_2018_03_01_hybrid.{module_name}"
)
| data/azure-cli-2.57.0/azure/cli/command_modules/network/azure_stack/profile_2018_03_01_hybrid/operations/_util.py | 140 | 74 | 377,483 |
LOAD_CONST '\nFlytekit Pickle Type\n==========================================================\n.. currentmodule:: flytekit.types.pickle\n\n.. autosummary::\n :toctree: generated/\n\n FlytePickle\n'
STORE_NAME __doc__
LOAD_CONST 1
LOAD_CONST ('BatchSize', 'FlytePickle')
IMPORT_NAME pickle
IMPORT_FROM BatchSize
STORE_N... | """
Flytekit Pickle Type
==========================================================
.. currentmodule:: flytekit.types.pickle
.. autosummary::
:toctree: generated/
FlytePickle
"""
from .pickle import BatchSize, FlytePickle
| data/flytekit-1.10.7/flytekit/types/pickle/__init__.py | 121 | 74 | 52,470 |
LOAD_CONST 0
LOAD_CONST ('absolute_import', 'division', 'print_function')
IMPORT_NAME __future__
IMPORT_FROM absolute_import
STORE_NAME absolute_import
IMPORT_FROM division
STORE_NAME division
IMPORT_FROM print_function
STORE_NAME print_function
POP_TOP
LOAD_NAME type
STORE_NAME __metaclass__
LOAD_CONST 0
LOAD_CONST ... | from __future__ import absolute_import, division, print_function
__metaclass__ = type
from ansible.plugins.lookup import LookupBase
class LookupModule(LookupBase):
def run(self, terms, variables, **kwargs):
return [__name__]
| data/ansible-core-2.16.3/test/integration/targets/collections_plugin_namespace/collection_root/ansible_collections/my_ns/my_col/plugins/lookup/lookup_name.py | 252 | 74 | 437,485 |
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME importlib
STORE_NAME importlib
LOAD_CONST <code object import_aaz_by_profile at 0x7fab41637d20, file "f.py", line 4>
LOAD_CONST 'import_aaz_by_profile'
MAKE_FUNCTION
STORE_NAME import_aaz_by_profile
LOAD_CONST None
RETURN_VALUE
LOAD_GLOBAL importlib
LOAD_METHOD import_module
... | import importlib
def import_aaz_by_profile(module_name):
return importlib.import_module(
f"azure.cli.command_modules.network.aaz.profile_2020_09_01_hybrid.{module_name}"
)
| data/azure-cli-2.57.0/azure/cli/command_modules/network/azure_stack/profile_2020_09_01_hybrid/operations/_util.py | 141 | 74 | 377,467 |
LOAD_CONST 0
LOAD_CONST None
IMPORT_NAME importlib
STORE_NAME importlib
LOAD_CONST <code object import_aaz_by_profile at 0x7fab822ea420, file "f.py", line 4>
LOAD_CONST 'import_aaz_by_profile'
MAKE_FUNCTION
STORE_NAME import_aaz_by_profile
LOAD_CONST None
RETURN_VALUE
LOAD_GLOBAL importlib
LOAD_METHOD import_module
... | import importlib
def import_aaz_by_profile(module_name):
return importlib.import_module(
f"azure.cli.command_modules.network.aaz.profile_2018_03_01_hybrid.{module_name}"
)
| data/azure-cli-2.57.0/azure/cli/command_modules/network/azure_stack/profile_2019_03_01_hybrid/operations/_util.py | 140 | 74 | 377,452 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.