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 ('collect_data_files',) IMPORT_NAME PyInstaller.utils.hooks IMPORT_FROM collect_data_files STORE_NAME collect_data_files POP_TOP LOAD_NAME collect_data_files LOAD_CONST 'mecab' CALL_FUNCTION STORE_NAME datas LOAD_NAME datas LOAD_NAME collect_data_files LOAD_CONST 'mecab_ko_dic' CALL_FUNCTION I...
from PyInstaller.utils.hooks import collect_data_files datas = collect_data_files("mecab") datas += collect_data_files("mecab_ko_dic")
data/pyinstaller-hooks-contrib-2024.1/src/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-mecab.py
94
50
282,367
LOAD_BUILD_CLASS LOAD_CONST <code object User at 0x7fae471296f0, file "f.py", line 1> LOAD_CONST 'User' MAKE_FUNCTION LOAD_CONST 'User' LOAD_NAME dict CALL_FUNCTION STORE_NAME User LOAD_CONST None RETURN_VALUE LOAD_NAME __name__ STORE_NAME __module__ LOAD_CONST 'User' STORE_NAME __qualname__ LOAD_NAME str LOAD_CONST ...
class User(dict): def __init__(self, kwargs, id: str) -> None: super().__init__(kwargs) self.id = id self.groups = []
data/flet_runtime-0.20.2/src/flet_runtime/auth/user.py
213
50
104,219
LOAD_CONST '9999.9.9' STORE_NAME VERSION LOAD_CONST 'The ``fake-factory`` package is now called ``Faker``.\n\nPlease update your requirements.\n' STORE_NAME error LOAD_NAME ImportError LOAD_NAME error CALL_FUNCTION RAISE_VARARGS LOAD_CONST None RETURN_VALUE
VERSION = "9999.9.9" error = """The ``fake-factory`` package is now called ``Faker``. Please update your requirements. """ raise ImportError(error)
data/fake-factory-9999.9.9/faker/__init__.py
66
50
196,826
LOAD_CONST 0 LOAD_CONST ('PyEVMError',) IMPORT_NAME eth.exceptions IMPORT_FROM PyEVMError STORE_NAME PyEVMError POP_TOP LOAD_BUILD_CLASS LOAD_CONST <code object SnapshotNotFound at 0x7fab540c5930, file "f.py", line 6> LOAD_CONST 'SnapshotNotFound' MAKE_FUNCTION LOAD_CONST 'SnapshotNotFound' LOAD_NAME PyEVMError CALL_F...
from eth.exceptions import ( PyEVMError, ) class SnapshotNotFound(PyEVMError): """ Raised when a requested snapshot could not be found. """
data/py-evm-0.9.0b1/eth/consensus/clique/exceptions.py
153
50
106,854
LOAD_CONST 'BERT fineuning data preprocessing utils' STORE_NAME __doc__ LOAD_CONST 1 LOAD_CONST ('glue', 'squad') IMPORT_NAME IMPORT_FROM glue STORE_NAME glue IMPORT_FROM squad STORE_NAME squad POP_TOP LOAD_CONST 1 LOAD_CONST ('*',) IMPORT_NAME glue IMPORT_STAR LOAD_CONST 1 LOAD_CONST ('*',) IMPORT_NAME squad IMPORT...
"""BERT fineuning data preprocessing utils""" from . import glue, squad from .glue import * from .squad import * __all__ = glue.__all__ + squad.__all__
data/gluonnlp-0.10.0/src/gluonnlp/data/bert/__init__.py
110
50
370,845
LOAD_CONST 1 LOAD_CONST ('ClassTfidfTransformer',) IMPORT_NAME _ctfidf IMPORT_FROM ClassTfidfTransformer STORE_NAME ClassTfidfTransformer POP_TOP LOAD_CONST 1 LOAD_CONST ('OnlineCountVectorizer',) IMPORT_NAME _online_cv IMPORT_FROM OnlineCountVectorizer STORE_NAME OnlineCountVectorizer POP_TOP LOAD_CONST 'ClassTfidfT...
from ._ctfidf import ClassTfidfTransformer from ._online_cv import OnlineCountVectorizer __all__ = ["ClassTfidfTransformer", "OnlineCountVectorizer"]
data/bertopic-0.16.0/bertopic/vectorizers/__init__.py
109
50
145,228
LOAD_CONST 1 LOAD_CONST ('HomeConnect',) IMPORT_NAME homeconnect IMPORT_FROM HomeConnect STORE_NAME HomeConnect POP_TOP LOAD_CONST 1 LOAD_CONST ('Appliance',) IMPORT_NAME appliance IMPORT_FROM Appliance STORE_NAME Appliance POP_TOP LOAD_CONST 1 LOAD_CONST ('AuthManager', 'AbstractAuth') IMPORT_NAME auth IMPORT_FROM A...
from .homeconnect import HomeConnect from .appliance import Appliance from .auth import AuthManager, AbstractAuth from .common import HealthStatus, HomeConnectError, ConditionalLogger from .const import Events
data/home-connect-async-0.8.0/home_connect_async/__init__.py
171
50
84,257
LOAD_CONST 1 LOAD_CONST ('*',) IMPORT_NAME connected IMPORT_STAR LOAD_CONST 1 LOAD_CONST ('*',) IMPORT_NAME strongly_connected IMPORT_STAR LOAD_CONST 1 LOAD_CONST ('*',) IMPORT_NAME weakly_connected IMPORT_STAR LOAD_CONST 1 LOAD_CONST ('*',) IMPORT_NAME attracting IMPORT_STAR LOAD_CONST 1 LOAD_CONST ('*',) IMPORT_N...
from .connected import * from .strongly_connected import * from .weakly_connected import * from .attracting import * from .biconnected import * from .semiconnected import *
data/networkx-3.2.1/networkx/algorithms/components/__init__.py
111
50
130,804
LOAD_CONST 0 LOAD_CONST ('*',) IMPORT_NAME sgtpyutils.ascii IMPORT_STAR LOAD_CONST <code object test_case at 0x7faac02be9c0, file "f.py", line 4> LOAD_CONST 'test_case' MAKE_FUNCTION STORE_NAME test_case LOAD_CONST None RETURN_VALUE LOAD_GLOBAL is_alpha LOAD_CONST 'a' CALL_FUNCTION POP_JUMP_IF_TRUE LOAD_GLOBAL Assert...
from sgtpyutils.ascii import * def test_case(): assert is_alpha("a") assert is_lower("a") assert not is_digit("a")
data/sgtpyutils-1.19.18/tests/test_ascii.py
146
50
87,208
LOAD_CONST 0 LOAD_CONST ('Enum',) IMPORT_NAME enum IMPORT_FROM Enum STORE_NAME Enum POP_TOP LOAD_CONST 'http://www.w3.org/XML/1998/namespace' STORE_NAME __NAMESPACE__ LOAD_BUILD_CLASS LOAD_CONST <code object Langvalue at 0x7faa75f5dd20, file "f.py", line 6> LOAD_CONST 'Langvalue' MAKE_FUNCTION LOAD_CONST 'Langvalue' ...
from enum import Enum __NAMESPACE__ = "http://www.w3.org/XML/1998/namespace" class Langvalue(Enum): VALUE = ""
data/pyHanko-0.21.0/pyhanko/generated/xml.py
156
50
152,423
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 certificate IMPORT_STAR LOAD_CONST 1 LOAD_CONST ('*',) IMPORT_NAME certificate_validation IMPORT_STAR ...
from .. import _utilities import typing from .certificate import * from .certificate_validation import * from .get_certificate import * from ._inputs import * from . import outputs
data/pulumi_aws-6.22.2/pulumi_aws/acm/__init__.py
138
50
228,168
LOAD_CONST 0 LOAD_CONST ('PathValues',) IMPORT_NAME onelogin.paths IMPORT_FROM PathValues STORE_NAME PathValues POP_TOP LOAD_NAME PathValues LOAD_ATTR API_2_APPS_APP_ID_RULES_CONDITIONS_RULE_CONDITION_VALUE_VALUES STORE_NAME path LOAD_CONST None RETURN_VALUE
from onelogin.paths import PathValues path = PathValues.API_2_APPS_APP_ID_RULES_CONDITIONS_RULE_CONDITION_VALUE_VALUES
data/onelogin-3.1.6/onelogin/paths/api_2_apps_app_id_rules_conditions_rule_condition_value_values/__init__.py
75
50
397,071
LOAD_CONST 0 LOAD_CONST ('JsonSerializable',) IMPORT_NAME jsons.classes.json_serializable IMPORT_FROM JsonSerializable STORE_NAME JsonSerializable POP_TOP LOAD_CONST 0 LOAD_CONST ('Verbosity',) IMPORT_NAME jsons.classes.verbosity IMPORT_FROM Verbosity STORE_NAME Verbosity POP_TOP LOAD_NAME JsonSerializable LOAD_ATTR ...
from jsons.classes.json_serializable import JsonSerializable from jsons.classes.verbosity import Verbosity __all__ = [JsonSerializable.__name__, Verbosity.__name__]
data/jsons-1.6.3/jsons/classes/__init__.py
101
50
76,676
LOAD_CONST 'DEPRECATED: Kept for backwards compatibility.' STORE_NAME __doc__ LOAD_CONST 0 LOAD_CONST ('StrictFormatter', 'formatter') IMPORT_NAME langchain_core.utils.formatting IMPORT_FROM StrictFormatter STORE_NAME StrictFormatter IMPORT_FROM formatter STORE_NAME formatter POP_TOP LOAD_CONST 'StrictFormatter' LOAD...
"""DEPRECATED: Kept for backwards compatibility.""" from langchain_core.utils.formatting import StrictFormatter, formatter __all__ = ["StrictFormatter", "formatter"]
data/langchain-0.1.8/langchain/formatting.py
96
50
368,277
LOAD_CONST 0 LOAD_CONST None IMPORT_NAME ast STORE_NAME ast LOAD_CONST 0 LOAD_CONST None IMPORT_NAME collections STORE_NAME collections LOAD_CONST 0 LOAD_CONST None IMPORT_NAME dataclasses STORE_NAME dataclasses LOAD_CONST 0 LOAD_CONST None IMPORT_NAME os STORE_NAME os LOAD_CONST 0 LOAD_CONST None IMPORT_NAME pathl...
import ast import collections # fmt: skip import dataclasses import os import pathlib import re # fmt: skip import secrets import sys import tempfile import zoneinfo
data/ruff-0.2.2/crates/ruff_python_formatter/resources/test/fixtures/black/cases/fmtpass_imports.py
156
50
342,118
LOAD_CONST 1 LOAD_CONST ('*',) IMPORT_NAME fixed_file_schema IMPORT_STAR LOAD_CONST 1 LOAD_CONST ('*',) IMPORT_NAME abi_base IMPORT_STAR LOAD_CONST 1 LOAD_CONST ('*',) IMPORT_NAME abi_fcn_wrapper IMPORT_STAR LOAD_CONST 1 LOAD_CONST ('*',) IMPORT_NAME abi_core_fcns IMPORT_STAR LOAD_CONST 1 LOAD_CONST ('*',) IMPORT_N...
from .fixed_file_schema import * from .abi_base import * from .abi_fcn_wrapper import * from .abi_core_fcns import * from .dml_schema import *
data/prophecy-libs-1.8.5/prophecy/utils/transpiler/__init__.py
106
50
389,940
LOAD_CONST 0 LOAD_CONST ('dataclass',) IMPORT_NAME dataclasses IMPORT_FROM dataclass STORE_NAME dataclass POP_TOP LOAD_CONST 0 LOAD_CONST ('FabricConfigs',) IMPORT_NAME dbt.adapters.fabric IMPORT_FROM FabricConfigs STORE_NAME FabricConfigs POP_TOP LOAD_NAME dataclass LOAD_BUILD_CLASS LOAD_CONST <code object SQLServer...
from dataclasses import dataclass from dbt.adapters.fabric import FabricConfigs @dataclass class SQLServerConfigs(FabricConfigs): ...
data/dbt-sqlserver-1.7.2/dbt/adapters/sqlserver/sql_server_configs.py
181
50
91,324
LOAD_CONST 'emperor_amqp' STORE_NAME NAME BUILD_LIST STORE_NAME CFLAGS BUILD_LIST STORE_NAME LDFLAGS BUILD_LIST STORE_NAME LIBS LOAD_CONST 'amqp' LOAD_CONST 'emperor_amqp' BUILD_LIST STORE_NAME GCC_LIST LOAD_CONST None RETURN_VALUE
NAME = "emperor_amqp" CFLAGS = [] LDFLAGS = [] LIBS = [] GCC_LIST = ["amqp", "emperor_amqp"]
data/uwsgi-2.0.24/plugins/emperor_amqp/uwsgiplugin.py
69
50
398,332
LOAD_CONST 0 LOAD_CONST ('Scale',) IMPORT_NAME leather.scales.base IMPORT_FROM Scale STORE_NAME Scale POP_TOP LOAD_CONST 0 LOAD_CONST ('Linear',) IMPORT_NAME leather.scales.linear IMPORT_FROM Linear STORE_NAME Linear POP_TOP LOAD_CONST 0 LOAD_CONST ('Ordinal',) IMPORT_NAME leather.scales.ordinal IMPORT_FROM Ordinal S...
from leather.scales.base import Scale from leather.scales.linear import Linear from leather.scales.ordinal import Ordinal from leather.scales.temporal import Temporal
data/leather-0.3.4/leather/scales/__init__.py
131
50
209,517
LOAD_CONST 'emperor_amqp' STORE_NAME NAME BUILD_LIST STORE_NAME CFLAGS BUILD_LIST STORE_NAME LDFLAGS BUILD_LIST STORE_NAME LIBS LOAD_CONST 'amqp' LOAD_CONST 'emperor_amqp' BUILD_LIST STORE_NAME GCC_LIST LOAD_CONST None RETURN_VALUE
NAME = "emperor_amqp" CFLAGS = [] LDFLAGS = [] LIBS = [] GCC_LIST = ["amqp", "emperor_amqp"]
data/pyuwsgi-2.0.23.post0/plugins/emperor_amqp/uwsgiplugin.py
69
50
294,055
LOAD_CONST 0 LOAD_CONST ('Chalice',) IMPORT_NAME chalice IMPORT_FROM Chalice STORE_NAME Chalice POP_TOP LOAD_NAME Chalice LOAD_CONST '{{app_name}}' LOAD_CONST ('app_name',) CALL_FUNCTION STORE_NAME app LOAD_NAME app LOAD_METHOD route LOAD_CONST '/' CALL_METHOD LOAD_CONST <code object index at 0x7fab42062300, file "f....
from chalice import Chalice app = Chalice(app_name="{{app_name}}") @app.route("/") def index(): return {"hello": "world"}
data/chalice-1.30.0/chalice/templates/0009-legacy/app.py
134
50
372,748
LOAD_CONST 'Mock poughkeepsie backend' STORE_NAME __doc__ LOAD_CONST 1 LOAD_CONST ('FakePoughkeepsieV2',) IMPORT_NAME fake_poughkeepsie IMPORT_FROM FakePoughkeepsieV2 STORE_NAME FakePoughkeepsieV2 POP_TOP LOAD_CONST 1 LOAD_CONST ('FakePoughkeepsie',) IMPORT_NAME fake_poughkeepsie IMPORT_FROM FakePoughkeepsie STORE_NA...
"""Mock poughkeepsie backend""" from .fake_poughkeepsie import FakePoughkeepsieV2 from .fake_poughkeepsie import FakePoughkeepsie
data/qiskit-ibm-runtime-0.20.0/qiskit_ibm_runtime/fake_provider/backends/poughkeepsie/__init__.py
119
50
363,214
LOAD_CONST 0 LOAD_CONST ('BaseCommand',) IMPORT_NAME django.core.management.base IMPORT_FROM BaseCommand STORE_NAME BaseCommand POP_TOP LOAD_BUILD_CLASS LOAD_CONST <code object Command at 0x7f8b2000ba50, file "f.py", line 4> LOAD_CONST 'Command' MAKE_FUNCTION LOAD_CONST 'Command' LOAD_NAME BaseCommand CALL_FUNCTION ST...
from django.core.management.base import BaseCommand class Command(BaseCommand): requires_system_checks = [] def handle(self, *args, **options): pass
data/Django-5.0.2/tests/user_commands/management/commands/no_system_checks.py
182
50
325,966
LOAD_CONST 'ImageNet-Sketch dataset.' STORE_NAME __doc__ LOAD_CONST 0 LOAD_CONST ('ImagenetSketch',) IMPORT_NAME tensorflow_datasets.image_classification.imagenet_sketch.imagenet_sketch IMPORT_FROM ImagenetSketch STORE_NAME ImagenetSketch POP_TOP LOAD_CONST None RETURN_VALUE
"""ImageNet-Sketch dataset.""" from tensorflow_datasets.image_classification.imagenet_sketch.imagenet_sketch import ( ImagenetSketch, )
data/tfds-nightly-4.9.4.dev202402210044/tensorflow_datasets/image_classification/imagenet_sketch/__init__.py
78
50
238,523
LOAD_CONST '\nThis file is automatically generated by attribution.\n\nDo not edit manually. Get more info at https://attribution.omnilib.dev\n' STORE_NAME __doc__ LOAD_CONST '0.20.0' STORE_NAME __version__ LOAD_CONST None RETURN_VALUE
""" This file is automatically generated by attribution. Do not edit manually. Get more info at https://attribution.omnilib.dev """ __version__ = "0.20.0"
data/aiosqlite-0.20.0/aiosqlite/__version__.py
64
50
235,678
LOAD_CONST 1 LOAD_CONST ('DomainMappingsAsyncClient',) IMPORT_NAME async_client IMPORT_FROM DomainMappingsAsyncClient STORE_NAME DomainMappingsAsyncClient POP_TOP LOAD_CONST 1 LOAD_CONST ('DomainMappingsClient',) IMPORT_NAME client IMPORT_FROM DomainMappingsClient STORE_NAME DomainMappingsClient POP_TOP LOAD_CONST ('...
from .async_client import DomainMappingsAsyncClient from .client import DomainMappingsClient __all__ = ( "DomainMappingsClient", "DomainMappingsAsyncClient", )
data/google-cloud-appengine-admin-1.11.1/google/cloud/appengine_admin_v1/services/domain_mappings/__init__.py
96
50
245,049
LOAD_CONST 0 LOAD_CONST ('Literal',) IMPORT_NAME typing IMPORT_FROM Literal STORE_NAME Literal POP_TOP LOAD_NAME Literal LOAD_CONST ('row', 'col', 'dense', 'row-dense', 'col-dense') BINARY_SUBSCR STORE_NAME GridAutoFlow LOAD_CONST None RETURN_VALUE
from typing import Literal GridAutoFlow = Literal[ "row", "col", "dense", "row-dense", "col-dense", ]
data/nicegui-1.4.15/nicegui/tailwind_types/grid_auto_flow.py
65
50
223,355
LOAD_CONST 0 LOAD_CONST ('setup',) IMPORT_NAME distutils.core IMPORT_FROM setup STORE_NAME setup POP_TOP LOAD_CONST 0 LOAD_CONST ('Extension',) IMPORT_NAME distutils.extension IMPORT_FROM Extension STORE_NAME Extension POP_TOP LOAD_NAME setup LOAD_CONST 'manual' LOAD_NAME Extension LOAD_CONST 'manual' LOAD_CONST 'man...
from distutils.core import setup from distutils.extension import Extension setup(name="manual", ext_modules=[Extension(name="manual", sources=["manual.c"])])
data/cffi-1.16.0/demo/setup_manual.py
109
50
54,073
LOAD_CONST 1 LOAD_CONST ('AsyncEth',) IMPORT_NAME async_eth IMPORT_FROM AsyncEth STORE_NAME AsyncEth POP_TOP LOAD_CONST 1 LOAD_CONST ('BaseEth',) IMPORT_NAME base_eth IMPORT_FROM BaseEth STORE_NAME BaseEth POP_TOP LOAD_CONST 1 LOAD_CONST ('Contract', 'Eth') IMPORT_NAME eth IMPORT_FROM Contract STORE_NAME Contract IMP...
from .async_eth import ( AsyncEth, ) from .base_eth import ( BaseEth, ) from .eth import ( Contract, Eth, )
data/web3-6.15.1/web3/eth/__init__.py
97
50
152,970
LOAD_CONST 0 LOAD_CONST ('randint',) IMPORT_NAME random IMPORT_FROM randint STORE_NAME randint POP_TOP LOAD_CONST <code object is_valid_grammar at 0x7fab42122c00, file "f.py", line 4> LOAD_CONST 'is_valid_grammar' MAKE_FUNCTION STORE_NAME is_valid_grammar LOAD_CONST None RETURN_VALUE LOAD_GLOBAL randint LOAD_CONST 0 ...
from random import randint def is_valid_grammar(sentence): if randint(0, 10) < 2: return False else: return True
data/distlib-0.3.8/tests/fake_dists/grammar-1.0a4/grammar/utils.py
132
50
290,866
LOAD_CONST ('main',) STORE_NAME __all__ LOAD_CONST <code object main at 0x7fab8000f660, file "f.py", line 4> LOAD_CONST 'main' MAKE_FUNCTION STORE_NAME main LOAD_NAME __name__ LOAD_CONST '__main__' COMPARE_OP == POP_JUMP_IF_FALSE LOAD_NAME main CALL_FUNCTION POP_TOP LOAD_CONST None RETURN_VALUE LOAD_CONST 0 LOAD_CO...
__all__ = ("main",) def main(): from camelot.cli import cli cli() if __name__ == "__main__": main()
data/camelot-py-0.11.0/camelot/__main__.py
127
50
346,144
LOAD_CONST 1 LOAD_CONST ('PytestBrownieMaster',) IMPORT_NAME master IMPORT_FROM PytestBrownieMaster STORE_NAME PytestBrownieMaster POP_TOP LOAD_CONST 1 LOAD_CONST ('PytestBrownieRunner', 'PytestBrownieXdistRunner') IMPORT_NAME runner IMPORT_FROM PytestBrownieRunner STORE_NAME PytestBrownieRunner IMPORT_FROM PytestBrow...
from .master import PytestBrownieMaster # noqa f401 from .runner import PytestBrownieRunner, PytestBrownieXdistRunner # noqa f401
data/eth-brownie-1.20.1/brownie/test/managers/__init__.py
107
50
211,787
LOAD_CONST 0 LOAD_CONST ('*',) IMPORT_NAME grappelli.dashboard.dashboards IMPORT_STAR LOAD_CONST 0 LOAD_CONST ('*',) IMPORT_NAME grappelli.dashboard.registry IMPORT_STAR LOAD_CONST 'grappelli.dashboard.apps.DashboardConfig' STORE_NAME default_app_config LOAD_CONST None RETURN_VALUE
from grappelli.dashboard.dashboards import * from grappelli.dashboard.registry import * default_app_config = "grappelli.dashboard.apps.DashboardConfig"
data/django-grappelli-3.0.8/grappelli/dashboard/__init__.py
77
50
20,659
LOAD_CONST 'userlibri_audio_data dataset.' STORE_NAME __doc__ LOAD_CONST 0 LOAD_CONST ('UserLibriAudio',) IMPORT_NAME tensorflow_datasets.audio.userlibri_audio_data.userlibri_audio_data IMPORT_FROM UserLibriAudio STORE_NAME UserLibriAudio POP_TOP LOAD_CONST None RETURN_VALUE
"""userlibri_audio_data dataset.""" from tensorflow_datasets.audio.userlibri_audio_data.userlibri_audio_data import ( UserLibriAudio, )
data/tensorflow-datasets-4.9.4/tensorflow_datasets/audio/userlibri_audio_data/__init__.py
76
50
255,177
LOAD_CONST 'Archive commands for the 7zzs program.\nThe 7zzs program is included in the Linux-specific distribution of the 7-Zip\npackage.\n' STORE_NAME __doc__ LOAD_CONST 1 LOAD_CONST ('*',) IMPORT_NAME p7zz IMPORT_STAR LOAD_CONST None RETURN_VALUE
"""Archive commands for the 7zzs program. The 7zzs program is included in the Linux-specific distribution of the 7-Zip package. """ from .p7zz import *
data/patool-2.2.0/patoolib/programs/p7zzs.py
70
50
441,630
LOAD_CONST '\nIMAP Library - a IMAP email testing library.\n' STORE_NAME __doc__ LOAD_CONST '0.4.6' STORE_NAME VERSION LOAD_CONST <code object get_version at 0x7fab422310c0, file "f.py", line 8> LOAD_CONST 'get_version' MAKE_FUNCTION STORE_NAME get_version LOAD_CONST None RETURN_VALUE LOAD_GLOBAL VERSION RETURN_VALU...
""" IMAP Library - a IMAP email testing library. """ VERSION = "0.4.6" def get_version(): """Returns the current version.""" return VERSION
data/robotframework-imaplibrary2-0.4.6/src/ImapLibrary2/version.py
99
50
343,561
LOAD_CONST 0 LOAD_CONST ('AirbyteCDKReader', 'RecordHandler') IMPORT_NAME llama_hub.airbyte_cdk.base IMPORT_FROM AirbyteCDKReader STORE_NAME AirbyteCDKReader IMPORT_FROM RecordHandler STORE_NAME RecordHandler POP_TOP LOAD_CONST 'AirbyteCDKReader' LOAD_CONST 'RecordHandler' BUILD_LIST STORE_NAME __all__ LOAD_CONST None...
from llama_hub.airbyte_cdk.base import ( AirbyteCDKReader, RecordHandler, ) __all__ = ["AirbyteCDKReader", "RecordHandler"]
data/llama_hub-0.0.79.post1/llama_hub/airbyte_cdk/__init__.py
84
50
359,331
LOAD_CONST 1 LOAD_CONST ('*',) IMPORT_NAME __cmd_group 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_associated_resources IMPORT_STAR LOAD_CONST 1 LOAD_CONST ('*',) IMPORT_NAME ...
from .__cmd_group import * from ._delete import * from ._list import * from ._list_associated_resources import * from ._show import * from ._wait import *
data/azure-cli-2.57.0/azure/cli/command_modules/vm/aaz/latest/disk_encryption_set/__init__.py
113
50
376,656
SETUP_EXCEPT to 30 LOAD_CONST 0 LOAD_CONST ('get_version',) IMPORT_NAME setuptools_scm IMPORT_FROM get_version STORE_NAME get_version POP_TOP LOAD_NAME get_version LOAD_CONST '..' LOAD_NAME __file__ LOAD_CONST ('root', 'relative_to') CALL_FUNCTION STORE_NAME version POP_BLOCK JUMP_FORWARD to 54 DUP_TOP LOAD_NAME Exc...
try: from setuptools_scm import get_version version = get_version(root="..", relative_to=__file__) except Exception: version = "1.5"
data/pyvo-1.5/pyvo/version.py
121
50
206,679
LOAD_CONST 0 LOAD_CONST None IMPORT_NAME AVFoundation STORE_NAME AVFoundation LOAD_CONST 0 LOAD_CONST ('TestCase',) IMPORT_NAME PyObjCTools.TestSupport IMPORT_FROM TestCase STORE_NAME TestCase POP_TOP LOAD_BUILD_CLASS LOAD_CONST <code object TestAVAssetTrackGroup at 0x7fab701da150, file "f.py", line 5> LOAD_CONST 'Te...
import AVFoundation from PyObjCTools.TestSupport import TestCase class TestAVAssetTrackGroup(TestCase): def testClasses(self): AVFoundation.AVAssetTrackGroup
data/pyobjc-framework-AVFoundation-10.1/PyObjCTest/test_avassettrackgroup.py
231
50
95,012
LOAD_CONST 0 LOAD_CONST ('Chalice',) IMPORT_NAME chalice IMPORT_FROM Chalice STORE_NAME Chalice POP_TOP LOAD_NAME Chalice LOAD_CONST '{{app_name}}' LOAD_CONST ('app_name',) CALL_FUNCTION STORE_NAME app LOAD_NAME app LOAD_METHOD route LOAD_CONST '/' CALL_METHOD LOAD_CONST <code object index at 0x7fab42062930, file "f....
from chalice import Chalice app = Chalice(app_name="{{app_name}}") @app.route("/") def index(): return {"hello": "world"}
data/chalice-1.30.0/chalice/templates/0000-rest-api/app.py
134
50
372,749
LOAD_CONST 'OpenGL.EGL the portable interface to GL environments' STORE_NAME __doc__ LOAD_CONST 0 LOAD_CONST ('*',) IMPORT_NAME OpenGL.raw.GLES1._types IMPORT_STAR LOAD_CONST 0 LOAD_CONST ('*',) IMPORT_NAME OpenGL.GLES1.VERSION.GLES1_1_0 IMPORT_STAR LOAD_CONST None RETURN_VALUE
"""OpenGL.EGL the portable interface to GL environments""" from OpenGL.raw.GLES1._types import * from OpenGL.GLES1.VERSION.GLES1_1_0 import *
data/PyOpenGL-3.1.7/OpenGL/GLES1/__init__.py
81
50
61,089
LOAD_CONST 0 LOAD_CONST None IMPORT_NAME setuptools STORE_NAME setuptools SETUP_EXCEPT to 22 LOAD_CONST 0 LOAD_CONST None IMPORT_NAME multiprocessing STORE_NAME multiprocessing POP_BLOCK JUMP_FORWARD to 42 DUP_TOP LOAD_NAME ImportError COMPARE_OP exception match POP_JUMP_IF_FALSE POP_TOP POP_TOP POP_TOP POP_EXCEPT ...
import setuptools try: import multiprocessing # noqa except ImportError: pass setuptools.setup(setup_requires=["pbr"], pbr=True)
data/bindep-2.11.0/setup.py
120
50
175,699
LOAD_CONST 0 LOAD_CONST ('Entity',) IMPORT_NAME office365.sharepoint.entity IMPORT_FROM Entity STORE_NAME Entity POP_TOP LOAD_BUILD_CLASS LOAD_CONST <code object MembersInfo at 0x7fab640fab70, file "f.py", line 4> LOAD_CONST 'MembersInfo' MAKE_FUNCTION LOAD_CONST 'MembersInfo' LOAD_NAME Entity CALL_FUNCTION STORE_NAME...
from office365.sharepoint.entity import Entity class MembersInfo(Entity): @property def entity_type_name(self): return "SP.Directory.MembersInfo"
data/Office365-REST-Python-Client-2.5.5/office365/sharepoint/directory/members_info.py
199
50
189,529
LOAD_CONST 0 LOAD_CONST ('StrictVersion',) IMPORT_NAME distutils.version IMPORT_FROM StrictVersion STORE_NAME StrictVersion POP_TOP LOAD_CONST 0 LOAD_CONST ('get_version',) IMPORT_NAME django IMPORT_FROM get_version STORE_NAME get_version POP_TOP LOAD_CONST <code object at_least_version at 0x7faa7c1f68a0, file "f.py"...
from distutils.version import StrictVersion from django import get_version def at_least_version(version): return StrictVersion(get_version()) > StrictVersion(version)
data/sparkpost-1.3.10/test/django/utils.py
149
50
203,445
LOAD_CONST 1 LOAD_CONST ('ZabbixAPI', 'ZabbixAPIException', 'ssl_context_compat') IMPORT_NAME api IMPORT_FROM ZabbixAPI STORE_NAME ZabbixAPI IMPORT_FROM ZabbixAPIException STORE_NAME ZabbixAPIException IMPORT_FROM ssl_context_compat STORE_NAME ssl_context_compat POP_TOP LOAD_CONST 1 LOAD_CONST ('ZabbixMetric', 'Zabbix...
from .api import ZabbixAPI, ZabbixAPIException, ssl_context_compat from .sender import ZabbixMetric, ZabbixSender, ZabbixResponse
data/py-zabbix-1.1.7/pyzabbix/__init__.py
165
50
91,267
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 AssetClass at 0x7fab701ac780, file "f.py", line 5> LOAD...
from enum import unique from ...._base_enum import StrEnum @unique class AssetClass(StrEnum): FUTURES = "Futures" SWAP = "Swap"
data/refinitiv-data-1.6.0/refinitiv/data/content/ipa/_enums/_asset_class.py
176
50
195,548
LOAD_CONST 0 LOAD_CONST ('EdenAiExplicitImageTool',) IMPORT_NAME langchain_community.tools.edenai.image_explicitcontent IMPORT_FROM EdenAiExplicitImageTool STORE_NAME EdenAiExplicitImageTool POP_TOP LOAD_CONST 'EdenAiExplicitImageTool' BUILD_LIST STORE_NAME __all__ LOAD_CONST None RETURN_VALUE
from langchain_community.tools.edenai.image_explicitcontent import ( EdenAiExplicitImageTool, ) __all__ = ["EdenAiExplicitImageTool"]
data/langchain-0.1.8/langchain/tools/edenai/image_explicitcontent.py
82
50
369,324
LOAD_CONST 1 LOAD_CONST ('product', 'Product') IMPORT_NAME products IMPORT_FROM product STORE_NAME product IMPORT_FROM Product STORE_NAME Product POP_TOP LOAD_CONST 1 LOAD_CONST ('summation', 'Sum') IMPORT_NAME summations IMPORT_FROM summation STORE_NAME summation IMPORT_FROM Sum STORE_NAME Sum POP_TOP LOAD_CONST 'pr...
from .products import product, Product from .summations import summation, Sum __all__ = [ "product", "Product", "summation", "Sum", ]
data/sympy-1.12/sympy/concrete/__init__.py
101
50
229,088
LOAD_CONST 0 LOAD_CONST ('ClientAuthenticationError',) IMPORT_NAME azure.core.exceptions IMPORT_FROM ClientAuthenticationError STORE_NAME ClientAuthenticationError POP_TOP LOAD_BUILD_CLASS LOAD_CONST <code object CredentialUnavailableError at 0x7f8ab68a5150, file "f.py", line 4> LOAD_CONST 'CredentialUnavailableError'...
from azure.core.exceptions import ClientAuthenticationError class CredentialUnavailableError(ClientAuthenticationError): """The credential did not attempt to authenticate because required data or state is unavailable."""
data/azure-ai-ml-1.13.0/azure/ai/ml/identity/_exceptions.py
171
50
426,574
LOAD_CONST 0 LOAD_CONST ('OpRun',) IMPORT_NAME onnx.reference.op_run IMPORT_FROM OpRun STORE_NAME OpRun POP_TOP LOAD_BUILD_CLASS LOAD_CONST <code object SequenceEmpty at 0x7fab700788a0, file "f.py", line 4> LOAD_CONST 'SequenceEmpty' MAKE_FUNCTION LOAD_CONST 'SequenceEmpty' LOAD_NAME OpRun CALL_FUNCTION STORE_NAME Seq...
from onnx.reference.op_run import OpRun class SequenceEmpty(OpRun): def _run(self, dtype=None): # type: ignore return ([],)
data/onnxoptimizer-0.3.13/third_party/onnx/onnx/reference/ops/op_sequence_empty.py
187
50
85,576
LOAD_CONST 1 LOAD_CONST ('_Dash', 'chain', 'tap', 'thru') IMPORT_NAME chaining IMPORT_FROM _Dash STORE_NAME _Dash IMPORT_FROM chain STORE_NAME chain IMPORT_FROM tap STORE_NAME tap IMPORT_FROM thru STORE_NAME thru POP_TOP LOAD_CONST ('_Dash', 'chain', 'tap', 'thru') STORE_NAME __all__ LOAD_CONST None RETURN_VALUE
from .chaining import _Dash, chain, tap, thru __all__ = ( "_Dash", "chain", "tap", "thru", )
data/pydash-7.0.7/src/pydash/chaining/__init__.py
87
50
183,891
SETUP_EXCEPT to 20 LOAD_NAME __import__ LOAD_CONST 'pkg_resources' CALL_FUNCTION LOAD_METHOD declare_namespace LOAD_NAME __name__ CALL_METHOD POP_TOP POP_BLOCK JUMP_FORWARD to 52 POP_TOP POP_TOP POP_TOP LOAD_CONST 0 LOAD_CONST None IMPORT_NAME pkgutil STORE_NAME pkgutil LOAD_NAME pkgutil LOAD_METHOD extend_path LOA...
try: __import__("pkg_resources").declare_namespace(__name__) except: import pkgutil __path__ = pkgutil.extend_path(__path__, __name__)
data/pydevd-pycharm-241.12662.44/pydevd_plugins/__init__.py
111
50
347,408
LOAD_CONST 0 LOAD_CONST None IMPORT_NAME enum STORE_NAME enum LOAD_BUILD_CLASS LOAD_CONST <code object StrEnum at 0x7fab42914780, file "f.py", line 4> LOAD_CONST 'StrEnum' MAKE_FUNCTION LOAD_CONST 'StrEnum' LOAD_NAME enum LOAD_ATTR Enum CALL_FUNCTION STORE_NAME StrEnum LOAD_BUILD_CLASS LOAD_CONST <code object IntEnum...
import enum class StrEnum(enum.Enum): one = "one" two = "two" class IntEnum(enum.Enum): one = 1 two = 2
data/SQLAlchemy-2.0.27/test/ext/mypy/incremental/ticket_6435/enum_col_import1.py
234
50
362,500
LOAD_CONST 0 LOAD_CONST ('imghdr_patch', 'pathlib_patch') IMPORT_NAME visions.utils.monkeypatches IMPORT_FROM imghdr_patch STORE_NAME imghdr_patch IMPORT_FROM pathlib_patch STORE_NAME pathlib_patch POP_TOP LOAD_CONST 'imghdr_patch' LOAD_CONST 'pathlib_patch' BUILD_LIST STORE_NAME __all__ LOAD_CONST None RETURN_VALUE
from visions.utils.monkeypatches import imghdr_patch, pathlib_patch __all__ = [ "imghdr_patch", "pathlib_patch", ]
data/visions-0.7.6/src/visions/utils/monkeypatches/__init__.py
90
50
78,064
LOAD_CONST 1 STORE_NAME blub LOAD_BUILD_CLASS LOAD_CONST <code object Config2 at 0x7f8e447b4db0, file "f.py", line 4> LOAD_CONST 'Config2' MAKE_FUNCTION LOAD_CONST 'Config2' CALL_FUNCTION STORE_NAME Config2 LOAD_BUILD_CLASS LOAD_CONST <code object BaseClass at 0x7f8e447b4780, file "f.py", line 8> LOAD_CONST 'BaseClas...
blub = 1 class Config2: pass class BaseClass: mode = Config2() if isinstance(whaat, int): mode2 = whaat
data/jedi-0.19.1/test/completion/import_tree/classes.py
220
50
420,972
LOAD_CONST 0 LOAD_CONST ('NavigateTool', 'NavigateToolInput') IMPORT_NAME langchain_community.tools.playwright.navigate IMPORT_FROM NavigateTool STORE_NAME NavigateTool IMPORT_FROM NavigateToolInput STORE_NAME NavigateToolInput POP_TOP LOAD_CONST 'NavigateToolInput' LOAD_CONST 'NavigateTool' BUILD_LIST STORE_NAME __al...
from langchain_community.tools.playwright.navigate import ( NavigateTool, NavigateToolInput, ) __all__ = ["NavigateToolInput", "NavigateTool"]
data/langchain-0.1.8/langchain/tools/playwright/navigate.py
84
50
369,307
LOAD_CONST '\n' STORE_NAME __doc__ LOAD_CONST 'SeeedBus' LOAD_CONST 'seeedstudio' BUILD_LIST STORE_NAME __all__ LOAD_CONST 0 LOAD_CONST ('SeeedBus',) IMPORT_NAME can.interfaces.seeedstudio.seeedstudio IMPORT_FROM SeeedBus STORE_NAME SeeedBus POP_TOP LOAD_CONST None RETURN_VALUE
""" """ __all__ = [ "SeeedBus", "seeedstudio", ] from can.interfaces.seeedstudio.seeedstudio import SeeedBus
data/python-can-4.3.1/can/interfaces/seeedstudio/__init__.py
80
50
27,886
LOAD_CONST 0 LOAD_CONST None IMPORT_NAME setuptools STORE_NAME setuptools SETUP_EXCEPT to 22 LOAD_CONST 0 LOAD_CONST None IMPORT_NAME multiprocessing STORE_NAME multiprocessing POP_BLOCK JUMP_FORWARD to 42 DUP_TOP LOAD_NAME ImportError COMPARE_OP exception match POP_JUMP_IF_FALSE POP_TOP POP_TOP POP_TOP POP_EXCEPT ...
import setuptools try: import multiprocessing # noqa except ImportError: pass setuptools.setup(setup_requires=["pbr"], pbr=True)
data/jsonpath-rw-ext-1.2.2/setup.py
120
50
242,943
LOAD_CONST 0 LOAD_CONST ('Dict',) IMPORT_NAME typing IMPORT_FROM Dict STORE_NAME Dict POP_TOP LOAD_CONST 0 LOAD_CONST ('quote',) IMPORT_NAME urllib.parse IMPORT_FROM quote STORE_NAME quote POP_TOP LOAD_NAME Dict LOAD_CONST ('env',) BUILD_CONST_KEY_MAP LOAD_CONST <code object request_path at 0x7fab81f0bf60, file "f.py...
from typing import Dict from urllib.parse import quote def request_path(env: Dict): return quote("/" + env.get("PATH_INFO", "").lstrip("/"))
data/bugsnag-4.6.1/bugsnag/wsgi/__init__.py
157
50
184,431
LOAD_CONST 'Init file.' STORE_NAME __doc__ LOAD_CONST 0 LOAD_CONST ('AzCognitiveSearchReader',) IMPORT_NAME llama_hub.azcognitive_search.base IMPORT_FROM AzCognitiveSearchReader STORE_NAME AzCognitiveSearchReader POP_TOP LOAD_CONST 'AzCognitiveSearchReader' BUILD_LIST STORE_NAME __all__ LOAD_CONST None RETURN_VALUE
"""Init file.""" from llama_hub.azcognitive_search.base import ( AzCognitiveSearchReader, ) __all__ = ["AzCognitiveSearchReader"]
data/llama_hub-0.0.79.post1/llama_hub/azcognitive_search/__init__.py
84
50
359,577
LOAD_CONST '\nThis package contains the portions of the library used only when\nimplementing an OpenID server. See L{openid.server.server}.\n' STORE_NAME __doc__ LOAD_CONST 'server' LOAD_CONST 'trustroot' BUILD_LIST STORE_NAME __all__ LOAD_CONST None RETURN_VALUE
""" This package contains the portions of the library used only when implementing an OpenID server. See L{openid.server.server}. """ __all__ = ["server", "trustroot"]
data/python-openid-2.2.5/openid/server/__init__.py
67
50
84,414
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 ('FilterSet',) IMPORT_NAME filterset IMPORT_FROM FilterSet STORE_NAME FilterSet POP_TOP LOAD_CONST 1 LOAD_CONST ('*',) IMPORT_NAME filters IMPORT_STAR LOAD_CONST ...
from __future__ import absolute_import from .filterset import FilterSet from .filters import * VERSION = (0, 2, 0) __version__ = VERSION # alias
data/djangorestframework-filters-0.11.1/rest_framework_filters/__init__.py
105
50
389,725
LOAD_CONST 0 LOAD_CONST ('CheckType',) IMPORT_NAME checkov.common.bridgecrew.check_type IMPORT_FROM CheckType STORE_NAME CheckType POP_TOP LOAD_CONST 0 LOAD_CONST ('Registry',) IMPORT_NAME checkov.yaml_doc.base_registry IMPORT_FROM Registry STORE_NAME Registry POP_TOP LOAD_NAME Registry LOAD_NAME CheckType LOAD_ATTR ...
from checkov.common.bridgecrew.check_type import CheckType from checkov.yaml_doc.base_registry import Registry registry = Registry(CheckType.YAML)
data/checkov-3.2.23/checkov/example_runner/checks/job_registry.py
94
50
160,613
LOAD_CONST 1 LOAD_CONST ('kbi_safe_yaspin', 'yaspin') IMPORT_NAME api IMPORT_FROM kbi_safe_yaspin STORE_NAME kbi_safe_yaspin IMPORT_FROM yaspin STORE_NAME yaspin POP_TOP LOAD_CONST 1 LOAD_CONST ('Spinner',) IMPORT_NAME core IMPORT_FROM Spinner STORE_NAME Spinner POP_TOP LOAD_CONST ('yaspin', 'kbi_safe_yaspin', 'Spinn...
from .api import kbi_safe_yaspin, yaspin from .core import Spinner __all__ = ("yaspin", "kbi_safe_yaspin", "Spinner")
data/yaspin-3.0.1/yaspin/__init__.py
113
50
118,095
LOAD_NAME str LOAD_NAME bytes BUILD_TUPLE STORE_NAME string_types LOAD_CONST <code object with_metaclass at 0x7fab703f71e0, file "f.py", line 4> LOAD_CONST 'with_metaclass' MAKE_FUNCTION STORE_NAME with_metaclass LOAD_CONST None RETURN_VALUE LOAD_FAST meta LOAD_CONST 'NewBase' LOAD_FAST bases BUILD_MAP CALL_FUNCTION ...
string_types = str, bytes def with_metaclass(meta, *bases): """Create a base class with a metaclass.""" return meta("NewBase", bases, {})
data/lazy-object-proxy-1.10.0/src/lazy_object_proxy/compat.py
92
50
351,793
LOAD_CONST 0 LOAD_CONST ('*',) IMPORT_NAME numcodecs IMPORT_STAR LOAD_CONST 0 LOAD_CONST ('get_codec', 'Blosc', 'Pickle', 'Zlib', 'Delta', 'AsType', 'BZ2') IMPORT_NAME numcodecs IMPORT_FROM get_codec STORE_NAME get_codec IMPORT_FROM Blosc STORE_NAME Blosc IMPORT_FROM Pickle STORE_NAME Pickle IMPORT_FROM Zlib STORE_NAM...
from numcodecs import * from numcodecs import get_codec, Blosc, Pickle, Zlib, Delta, AsType, BZ2 from numcodecs.registry import codec_registry
data/zarr-2.17.0/zarr/codecs.py
164
50
175,981
LOAD_CONST 0 LOAD_CONST ('path',) IMPORT_NAME django.urls IMPORT_FROM path STORE_NAME path POP_TOP LOAD_CONST 0 LOAD_CONST ('View',) IMPORT_NAME django.views.generic IMPORT_FROM View STORE_NAME View POP_TOP LOAD_NAME path LOAD_CONST 'simple/action/' LOAD_NAME View LOAD_METHOD as_view CALL_METHOD LOAD_CONST 'simpleAct...
from django.urls import path from django.views.generic import View urlpatterns = [ path("simple/action/", View.as_view(), name="simpleAction"), ]
data/crispy-bootstrap4-2023.1/tests/urls.py
100
50
104,834
LOAD_CONST 0 LOAD_CONST None IMPORT_NAME os STORE_NAME os LOAD_CONST 0 LOAD_CONST None IMPORT_NAME sys STORE_NAME sys LOAD_CONST 0 LOAD_CONST None IMPORT_NAME unittest STORE_NAME unittest LOAD_NAME unittest LOAD_METHOD TestLoader CALL_METHOD LOAD_METHOD discover LOAD_CONST 'quantities' CALL_METHOD STORE_NAME suite ...
import os import sys import unittest suite = unittest.TestLoader().discover("quantities") unittest.TextTestRunner(verbosity=1).run(suite)
data/quantities-0.15.0/conda.recipe/run_test.py
110
50
358,096
LOAD_CONST 'Contributed modules.\n\nContrib contains modules that are not considered part of the core oauth2client\nlibrary but provide additional functionality. These modules are intended to\nmake it easier to use oauth2client.\n' STORE_NAME __doc__ LOAD_CONST None RETURN_VALUE
"""Contributed modules. Contrib contains modules that are not considered part of the core oauth2client library but provide additional functionality. These modules are intended to make it easier to use oauth2client. """
data/oauth2client-4.1.3/oauth2client/contrib/__init__.py
63
50
80,609
LOAD_CONST 0 LOAD_CONST ('absolute_import',) IMPORT_NAME __future__ IMPORT_FROM absolute_import STORE_NAME absolute_import POP_TOP LOAD_CONST 0 LOAD_CONST ('division',) IMPORT_NAME __future__ IMPORT_FROM division STORE_NAME division POP_TOP LOAD_CONST 0 LOAD_CONST ('print_function',) IMPORT_NAME __future__ IMPORT_FRO...
from __future__ import absolute_import from __future__ import division from __future__ import print_function from .. import mesh from .morphabel_model import MorphabelModel from . import load
data/insightface-0.7.3/insightface/thirdparty/face3d/morphable_model/__init__.py
166
50
108,892
LOAD_CONST 'Constants for emulated_kasa.' STORE_NAME __doc__ LOAD_CONST 'power' STORE_NAME CONF_POWER LOAD_CONST 'power_entity' STORE_NAME CONF_POWER_ENTITY LOAD_CONST 'emulated_kasa' STORE_NAME DOMAIN LOAD_CONST None RETURN_VALUE
"""Constants for emulated_kasa.""" CONF_POWER = "power" CONF_POWER_ENTITY = "power_entity" DOMAIN = "emulated_kasa"
data/homeassistant-2024.2.2/homeassistant/components/emulated_kasa/const.py
68
50
296,936
LOAD_CONST 0 LOAD_CONST None IMPORT_NAME os STORE_NAME os LOAD_CONST <code object get_fixture at 0x7fab8212bb70, file "f.py", line 4> LOAD_CONST 'get_fixture' MAKE_FUNCTION STORE_NAME get_fixture LOAD_CONST None RETURN_VALUE LOAD_GLOBAL os LOAD_ATTR path LOAD_METHOD dirname LOAD_GLOBAL __file__ CALL_METHOD STORE_FAST...
import os def get_fixture(relative): script_dir = os.path.dirname(__file__) return os.path.join(script_dir, "fixtures/", relative)
data/yamale-4.0.4/yamale/tests/__init__.py
121
50
171,923
LOAD_CONST 1 LOAD_CONST ('compileUi', 'compileUiDir') IMPORT_NAME compile_ui IMPORT_FROM compileUi STORE_NAME compileUi IMPORT_FROM compileUiDir STORE_NAME compileUiDir POP_TOP LOAD_CONST 1 LOAD_CONST ('loadUi', 'loadUiType') IMPORT_NAME load_ui IMPORT_FROM loadUi STORE_NAME loadUi IMPORT_FROM loadUiType STORE_NAME lo...
from .compile_ui import compileUi, compileUiDir from .load_ui import loadUi, loadUiType from .objcreator import widgetPluginPath from .ui_file import UIFile
data/PyQt6-6.6.1/uic/__init__.py
155
50
209,809
LOAD_CONST 0 LOAD_CONST ('ModelForm',) IMPORT_NAME django.forms IMPORT_FROM ModelForm STORE_NAME ModelForm POP_TOP LOAD_CONST 1 LOAD_CONST ('CAPlace',) IMPORT_NAME models IMPORT_FROM CAPlace STORE_NAME CAPlace POP_TOP LOAD_BUILD_CLASS LOAD_CONST <code object CAPlaceForm at 0x7f8aa4c20ed0, file "f.py", line 6> LOAD_CO...
from django.forms import ModelForm from .models import CAPlace class CAPlaceForm(ModelForm): class Meta: model = CAPlace fields = "__all__"
data/django-localflavor-4.0/tests/test_ca/forms.py
252
50
434,798
LOAD_CONST 0 LOAD_CONST ('CommsOperation',) IMPORT_NAME office365.communications.operations.comms IMPORT_FROM CommsOperation STORE_NAME CommsOperation POP_TOP LOAD_BUILD_CLASS LOAD_CONST <code object UpdateRecordingStatusOperation at 0x7fab7002ba50, file "f.py", line 4> LOAD_CONST 'UpdateRecordingStatusOperation' MAKE...
from office365.communications.operations.comms import CommsOperation class UpdateRecordingStatusOperation(CommsOperation): """Describes the response format of an update recording status action."""
data/Office365-REST-Python-Client-2.5.5/office365/communications/operations/update_recording_status.py
169
50
188,642
LOAD_CONST 0 LOAD_CONST ('Pin',) IMPORT_NAME ddtrace IMPORT_FROM Pin STORE_NAME Pin POP_TOP LOAD_NAME __name__ LOAD_CONST '__main__' COMPARE_OP == POP_JUMP_IF_FALSE LOAD_CONST 0 LOAD_CONST None IMPORT_NAME celery STORE_NAME celery LOAD_NAME Pin LOAD_METHOD get_from LOAD_NAME celery LOAD_ATTR Celery CALL_METHOD POP_J...
from ddtrace import Pin if __name__ == "__main__": import celery assert Pin.get_from(celery.Celery) print("Test success")
data/ddtrace-2.6.3/tests/contrib/celery/autopatch.py
104
50
269,905
LOAD_CONST 0 LOAD_CONST None IMPORT_NAME pytest STORE_NAME pytest LOAD_CONST 0 LOAD_CONST None IMPORT_NAME simpy STORE_NAME simpy LOAD_NAME pytest LOAD_METHOD fixture CALL_METHOD LOAD_CONST <code object log at 0x7faa746408a0, file "f.py", line 6> LOAD_CONST 'log' MAKE_FUNCTION CALL_FUNCTION STORE_NAME log LOAD_NAME ...
import pytest import simpy @pytest.fixture() def log(): return [] @pytest.fixture() def env(): return simpy.Environment()
data/simpy-4.1.1/tests/conftest.py
164
50
246,648
LOAD_CONST 'Generated API for package: tensorflow_examples.lite.model_maker.core.task.configs.' STORE_NAME __doc__ LOAD_CONST 0 LOAD_CONST ('*',) IMPORT_NAME tensorflow_examples.lite.model_maker.core.task.configs IMPORT_STAR LOAD_CONST None RETURN_VALUE
"""Generated API for package: tensorflow_examples.lite.model_maker.core.task.configs.""" from tensorflow_examples.lite.model_maker.core.task.configs import *
data/tflite-model-maker-nightly-0.4.4.dev202402210609/src/tflite_model_maker/python/core/task/configs.py
70
50
389,400
LOAD_CONST 0 LOAD_CONST ('KMLSitemap', 'KMZSitemap') IMPORT_NAME django.contrib.gis.sitemaps.kml IMPORT_FROM KMLSitemap STORE_NAME KMLSitemap IMPORT_FROM KMZSitemap STORE_NAME KMZSitemap POP_TOP LOAD_CONST 'KMLSitemap' LOAD_CONST 'KMZSitemap' BUILD_LIST STORE_NAME __all__ LOAD_CONST None RETURN_VALUE
from django.contrib.gis.sitemaps.kml import KMLSitemap, KMZSitemap __all__ = ["KMLSitemap", "KMZSitemap"]
data/Django-5.0.2/django/contrib/gis/sitemaps/__init__.py
100
50
326,838
LOAD_CONST 'userlibri_audio_data dataset.' STORE_NAME __doc__ LOAD_CONST 0 LOAD_CONST ('UserLibriAudio',) IMPORT_NAME tensorflow_datasets.audio.userlibri_audio_data.userlibri_audio_data IMPORT_FROM UserLibriAudio STORE_NAME UserLibriAudio POP_TOP LOAD_CONST None RETURN_VALUE
"""userlibri_audio_data dataset.""" from tensorflow_datasets.audio.userlibri_audio_data.userlibri_audio_data import ( UserLibriAudio, )
data/tfds-nightly-4.9.4.dev202402210044/tensorflow_datasets/audio/userlibri_audio_data/__init__.py
76
50
238,237
LOAD_CONST 0 LOAD_CONST ('ModelForm',) IMPORT_NAME django.forms IMPORT_FROM ModelForm STORE_NAME ModelForm POP_TOP LOAD_CONST 1 LOAD_CONST ('ECPlace',) IMPORT_NAME models IMPORT_FROM ECPlace STORE_NAME ECPlace POP_TOP LOAD_BUILD_CLASS LOAD_CONST <code object ECPlaceForm at 0x7f8ab7985db0, file "f.py", line 6> LOAD_CO...
from django.forms import ModelForm from .models import ECPlace class ECPlaceForm(ModelForm): class Meta: model = ECPlace fields = ("province",)
data/django-localflavor-4.0/tests/test_ec/forms.py
253
50
434,832
LOAD_CONST 1 LOAD_CONST ('SimpleDropdown',) IMPORT_NAME simpledropdown IMPORT_FROM SimpleDropdown STORE_NAME SimpleDropdown POP_TOP LOAD_CONST 1 LOAD_CONST ('SimpleImage',) IMPORT_NAME simpleimage IMPORT_FROM SimpleImage STORE_NAME SimpleImage POP_TOP LOAD_CONST 1 LOAD_CONST ('SimpleTextbox',) IMPORT_NAME simpletextb...
from .simpledropdown import SimpleDropdown from .simpleimage import SimpleImage from .simpletextbox import SimpleTextbox __all__ = ["SimpleDropdown", "SimpleTextbox", "SimpleImage"]
data/gradio-4.19.1/gradio/_simple_templates/__init__.py
119
50
235,910
LOAD_CONST 1 LOAD_CONST ('ZoeDepth',) IMPORT_NAME zoedepth_v1 IMPORT_FROM ZoeDepth STORE_NAME ZoeDepth POP_TOP LOAD_CONST 'v1' LOAD_NAME ZoeDepth BUILD_MAP STORE_NAME all_versions LOAD_CONST <code object <lambda> at 0x7fa9e2319150, file "f.py", line 7> LOAD_CONST '<lambda>' MAKE_FUNCTION STORE_NAME get_version LOAD_C...
from .zoedepth_v1 import ZoeDepth all_versions = { "v1": ZoeDepth, } get_version = lambda v: all_versions[v]
data/controlnet_aux-0.0.7/src/controlnet_aux/zoe/zoedepth/models/zoedepth/__init__.py
120
50
153,606
LOAD_CONST '\nThe implementation here is modified based on insightface, originally MIT license and publicly available at\nhttps://github.com/deepinsight/insightface/tree/master/detection/scrfd/mmdet\n' STORE_NAME __doc__ LOAD_CONST None RETURN_VALUE
""" The implementation here is modified based on insightface, originally MIT license and publicly available at https://github.com/deepinsight/insightface/tree/master/detection/scrfd/mmdet """
data/modelscope-1.12.0/modelscope/models/cv/face_detection/scrfd/mmdet_patch/__init__.py
62
50
314,851
LOAD_CONST 'Generate a corpus id.' STORE_NAME __doc__ LOAD_CONST 0 LOAD_CONST None IMPORT_NAME uuid STORE_NAME uuid LOAD_CONST <code object generate_corpus_id at 0x7faa74756930, file "f.py", line 6> LOAD_CONST 'generate_corpus_id' MAKE_FUNCTION STORE_NAME generate_corpus_id LOAD_CONST None RETURN_VALUE LOAD_GLOBAL u...
"""Generate a corpus id.""" import uuid def generate_corpus_id(): """Generate a corpus id.""" return uuid.uuid4().hex[:8]
data/nbformat-5.9.2/nbformat/corpus/words.py
125
50
27,133
LOAD_CONST 0 LOAD_CONST ('api',) IMPORT_NAME molecule IMPORT_FROM api STORE_NAME api POP_TOP LOAD_CONST <code object test_gce_driver_is_detected at 0x7fab540c51e0, file "f.py", line 4> LOAD_CONST 'test_gce_driver_is_detected' MAKE_FUNCTION STORE_NAME test_gce_driver_is_detected LOAD_CONST None RETURN_VALUE LOAD_CONST...
from molecule import api def test_gce_driver_is_detected(): drivers = [str(d) for d in api.drivers()] assert "gce" in drivers
data/molecule-plugins-23.5.3/test/gce/test_driver.py
236
50
109,739
LOAD_CONST 0 LOAD_CONST None IMPORT_NAME oslo_i18n STORE_NAME i18n LOAD_NAME i18n LOAD_ATTR TranslatorFactory LOAD_CONST 'glanceclient' LOAD_CONST ('domain',) CALL_FUNCTION STORE_NAME _translators LOAD_NAME _translators LOAD_ATTR primary STORE_NAME _ LOAD_CONST None RETURN_VALUE
import oslo_i18n as i18n _translators = i18n.TranslatorFactory(domain="glanceclient") _ = _translators.primary
data/python-glanceclient-4.4.0/glanceclient/_i18n.py
74
50
248,687
LOAD_CONST 0 LOAD_CONST None IMPORT_NAME mypy.api STORE_NAME mypy LOAD_CONST <code object test_mypy_import at 0x7fab5434bc00, file "f.py", line 4> LOAD_CONST 'test_mypy_import' MAKE_FUNCTION STORE_NAME test_mypy_import LOAD_CONST None RETURN_VALUE LOAD_GLOBAL mypy LOAD_ATTR api LOAD_METHOD run LOAD_CONST '-c' LOAD_CO...
import mypy.api def test_mypy_import(): _, _, result = mypy.api.run(["-c", "from loguru import logger"]) assert result == 0
data/loguru-0.7.2/tests/test_type_hinting.py
147
50
143,227
LOAD_CONST 0 LOAD_CONST ('*',) IMPORT_NAME osmium._osmium IMPORT_STAR LOAD_CONST 0 LOAD_CONST ('*',) IMPORT_NAME osmium.helper IMPORT_STAR LOAD_CONST 0 LOAD_CONST None IMPORT_NAME osmium.io STORE_NAME osmium LOAD_CONST 0 LOAD_CONST None IMPORT_NAME osmium.osm STORE_NAME osmium LOAD_CONST 0 LOAD_CONST None IMPORT_NA...
from osmium._osmium import * from osmium.helper import * import osmium.io import osmium.osm import osmium.index import osmium.geom
data/osmium-3.7.0/src/osmium/__init__.py
127
50
170,053
LOAD_CONST 1 LOAD_CONST ('register',) IMPORT_NAME sklearn_text_onnx IMPORT_FROM register STORE_NAME register_text POP_TOP LOAD_CONST 1 LOAD_CONST ('register',) IMPORT_NAME woe_transformer_onnx IMPORT_FROM register STORE_NAME register_woe POP_TOP LOAD_NAME register_text CALL_FUNCTION POP_TOP LOAD_NAME register_woe CA...
from .sklearn_text_onnx import register as register_text from .woe_transformer_onnx import register as register_woe register_text() register_woe()
data/skl2onnx-1.16.0/skl2onnx/sklapi/register.py
89
50
345,166
LOAD_CONST 0 LOAD_CONST ('IncludedMixin',) IMPORT_NAME tests.testapp.classes_to_include IMPORT_FROM IncludedMixin STORE_NAME IncludedMixin POP_TOP LOAD_BUILD_CLASS LOAD_CONST <code object ClassWhichShouldNotBeImported at 0x7fab82131a50, file "f.py", line 4> LOAD_CONST 'ClassWhichShouldNotBeImported' MAKE_FUNCTION LOAD...
from tests.testapp.classes_to_include import IncludedMixin class ClassWhichShouldNotBeImported: pass class ThirdDerivedClass(IncludedMixin): pass
data/django-extensions-3.2.3/tests/testapp/derived_classes_for_testing/test_module.py
258
50
300,201
LOAD_CONST 0 LOAD_CONST ('EdenAiObjectDetectionTool',) IMPORT_NAME langchain_community.tools.edenai.image_objectdetection IMPORT_FROM EdenAiObjectDetectionTool STORE_NAME EdenAiObjectDetectionTool POP_TOP LOAD_CONST 'EdenAiObjectDetectionTool' BUILD_LIST STORE_NAME __all__ LOAD_CONST None RETURN_VALUE
from langchain_community.tools.edenai.image_objectdetection import ( EdenAiObjectDetectionTool, ) __all__ = ["EdenAiObjectDetectionTool"]
data/langchain-0.1.8/langchain/tools/edenai/image_objectdetection.py
82
50
369,319
LOAD_CONST 0 LOAD_CONST ('*',) IMPORT_NAME google.cloud.aiplatform_v1 IMPORT_STAR LOAD_CONST 0 LOAD_CONST ('schema',) IMPORT_NAME google.cloud.aiplatform.gapic IMPORT_FROM schema STORE_NAME schema POP_TOP LOAD_CONST 0 LOAD_CONST ('aiplatform_v1',) IMPORT_NAME google.cloud IMPORT_FROM aiplatform_v1 STORE_NAME v1 POP_T...
from google.cloud.aiplatform_v1 import * from google.cloud.aiplatform.gapic import schema from google.cloud import aiplatform_v1 as v1 __all__ = ()
data/google-cloud-aiplatform-1.42.1/google/cloud/aiplatform/gapic/__init__.py
101
50
14,009
LOAD_NAME __import__ LOAD_CONST 'dash-module' CALL_FUNCTION POP_TOP LOAD_CONST 'dash-module' STORE_NAME b LOAD_NAME __import__ LOAD_NAME b CALL_FUNCTION POP_TOP LOAD_NAME __import__ LOAD_CONST 'plus+module' CALL_FUNCTION POP_TOP LOAD_CONST 'plus+module' STORE_NAME c LOAD_NAME __import__ LOAD_NAME c CALL_FUNCTION P...
__import__("dash-module") b = "dash-module" __import__(b) __import__("plus+module") c = "plus+module" __import__(c)
data/Nuitka-2.0.3/tests/programs/dash_import/DashImportMain.py
86
50
148,333
LOAD_CONST 'Scheduling pass to assign instruction start time.' STORE_NAME __doc__ LOAD_CONST 1 LOAD_CONST ('ASAPScheduleAnalysis',) IMPORT_NAME asap IMPORT_FROM ASAPScheduleAnalysis STORE_NAME ASAPScheduleAnalysis POP_TOP LOAD_CONST 1 LOAD_CONST ('ALAPScheduleAnalysis',) IMPORT_NAME alap IMPORT_FROM ALAPScheduleAnaly...
"""Scheduling pass to assign instruction start time.""" from .asap import ASAPScheduleAnalysis from .alap import ALAPScheduleAnalysis from .set_io_latency import SetIOLatency
data/qiskit-terra-0.46.0/qiskit/transpiler/passes/scheduling/scheduling/__init__.py
131
50
430,854
LOAD_CONST 0 LOAD_CONST ('DoctranQATransformer',) IMPORT_NAME langchain_community.document_transformers.doctran_text_qa IMPORT_FROM DoctranQATransformer STORE_NAME DoctranQATransformer POP_TOP LOAD_CONST 'DoctranQATransformer' BUILD_LIST STORE_NAME __all__ LOAD_CONST None RETURN_VALUE
from langchain_community.document_transformers.doctran_text_qa import ( DoctranQATransformer, ) __all__ = ["DoctranQATransformer"]
data/langchain-0.1.8/langchain/document_transformers/doctran_text_qa.py
80
50
369,159
LOAD_CONST 0 LOAD_CONST ('ABC', 'abstractmethod') IMPORT_NAME abc IMPORT_FROM ABC STORE_NAME ABC IMPORT_FROM abstractmethod STORE_NAME abstractmethod POP_TOP LOAD_CONST 0 LOAD_CONST ('Settings',) IMPORT_NAME chromadb.config IMPORT_FROM Settings STORE_NAME Settings POP_TOP LOAD_BUILD_CLASS LOAD_CONST <code object Serv...
from abc import ABC, abstractmethod from chromadb.config import Settings class Server(ABC): @abstractmethod def __init__(self, settings: Settings): pass
data/chromadb-0.4.22/chromadb/server/__init__.py
222
50
77,121
LOAD_CONST 0 LOAD_CONST ('copy_metadata', 'collect_data_files') IMPORT_NAME PyInstaller.utils.hooks IMPORT_FROM copy_metadata STORE_NAME copy_metadata IMPORT_FROM collect_data_files STORE_NAME collect_data_files POP_TOP LOAD_NAME copy_metadata LOAD_CONST 'docx2pdf' CALL_FUNCTION STORE_NAME datas LOAD_NAME datas LOAD_...
from PyInstaller.utils.hooks import copy_metadata, collect_data_files datas = copy_metadata("docx2pdf") datas += collect_data_files("docx2pdf")
data/pyinstaller-hooks-contrib-2024.1/src/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-docx2pdf.py
104
50
282,408
LOAD_CONST 0 LOAD_CONST ('Enum',) IMPORT_NAME enum IMPORT_FROM Enum STORE_NAME Enum POP_TOP LOAD_BUILD_CLASS LOAD_CONST <code object EducationExternalSource at 0x7fab70027420, file "f.py", line 4> LOAD_CONST 'EducationExternalSource' MAKE_FUNCTION LOAD_CONST 'EducationExternalSource' LOAD_NAME str LOAD_NAME Enum CALL_...
from enum import Enum class EducationExternalSource(str, Enum): Sis = ("sis",) Manual = ("manual",) UnknownFutureValue = ("unknownFutureValue",)
data/msgraph-sdk-1.1.0/msgraph/generated/models/education_external_source.py
163
50
261,054