repo_id
stringlengths
6
101
size
int64
367
5.14M
file_path
stringlengths
1
269
content
stringlengths
367
5.14M
Yawan-Chaudhari/Cold_Email_Generator
6,589
myenv/Lib/site-packages/langchain_community/document_loaders/parsers/images.py
import base64 import io import logging from abc import abstractmethod from typing import TYPE_CHECKING, Iterable, Iterator import numpy import numpy as np from langchain_core.documents import Document from langchain_core.language_models import BaseChatModel from langchain_core.messages import HumanMessage from langch...
Yawan-Chaudhari/Cold_Email_Generator
1,215
myenv/Lib/site-packages/langchain_community/document_loaders/parsers/registry.py
"""Module includes a registry of default parser configurations.""" from langchain_community.document_loaders.base import BaseBlobParser from langchain_community.document_loaders.parsers.generic import MimeTypeBasedParser from langchain_community.document_loaders.parsers.msword import MsWordParser from langchain_commun...
Yawan-Chaudhari/Cold_Email_Generator
24,859
myenv/Lib/site-packages/langchain_community/document_loaders/parsers/audio.py
import io import logging import os import time from typing import Any, Callable, Dict, Iterator, Literal, Optional, Tuple, Union from langchain_core.documents import Document from langchain_community.document_loaders.base import BaseBlobParser from langchain_community.document_loaders.blob_loaders import Blob from la...
Yawan-Chaudhari/Cold_Email_Generator
3,105
myenv/Lib/site-packages/langchain_community/document_loaders/parsers/__init__.py
import importlib from typing import TYPE_CHECKING, Any if TYPE_CHECKING: from langchain_community.document_loaders.parsers.audio import ( OpenAIWhisperParser, ) from langchain_community.document_loaders.parsers.doc_intelligence import ( AzureAIDocumentIntelligenceParser, ) from lang...
Yawan-Chaudhari/Cold_Email_Generator
1,968
myenv/Lib/site-packages/langchain_community/document_loaders/parsers/msword.py
from typing import Iterator from langchain_core.documents import Document from langchain_community.document_loaders.base import BaseBlobParser from langchain_community.document_loaders.blob_loaders import Blob class MsWordParser(BaseBlobParser): """Parse the Microsoft Word documents from a blob.""" def laz...
Yawan-Chaudhari/Cold_Email_Generator
15,456
myenv/Lib/site-packages/langchain_community/document_loaders/parsers/docai.py
"""Module contains a PDF parser based on Document AI from Google Cloud. You need to install two libraries to use this parser: pip install google-cloud-documentai pip install google-cloud-documentai-toolbox """ import logging import re import time from dataclasses import dataclass from typing import TYPE_CHECKING, Ite...
Yawan-Chaudhari/Cold_Email_Generator
4,720
myenv/Lib/site-packages/langchain_community/document_loaders/parsers/doc_intelligence.py
import logging from typing import Any, Iterator, List, Optional from langchain_core.documents import Document from langchain_community.document_loaders.base import BaseBlobParser from langchain_community.document_loaders.blob_loaders import Blob logger = logging.getLogger(__name__) class AzureAIDocumentIntelligenc...
Yawan-Chaudhari/Cold_Email_Generator
41,573
myenv/Lib/site-packages/langchain_community/document_loaders/parsers/pdf.py
"""Module contains common parsers for PDFs.""" from __future__ import annotations import html import io import logging import threading import warnings from datetime import datetime from typing import ( TYPE_CHECKING, Any, Iterable, Iterator, Literal, Mapping, Optional, Sequence, U...
Yawan-Chaudhari/Cold_Email_Generator
9,845
myenv/Lib/site-packages/langchain_community/document_loaders/blob_loaders/cloud_blob_loader.py
"""Use to load blobs from the local file system.""" import contextlib import mimetypes import tempfile from io import BufferedReader, BytesIO from pathlib import Path from typing import ( TYPE_CHECKING, Callable, Generator, Iterable, Iterator, Optional, Sequence, TypeVar, Union, ) f...
Yawan-Chaudhari/Cold_Email_Generator
5,390
myenv/Lib/site-packages/langchain_community/document_loaders/blob_loaders/file_system.py
"""Use to load blobs from the local file system.""" from pathlib import Path from typing import Callable, Iterable, Iterator, Optional, Sequence, TypeVar, Union from langchain_community.document_loaders.blob_loaders.schema import Blob, BlobLoader T = TypeVar("T") def _make_iterator( length_func: Callable[[], i...
Yawan-Chaudhari/Cold_Email_Generator
1,525
myenv/Lib/site-packages/langchain_community/document_loaders/blob_loaders/youtube_audio.py
from typing import Iterable, List from langchain_community.document_loaders.blob_loaders import FileSystemBlobLoader from langchain_community.document_loaders.blob_loaders.schema import Blob, BlobLoader class YoutubeAudioLoader(BlobLoader): """Load YouTube urls as audio file(s).""" def __init__(self, urls: ...
Yawan-Chaudhari/Cold_Email_Generator
1,198
myenv/Lib/site-packages/langchain_community/document_loaders/blob_loaders/__init__.py
import importlib from typing import TYPE_CHECKING, Any from langchain_core.document_loaders import Blob, BlobLoader if TYPE_CHECKING: from langchain_community.document_loaders.blob_loaders.cloud_blob_loader import ( CloudBlobLoader, ) from langchain_community.document_loaders.blob_loaders.file_sys...
Yawan-Chaudhari/Cold_Email_Generator
1,608
myenv/Lib/site-packages/langchain_community/document_loaders/parsers/html/bs4.py
"""Loader that uses bs4 to load HTML files, enriching metadata with page title.""" import logging from typing import Any, Dict, Iterator, Union from langchain_core.documents import Document from langchain_community.document_loaders.base import BaseBlobParser from langchain_community.document_loaders.blob_loaders imp...
Yawan-Chaudhari/Cold_Email_Generator
3,473
myenv/Lib/site-packages/langchain_community/document_loaders/parsers/language/tree_sitter_segmenter.py
from abc import abstractmethod from typing import TYPE_CHECKING, List from langchain_community.document_loaders.parsers.language.code_segmenter import ( CodeSegmenter, ) if TYPE_CHECKING: from tree_sitter import Language, Parser class TreeSitterSegmenter(CodeSegmenter): """Abstract class for `CodeSegmen...
Yawan-Chaudhari/Cold_Email_Generator
2,037
myenv/Lib/site-packages/langchain_community/document_loaders/parsers/language/sql.py
from typing import TYPE_CHECKING from langchain_community.document_loaders.parsers.language.tree_sitter_segmenter import ( # noqa: E501 TreeSitterSegmenter, ) if TYPE_CHECKING: from tree_sitter import Language CHUNK_QUERY = """ [ (create_table_statement) @create (select_statement) @selec...
Yawan-Chaudhari/Cold_Email_Generator
7,881
myenv/Lib/site-packages/langchain_community/document_loaders/parsers/language/language_parser.py
from __future__ import annotations from typing import Any, Dict, Iterator, Literal, Optional from langchain_core.documents import Document from langchain_community.document_loaders.base import BaseBlobParser from langchain_community.document_loaders.blob_loaders import Blob from langchain_community.document_loaders....
Yawan-Chaudhari/Cold_Email_Generator
2,185
myenv/Lib/site-packages/langchain_community/document_loaders/parsers/language/javascript.py
from typing import Any, List, Tuple from langchain_community.document_loaders.parsers.language.code_segmenter import ( CodeSegmenter, ) class JavaScriptSegmenter(CodeSegmenter): """Code segmenter for JavaScript.""" def __init__(self, code: str): super().__init__(code) self.source_lines =...
Yawan-Chaudhari/Cold_Email_Generator
1,059
myenv/Lib/site-packages/langchain_community/document_loaders/parsers/language/elixir.py
from typing import TYPE_CHECKING from langchain_community.document_loaders.parsers.language.tree_sitter_segmenter import ( # noqa: E501 TreeSitterSegmenter, ) if TYPE_CHECKING: from tree_sitter import Language CHUNK_QUERY = """ [ (call target: ((identifier) @_identifier (#any-of? @_...
Yawan-Chaudhari/Cold_Email_Generator
3,781
myenv/Lib/site-packages/langchain_community/document_loaders/parsers/language/cobol.py
import re from typing import Callable, List, Pattern from langchain_community.document_loaders.parsers.language.code_segmenter import ( CodeSegmenter, ) class CobolSegmenter(CodeSegmenter): """Code segmenter for `COBOL`.""" PARAGRAPH_PATTERN: Pattern = re.compile(r"^[A-Z0-9\-]+(\s+.*)?\.$", re.IGNORECAS...
Yawan-Chaudhari/Cold_Email_Generator
1,731
myenv/Lib/site-packages/langchain_community/document_loaders/parsers/language/python.py
import ast from typing import Any, List, Tuple from langchain_community.document_loaders.parsers.language.code_segmenter import ( CodeSegmenter, ) class PythonSegmenter(CodeSegmenter): """Code segmenter for `Python`.""" def __init__(self, code: str): super().__init__(code) self.source_li...
Yawan-Chaudhari/Cold_Email_Generator
10,564
myenv/Lib/site-packages/langchain_community/vectorstores/redis/schema.py
from __future__ import annotations import os from enum import Enum from pathlib import Path from typing import Any, Dict, List, Optional, Union import numpy as np import yaml from langchain_core.utils.pydantic import get_fields from pydantic import BaseModel, Field, field_validator, validator from typing_extensions i...
Yawan-Chaudhari/Cold_Email_Generator
16,219
myenv/Lib/site-packages/langchain_community/vectorstores/redis/filters.py
from enum import Enum from functools import wraps from typing import Any, Callable, Dict, List, Optional, Set, Tuple, Union from langchain_community.utilities.redis import TokenEscaper # disable mypy error for dunder method overrides # mypy: disable-error-code="override" class RedisFilterOperator(Enum): """Redi...
Yawan-Chaudhari/Cold_Email_Generator
56,606
myenv/Lib/site-packages/langchain_community/vectorstores/redis/base.py
"""Wrapper around Redis vector database.""" from __future__ import annotations import logging import os import uuid from typing import ( TYPE_CHECKING, Any, Callable, Dict, Iterable, List, Mapping, Optional, Tuple, Type, Union, cast, ) import numpy as np import yaml fr...
Yawan-Chaudhari/Cold_Email_Generator
2,296
myenv/Lib/site-packages/langchain_community/vectorstores/docarray/in_memory.py
"""Wrapper around in-memory storage.""" from __future__ import annotations from typing import Any, Dict, List, Literal, Optional from langchain_core.embeddings import Embeddings from langchain_community.vectorstores.docarray.base import ( DocArrayIndex, _check_docarray_import, ) class DocArrayInMemorySear...
Yawan-Chaudhari/Cold_Email_Generator
6,958
myenv/Lib/site-packages/langchain_community/vectorstores/docarray/base.py
from abc import ABC from typing import TYPE_CHECKING, Any, Iterable, List, Optional, Tuple, Type import numpy as np from langchain_core.documents import Document from langchain_core.embeddings import Embeddings from langchain_core.vectorstores import VectorStore from pydantic import Field from langchain_community.vec...
Yawan-Chaudhari/Cold_Email_Generator
4,031
myenv/Lib/site-packages/langchain_community/vectorstores/docarray/hnsw.py
from __future__ import annotations from typing import Any, List, Literal, Optional from langchain_core.embeddings import Embeddings from langchain_community.vectorstores.docarray.base import ( DocArrayIndex, _check_docarray_import, ) class DocArrayHnswSearch(DocArrayIndex): """`HnswLib` storage using `...
Yawan-Chaudhari/Cold_Email_Generator
4,047
myenv/Lib/site-packages/langchain_community/graph_vectorstores/extractors/hierarchy_link_extractor.py
from typing import Callable, List, Set from langchain_core._api import beta from langchain_core.documents import Document from langchain_community.graph_vectorstores.extractors.link_extractor import ( LinkExtractor, ) from langchain_community.graph_vectorstores.extractors.link_extractor_adapter import ( LinkE...
Yawan-Chaudhari/Cold_Email_Generator
6,072
myenv/Lib/site-packages/langchain_community/graph_vectorstores/extractors/gliner_link_extractor.py
from typing import Any, Dict, Iterable, List, Optional, Set, Union from langchain_core._api import beta from langchain_core.documents import Document from langchain_community.graph_vectorstores.extractors.link_extractor import ( LinkExtractor, ) from langchain_community.graph_vectorstores.links import Link # Typ...
Yawan-Chaudhari/Cold_Email_Generator
6,835
myenv/Lib/site-packages/langchain_community/graph_vectorstores/extractors/keybert_link_extractor.py
from typing import Any, Dict, Iterable, Optional, Set, Union from langchain_core._api import beta from langchain_core.documents import Document from langchain_community.graph_vectorstores.extractors.link_extractor import ( LinkExtractor, ) from langchain_community.graph_vectorstores.links import Link KeybertInpu...
Yawan-Chaudhari/Cold_Email_Generator
1,644
myenv/Lib/site-packages/langchain_community/graph_vectorstores/extractors/link_extractor_transformer.py
from typing import Any, Sequence from langchain_core._api import beta from langchain_core.documents import Document from langchain_core.documents.transformers import BaseDocumentTransformer from langchain_community.graph_vectorstores.extractors.link_extractor import ( LinkExtractor, ) from langchain_community.gra...
Yawan-Chaudhari/Cold_Email_Generator
11,723
myenv/Lib/site-packages/langchain_community/graph_vectorstores/extractors/html_link_extractor.py
from __future__ import annotations from dataclasses import dataclass from typing import TYPE_CHECKING, List, Optional, Set, Union from urllib.parse import urldefrag, urljoin, urlparse from langchain_core._api import beta from langchain_core.documents import Document from langchain_community.graph_vectorstores import...
Yawan-Chaudhari/Cold_Email_Generator
1,079
myenv/Lib/site-packages/langchain_community/graph_vectorstores/extractors/link_extractor.py
from __future__ import annotations from abc import ABC, abstractmethod from typing import Generic, Iterable, Set, TypeVar from langchain_core._api import beta from langchain_community.graph_vectorstores import Link InputT = TypeVar("InputT") METADATA_LINKS_KEY = "links" @beta() class LinkExtractor(ABC, Generic[I...
Yawan-Chaudhari/Cold_Email_Generator
1,211
myenv/Lib/site-packages/langchain_community/graph_vectorstores/extractors/__init__.py
from langchain_community.graph_vectorstores.extractors.gliner_link_extractor import ( GLiNERInput, GLiNERLinkExtractor, ) from langchain_community.graph_vectorstores.extractors.hierarchy_link_extractor import ( HierarchyInput, HierarchyLinkExtractor, ) from langchain_community.graph_vectorstores.extract...
Yawan-Chaudhari/Cold_Email_Generator
18,377
myenv/Lib/site-packages/langchain_community/callbacks/tracers/wandb.py
"""A Tracer Implementation that records activity to Weights & Biases.""" from __future__ import annotations import json from typing import ( TYPE_CHECKING, Any, Callable, Dict, List, Optional, Sequence, Tuple, TypedDict, Union, ) from langchain_core._api import warn_deprecated...
Yawan-Chaudhari/Cold_Email_Generator
4,615
myenv/Lib/site-packages/langchain_community/callbacks/tracers/comet.py
from types import ModuleType, SimpleNamespace from typing import TYPE_CHECKING, Any, Callable, Dict from langchain_core.tracers import BaseTracer from langchain_core.utils import guard_import if TYPE_CHECKING: from uuid import UUID from comet_llm import Span from comet_llm.chains.chain import Chain ...
Yawan-Chaudhari/Cold_Email_Generator
5,395
myenv/Lib/site-packages/langchain_community/callbacks/streamlit/mutable_expander.py
from __future__ import annotations from enum import Enum from typing import TYPE_CHECKING, Any, Dict, List, NamedTuple, Optional if TYPE_CHECKING: from streamlit.delta_generator import DeltaGenerator from streamlit.type_util import SupportsStr class ChildType(Enum): """Enumerator of the child type.""" ...
Yawan-Chaudhari/Cold_Email_Generator
3,183
myenv/Lib/site-packages/langchain_community/callbacks/streamlit/__init__.py
from __future__ import annotations from typing import TYPE_CHECKING, Optional from langchain_core.callbacks import BaseCallbackHandler from langchain_community.callbacks.streamlit.streamlit_callback_handler import ( LLMThoughtLabeler as LLMThoughtLabeler, ) from langchain_community.callbacks.streamlit.streamlit_...
Yawan-Chaudhari/Cold_Email_Generator
15,610
myenv/Lib/site-packages/langchain_community/callbacks/streamlit/streamlit_callback_handler.py
"""Callback Handler that prints to streamlit.""" from __future__ import annotations from enum import Enum from typing import TYPE_CHECKING, Any, Dict, List, NamedTuple, Optional from langchain_core.agents import AgentAction, AgentFinish from langchain_core.callbacks import BaseCallbackHandler from langchain_core.out...
Yawan-Chaudhari/Cold_Email_Generator
24,444
myenv/Lib/site-packages/langchain_community/agents/openai_assistant/base.py
from __future__ import annotations from typing import ( TYPE_CHECKING, Any, Callable, Dict, Optional, Sequence, Type, Union, ) from langchain.agents.openai_assistant.base import OpenAIAssistantRunnable, OutputType from langchain_core._api import beta from langchain_core.callbacks impor...
Yawan-Chaudhari/Cold_Email_Generator
2,176
myenv/Lib/site-packages/kubernetes/leaderelection/electionconfig.py
# Copyright 2021 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
9,900
myenv/Lib/site-packages/kubernetes/leaderelection/leaderelection_test.py
# Copyright 2021 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
1,871
myenv/Lib/site-packages/kubernetes/leaderelection/example.py
# Copyright 2021 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
8,377
myenv/Lib/site-packages/kubernetes/leaderelection/leaderelection.py
# Copyright 2021 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
2,347
myenv/Lib/site-packages/kubernetes/utils/quantity.py
# Copyright 2019 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
5,456
myenv/Lib/site-packages/kubernetes/utils/duration.py
# Copyright 2024 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
10,816
myenv/Lib/site-packages/kubernetes/utils/create_from_yaml.py
# Copyright 2018 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
3,794
myenv/Lib/site-packages/kubernetes/client/exceptions.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ import six class OpenApiException(Exception): ...
Yawan-Chaudhari/Cold_Email_Generator
13,482
myenv/Lib/site-packages/kubernetes/client/configuration.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import c...
Yawan-Chaudhari/Cold_Email_Generator
57,884
myenv/Lib/site-packages/kubernetes/client/__init__.py
# coding: utf-8 # flake8: noqa """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_...
Yawan-Chaudhari/Cold_Email_Generator
13,121
myenv/Lib/site-packages/kubernetes/client/rest.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import i...
Yawan-Chaudhari/Cold_Email_Generator
25,581
myenv/Lib/site-packages/kubernetes/client/api_client.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import ate...
Yawan-Chaudhari/Cold_Email_Generator
23,305
myenv/Lib/site-packages/kubernetes/stream/ws_client.py
# Copyright 2018 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
2,307
myenv/Lib/site-packages/kubernetes/stream/stream.py
# Copyright 2018 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
3,796
myenv/Lib/site-packages/kubernetes/stream/ws_client_test.py
# Copyright 2018 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
20,576
myenv/Lib/site-packages/kubernetes/watch/watch_test.py
# Copyright 2016 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
8,746
myenv/Lib/site-packages/kubernetes/watch/watch.py
# Copyright 2016 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
3,843
myenv/Lib/site-packages/kubernetes/dynamic/exceptions.py
# Copyright 2019 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
20,213
myenv/Lib/site-packages/kubernetes/dynamic/test_client.py
# Copyright 2019 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
14,099
myenv/Lib/site-packages/kubernetes/dynamic/client.py
# Copyright 2019 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
14,775
myenv/Lib/site-packages/kubernetes/dynamic/resource.py
# Copyright 2019 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
2,324
myenv/Lib/site-packages/kubernetes/dynamic/test_discovery.py
# Copyright 2019 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
17,484
myenv/Lib/site-packages/kubernetes/dynamic/discovery.py
# Copyright 2019 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
2,745
myenv/Lib/site-packages/kubernetes/config/dateutil.py
# Copyright 2017 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
33,857
myenv/Lib/site-packages/kubernetes/config/kube_config.py
# Copyright 2018 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
3,105
myenv/Lib/site-packages/kubernetes/config/dateutil_test.py
# Copyright 2016 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
3,743
myenv/Lib/site-packages/kubernetes/config/exec_provider.py
# Copyright 2018 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
5,929
myenv/Lib/site-packages/kubernetes/config/exec_provider_test.py
# Copyright 2018 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
5,971
myenv/Lib/site-packages/kubernetes/config/incluster_config_test.py
# Copyright 2016 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
4,676
myenv/Lib/site-packages/kubernetes/config/incluster_config.py
# Copyright 2016 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
2,023
myenv/Lib/site-packages/kubernetes/config/__init__.py
# Copyright 2016 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
72,029
myenv/Lib/site-packages/kubernetes/config/kube_config_test.py
# Copyright 2018 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
5,857
myenv/Lib/site-packages/kubernetes/leaderelection/resourcelock/configmaplock.py
# Copyright 2021 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Yawan-Chaudhari/Cold_Email_Generator
5,067
myenv/Lib/site-packages/kubernetes/client/api/version_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
119,262
myenv/Lib/site-packages/kubernetes/client/api/internal_apiserver_v1alpha1_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
315,813
myenv/Lib/site-packages/kubernetes/client/api/custom_objects_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
209,871
myenv/Lib/site-packages/kubernetes/client/api/admissionregistration_v1beta1_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
117,123
myenv/Lib/site-packages/kubernetes/client/api/discovery_v1_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
5,523
myenv/Lib/site-packages/kubernetes/client/api/well_known_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
91,496
myenv/Lib/site-packages/kubernetes/client/api/scheduling_v1_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
5,189
myenv/Lib/site-packages/kubernetes/client/api/resource_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
120,825
myenv/Lib/site-packages/kubernetes/client/api/storagemigration_v1alpha1_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
116,015
myenv/Lib/site-packages/kubernetes/client/api/coordination_v1_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
5,215
myenv/Lib/site-packages/kubernetes/client/api/admissionregistration_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
148,888
myenv/Lib/site-packages/kubernetes/client/api/certificates_v1_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
5,203
myenv/Lib/site-packages/kubernetes/client/api/apiregistration_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
9,507
myenv/Lib/site-packages/kubernetes/client/api/logs_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
5,191
myenv/Lib/site-packages/kubernetes/client/api/discovery_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
14,735
myenv/Lib/site-packages/kubernetes/client/api/authentication_v1alpha1_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
44,309
myenv/Lib/site-packages/kubernetes/client/api/authorization_v1_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
14,727
myenv/Lib/site-packages/kubernetes/client/api/authentication_v1beta1_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
92,293
myenv/Lib/site-packages/kubernetes/client/api/certificates_v1alpha1_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
577,196
myenv/Lib/site-packages/kubernetes/client/api/resource_v1alpha3_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
5,178
myenv/Lib/site-packages/kubernetes/client/api/policy_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
5,193
myenv/Lib/site-packages/kubernetes/client/api/networking_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
92,651
myenv/Lib/site-packages/kubernetes/client/api/storage_v1alpha1_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
5,187
myenv/Lib/site-packages/kubernetes/client/api/storage_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
116,091
myenv/Lib/site-packages/kubernetes/client/api/events_v1_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
91,331
myenv/Lib/site-packages/kubernetes/client/api/node_v1_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
118,315
myenv/Lib/site-packages/kubernetes/client/api/apiregistration_v1_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...
Yawan-Chaudhari/Cold_Email_Generator
400,622
myenv/Lib/site-packages/kubernetes/client/api/rbac_authorization_v1_api.py
# coding: utf-8 """ Kubernetes No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: release-1.31 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import r...