repo_full_name stringlengths 6 93 | repo_url stringlengths 25 112 | repo_api_url stringclasses 28
values | owner stringclasses 28
values | repo_name stringclasses 28
values | description stringclasses 28
values | stars int64 617 98.8k | forks int64 31 355 ⌀ | watchers int64 990 999 ⌀ | license stringclasses 2
values | default_branch stringclasses 2
values | repo_created_at timestamp[s]date 2012-07-24 23:12:50 2025-06-16 08:07:28 ⌀ | repo_updated_at timestamp[s]date 2026-02-23 15:23:15 2026-05-03 18:52:12 ⌀ | repo_topics listlengths 0 13 ⌀ | repo_languages unknown | is_fork bool 1
class | open_issues int64 3 104 ⌀ | file_path stringlengths 3 208 | file_name stringclasses 509
values | file_extension stringclasses 1
value | file_size_bytes int64 101 84k ⌀ | file_url stringclasses 627
values | file_raw_url stringclasses 627
values | file_sha stringclasses 624
values | language stringclasses 8
values | parsed_at stringdate 2026-05-04 01:12:36 2026-05-04 19:41:55 | text stringlengths 100 102k |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/extras/load_yml.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:02.128021 | """
Basic example of scraping pipeline using SmartScraper
"""
import yaml
from scrapegraphai.graphs import SmartScraperGraph
from scrapegraphai.utils import prettify_exec_info
# ************************************************
# Define the configuration for the graph
# ***********************************************... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/depth_search_graph/openai/depth_search_graph_openai.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:02.304594 | """
depth_search_graph_opeani example
"""
import os
from dotenv import load_dotenv
from scrapegraphai.graphs import DepthSearchGraph
load_dotenv()
openai_key = os.getenv("OPENAI_API_KEY")
graph_config = {
"llm": {
"api_key": openai_key,
"model": "openai/gpt-4o-mini",
},
"verbose": True... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/extras/proxy_rotation.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:02.370871 | """
Basic example of scraping pipeline using SmartScraper
"""
from scrapegraphai.graphs import SmartScraperGraph
from scrapegraphai.utils import prettify_exec_info
# ************************************************
# Define the configuration for the graph
# ************************************************
graph_conf... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/extras/serch_graph_scehma.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:02.710213 | """
Example of Search Graph
"""
import os
from typing import List
from dotenv import load_dotenv
from pydantic import BaseModel, Field
from scrapegraphai.graphs import SearchGraph
load_dotenv()
# ************************************************
# Define the configuration for the graph
# **************************... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/extras/undected_playwright.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:02.710713 | """
Basic example of scraping pipeline using SmartScraper
"""
import os
from dotenv import load_dotenv
from scrapegraphai.graphs import SmartScraperGraph
from scrapegraphai.utils import prettify_exec_info
load_dotenv()
# ************************************************
# Define the configuration for the graph
# **... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/extras/slow_mo.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:02.738372 | """
Basic example of scraping pipeline using SmartScraper
"""
from scrapegraphai.graphs import SmartScraperGraph
from scrapegraphai.utils import prettify_exec_info
# ************************************************
# Define the configuration for the graph
# ************************************************
graph_conf... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/json_scraper_graph/ollama/json_scraper_multi_ollama.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:02.961198 | """
Module for showing how PDFScraper multi works
"""
import json
import os
from scrapegraphai.graphs import JSONScraperMultiGraph
graph_config = {
"llm": {
"model": "ollama/llama3",
"temperature": 0,
"format": "json", # Ollama needs the format to be specified explicitly
"model_t... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/json_scraper_graph/ollama/json_scraper_ollama.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:02.990239 | """
Basic example of scraping pipeline using JSONScraperGraph from JSON documents
"""
import os
from dotenv import load_dotenv
from scrapegraphai.graphs import JSONScraperGraph
from scrapegraphai.utils import convert_to_csv, convert_to_json, prettify_exec_info
load_dotenv()
# **************************************... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/json_scraper_graph/openai/json_scraper_openai.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:03.283871 | """
Basic example of scraping pipeline using JSONScraperGraph from JSON documents
"""
import os
from dotenv import load_dotenv
from scrapegraphai.graphs import JSONScraperGraph
from scrapegraphai.utils import convert_to_csv, convert_to_json, prettify_exec_info
load_dotenv()
# **************************************... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/json_scraper_graph/openai/md_scraper_openai.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:03.358380 | """
Basic example of scraping pipeline using DocumentScraperGraph from MD documents
"""
import os
from dotenv import load_dotenv
from scrapegraphai.graphs import DocumentScraperGraph
from scrapegraphai.utils import convert_to_csv, convert_to_json, prettify_exec_info
load_dotenv()
# ********************************... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/json_scraper_graph/openai/json_scraper_multi_openai.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:03.368323 | """
Module for showing how PDFScraper multi works
"""
import json
import os
from dotenv import load_dotenv
from scrapegraphai.graphs import JSONScraperMultiGraph
load_dotenv()
openai_key = os.getenv("OPENAI_APIKEY")
graph_config = {
"llm": {
"api_key": openai_key,
"model": "openai/gpt-4o",
... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/json_scraper_graph/openai/omni_scraper_openai.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:03.579806 | """
Basic example of scraping pipeline using OmniScraper
"""
import json
import os
from dotenv import load_dotenv
from scrapegraphai.graphs import OmniScraperGraph
from scrapegraphai.utils import prettify_exec_info
load_dotenv()
# ************************************************
# Define the configuration for the ... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/markdownify/markdownify_scrapegraphai.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:03.610263 | """
Scrape a webpage as clean markdown using scrapegraph-py v2 API.
Replaces the old markdownify() call with scrape().
"""
import json
import os
from dotenv import load_dotenv
from scrapegraph_py import Client
load_dotenv()
api_key = os.getenv("SCRAPEGRAPH_API_KEY")
if not api_key:
raise ValueError("SCRAPEGRAPH... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/markdownify/markdownify_scrapegraphai_v3.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:03.886041 | """
Scrape a webpage as markdown using the scrapegraph-py v3 API (PR #84).
Uses ScrapeGraphAI client + ScrapeRequest model + ApiResult wrapper.
"""
import json
import os
from dotenv import load_dotenv
from scrapegraph_py import ScrapeGraphAI, ScrapeRequest
load_dotenv()
api_key = os.getenv("SGAI_API_KEY") or os.get... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/script_generator_graph/ollama/script_generator_ollama.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:03.980920 | """
Basic example of scraping pipeline using ScriptCreatorGraph
"""
from scrapegraphai.graphs import ScriptCreatorGraph
from scrapegraphai.utils import prettify_exec_info
# ************************************************
# Define the configuration for the graph
# ************************************************
gra... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/omni_scraper_graph/omni_search_openai.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:03.998429 | """
Example of OmniSearchGraph
"""
import json
import os
from dotenv import load_dotenv
from scrapegraphai.graphs import OmniSearchGraph
from scrapegraphai.utils import prettify_exec_info
load_dotenv()
# ************************************************
# Define the configuration for the graph
# *******************... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/script_generator_graph/openai/script_generator_multi_openai.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:04.182133 | """
Basic example of scraping pipeline using ScriptCreatorGraph
"""
import os
from dotenv import load_dotenv
from scrapegraphai.graphs import ScriptCreatorMultiGraph
from scrapegraphai.utils import prettify_exec_info
load_dotenv()
# ************************************************
# Define the configuration for th... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/script_generator_graph/ollama/script_multi_generator_ollama.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:04.194646 | """
Basic example of scraping pipeline using ScriptCreatorGraph
"""
from dotenv import load_dotenv
from scrapegraphai.graphs import ScriptCreatorMultiGraph
from scrapegraphai.utils import prettify_exec_info
load_dotenv()
# ************************************************
# Define the configuration for the graph
# *... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/script_generator_graph/openai/script_generator_openai.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:04.474254 | """
Basic example of scraping pipeline using SmartScraper
"""
import json
import os
from dotenv import load_dotenv
from scrapegraphai.graphs import ScriptCreatorGraph
from scrapegraphai.utils import prettify_exec_info
load_dotenv()
# ************************************************
# Define the configuration for t... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/search_graph/ollama/search_graph_ollama.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:04.585376 | """
Example of Search Graph
"""
from scrapegraphai.graphs import SearchGraph
from scrapegraphai.utils import convert_to_csv, convert_to_json, prettify_exec_info
# ************************************************
# Define the configuration for the graph
# ************************************************
graph_config... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/script_generator_graph/openai/script_generator_schema_openai.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:04.590877 | """
Basic example of scraping pipeline using ScriptCreatorGraph
"""
import os
from typing import List
from dotenv import load_dotenv
from pydantic import BaseModel, Field
from scrapegraphai.graphs import ScriptCreatorGraph
from scrapegraphai.utils import prettify_exec_info
load_dotenv()
# *************************... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/search_graph/ollama/search_graph_schema_ollama.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:04.763419 | """
Example of Search Graph
"""
from typing import List
from pydantic import BaseModel, Field
from scrapegraphai.graphs import SearchGraph
from scrapegraphai.utils import convert_to_csv, convert_to_json, prettify_exec_info
# ************************************************
# Define the output schema for the graph
#... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/search_graph/openai/search_graph_openai.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:04.815615 | """
Example of Search Graph
"""
import os
from dotenv import load_dotenv
from scrapegraphai.graphs import SearchGraph
load_dotenv()
# ************************************************
# Define the configuration for the graph
# ************************************************
openai_key = os.getenv("OPENAI_API_KEY"... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/search_graph/openai/search_graph_schema_openai.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:05.356983 | """
Example of Search Graph
"""
import os
from typing import List
from dotenv import load_dotenv
from pydantic import BaseModel, Field
from scrapegraphai.graphs import SearchGraph
from scrapegraphai.utils import convert_to_csv, convert_to_json, prettify_exec_info
load_dotenv()
# ***********************************... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/search_graph/openai/search_link_graph_openai.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:05.714548 | """
Basic example of scraping pipeline using SmartScraper
"""
import os
from dotenv import load_dotenv
from scrapegraphai.graphs import SearchLinkGraph
from scrapegraphai.utils import prettify_exec_info
load_dotenv()
# ************************************************
# Define the configuration for the graph
# *****... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/extras/rag_caching.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:06.997216 | """
Basic example of scraping pipeline using SmartScraper
"""
import os
from dotenv import load_dotenv
from scrapegraphai.graphs import SmartScraperGraph
from scrapegraphai.utils import prettify_exec_info
load_dotenv()
# ************************************************
# Define the configuration for the graph
# *... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/extras/reasoning.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:07.125382 | """
Basic example of scraping pipeline using SmartScraper
"""
import json
import os
from dotenv import load_dotenv
from scrapegraphai.graphs import SmartScraperGraph
from scrapegraphai.utils import prettify_exec_info
load_dotenv()
# ************************************************
# Define the configuration for th... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/extras/screenshot_scaping.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:07.155164 | """
example of scraping with screenshots
"""
import asyncio
from scrapegraphai.utils.screenshot_scraping import (
crop_image,
detect_text,
select_area_with_opencv,
take_screenshot,
)
# STEP 1: Take a screenshot
image = asyncio.run(
take_screenshot(
url="https://colab.google/",
sav... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/extras/no_cut.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:07.155808 | """
This example shows how to do not process the html code in the fetch phase
"""
import json
from scrapegraphai.graphs import SmartScraperGraph
from scrapegraphai.utils import prettify_exec_info
# ************************************************
# Define the configuration for the graph
# ***************************... |
ScrapeGraphAI/Scrapegraph-ai | https://github.com/ScrapeGraphAI/Scrapegraph-ai | null | null | null | null | 23,444 | null | null | mit | null | null | null | null | null | null | null | examples/extras/scrape_do.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:07.237126 | """
Basic example of scraping pipeline using SmartScraper
"""
import json
import os
from dotenv import load_dotenv
from scrapegraphai.graphs import SmartScraperGraph
load_dotenv()
# ************************************************
# Define the configuration for the graph
# *****************************************... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | examples/transform_args_example.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:10.034957 | """
Example demonstrating how to use ToolRegistry.transform_args for user-specific
argument transformation, such as applying row-level security (RLS) to SQL queries.
This example shows:
1. Creating a custom ToolRegistry subclass that overrides transform_args
2. Applying RLS transformation to SQL queries based on user ... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | examples/chromadb_gpu_example.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:10.065343 | """
Example: Using ChromaDB AgentMemory with GPU acceleration
This example demonstrates how to use ChromaAgentMemory with intelligent
device selection for GPU acceleration when available.
"""
from vanna.integrations.chromadb import (
ChromaAgentMemory,
get_device,
create_sentence_transformer_embedding_fun... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/capabilities/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:10.082265 | """
Capabilities module.
This package contains abstractions for tool capabilities - reusable utilities
that tools can compose via dependency injection.
"""
from .file_system import CommandResult, FileSearchMatch, FileSystem
from .sql_runner import RunSqlToolArgs, SqlRunner
__all__ = [
"FileSystem",
"FileSear... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/agents/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:10.111774 | """
Agent implementations.
This package contains agent implementations and utilities.
"""
__all__: list[str] = []
|
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/evals/benchmarks/llm_comparison.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:10.231315 | """
LLM Comparison Benchmark
This script compares different LLMs on SQL generation tasks.
Run from repository root:
PYTHONPATH=. python evals/benchmarks/llm_comparison.py
"""
import asyncio
import os
from pathlib import Path
from vanna import Agent
from vanna.core.evaluation import (
EvaluationRunner,
Ev... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/capabilities/agent_memory/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:10.233320 | """
Agent memory capability package.
"""
from .base import AgentMemory
from .models import (
MemoryStats,
TextMemory,
TextMemorySearchResult,
ToolMemory,
ToolMemorySearchResult,
)
__all__ = [
"AgentMemory",
"TextMemory",
"TextMemorySearchResult",
"ToolMemory",
"ToolMemorySearch... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/capabilities/agent_memory/models.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:10.234833 | """
Memory storage models and types.
"""
from typing import Any, Dict, List, Optional
from pydantic import BaseModel
class ToolMemory(BaseModel):
"""Represents a stored tool usage memory."""
memory_id: Optional[str] = None
question: str
tool_name: str
args: Dict[str, Any]
timestamp: Optiona... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | frontends/webcomponent/test_backend.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:10.236050 | #!/usr/bin/env python3
"""
Comprehensive test backend for vanna-webcomponent validation.
This backend exercises all component types and update patterns to validate
that nothing breaks during webcomponent pruning.
Usage:
python test_backend.py --mode rapid # Fast stress test
python test_backend.py --mode ... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/capabilities/agent_memory/base.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:10.237309 | """
Agent memory capability interface for tool usage learning.
This module contains the abstract base class for agent memory operations,
following the same pattern as the FileSystem interface.
"""
from __future__ import annotations
from abc import ABC, abstractmethod
from typing import TYPE_CHECKING, Any, Dict, List... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:10.302393 | """
Vanna Agents - A modular framework for building LLM agents.
This package provides a flexible framework for creating conversational AI agents
with tool execution, conversation management, and user scoping.
"""
# Version information
__version__ = "0.1.0"
# Import core framework components
from .core import (
#... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/capabilities/file_system/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:10.846723 | """
File system capability.
This module provides abstractions for file system operations used by tools.
"""
from .base import FileSystem
from .models import CommandResult, FileSearchMatch
__all__ = [
"FileSystem",
"FileSearchMatch",
"CommandResult",
]
|
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/capabilities/file_system/base.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:10.847773 | """
File system capability interface.
This module contains the abstract base class for file system operations.
"""
from abc import ABC, abstractmethod
from typing import TYPE_CHECKING, List, Optional
from .models import CommandResult, FileSearchMatch
if TYPE_CHECKING:
from vanna.core.tool import ToolContext
c... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/capabilities/file_system/models.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:10.849429 | """
File system capability models.
This module contains data models for file system operations.
"""
from dataclasses import dataclass
from typing import Optional
@dataclass
class FileSearchMatch:
"""Represents a single search result within a file system."""
path: str
snippet: Optional[str] = None
@da... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/capabilities/sql_runner/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:10.851377 | """
SQL runner capability.
This module provides abstractions for SQL execution used by tools.
"""
from .base import SqlRunner
from .models import RunSqlToolArgs
__all__ = [
"SqlRunner",
"RunSqlToolArgs",
]
|
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/rich/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:11.041519 | """Rich UI components for the Vanna Agents framework."""
# Base classes and enums - import from core
from ...core.rich_component import RichComponent, ComponentType, ComponentLifecycle
# Text component
from .text import RichTextComponent
# Data components
from .data import (
DataFrameComponent,
ChartComponen... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/capabilities/sql_runner/base.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:11.043109 | """
SQL runner capability interface.
This module contains the abstract base class for SQL execution.
"""
from abc import ABC, abstractmethod
from typing import TYPE_CHECKING
import pandas as pd
from .models import RunSqlToolArgs
if TYPE_CHECKING:
from vanna.core.tool import ToolContext
class SqlRunner(ABC):
... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:11.044267 | """UI Component system for Vanna Agents."""
# Base component
from .base import UiComponent
# Simple components
from .simple import (
SimpleComponent,
SimpleComponentType,
SimpleTextComponent,
SimpleImageComponent,
SimpleLinkComponent,
)
# Rich components - re-export all
from .rich import (
# ... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/rich/containers/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:11.045140 | """Container components for layout."""
from .card import CardComponent
__all__ = [
"CardComponent",
]
|
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/capabilities/sql_runner/models.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:11.046012 | """
SQL runner capability models.
This module contains data models for SQL execution.
"""
from pydantic import BaseModel, Field
class RunSqlToolArgs(BaseModel):
"""Arguments for run_sql tool."""
sql: str = Field(description="SQL query to execute")
|
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/base.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:11.050283 | """
UI components base - re-exports UiComponent from core.
UiComponent lives in core/ because it's a fundamental return type for tools.
This module provides backward compatibility by re-exporting it here.
"""
# Re-export UiComponent from core for backward compatibility
from ..core.components import UiComponent
__all... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/rich/data/chart.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:11.487076 | """Chart component for data visualization."""
from typing import Any, Dict, Optional, Union
from pydantic import Field
from ....core.rich_component import RichComponent, ComponentType
class ChartComponent(RichComponent):
"""Chart component for data visualization."""
type: ComponentType = ComponentType.CHART... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/rich/containers/card.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:11.494013 | """Card component for displaying structured information."""
from typing import Any, Dict, List, Optional
from pydantic import Field
from ....core.rich_component import RichComponent, ComponentType
class CardComponent(RichComponent):
"""Card component for displaying structured information."""
type: Component... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/rich/data/dataframe.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:11.496691 | """DataFrame component for displaying tabular data."""
from typing import Any, Dict, List, Optional
from pydantic import Field
from ....core.rich_component import RichComponent, ComponentType
class DataFrameComponent(RichComponent):
"""DataFrame component specifically for displaying tabular data from SQL queries... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/rich/data/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:11.608119 | """Data display components."""
from .dataframe import DataFrameComponent
from .chart import ChartComponent
__all__ = [
"DataFrameComponent",
"ChartComponent",
]
|
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/rich/feedback/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:11.663345 | """User feedback components."""
from .notification import NotificationComponent
from .status_card import StatusCardComponent
from .progress import ProgressBarComponent, ProgressDisplayComponent
from .status_indicator import StatusIndicatorComponent
from .log_viewer import LogViewerComponent, LogEntry
from .badge impor... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/rich/feedback/log_viewer.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:11.665041 | """Log viewer component."""
import uuid
from datetime import datetime
from typing import Any, Dict, List, Optional
from pydantic import BaseModel, Field
from ....core.rich_component import RichComponent, ComponentType
class LogEntry(BaseModel):
"""Log entry for tool execution."""
timestamp: str = Field(defa... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/rich/feedback/progress.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:11.695191 | """Progress components for displaying progress indicators."""
from typing import Any, Dict, Optional
from ....core.rich_component import RichComponent, ComponentType
class ProgressBarComponent(RichComponent):
"""Progress bar with status and value."""
type: ComponentType = ComponentType.PROGRESS_BAR
valu... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/rich/feedback/badge.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:11.735647 | """Badge component for displaying status or labels."""
from typing import Optional
from ....core.rich_component import RichComponent, ComponentType
class BadgeComponent(RichComponent):
"""Simple badge/pill component for displaying status or labels."""
type: ComponentType = ComponentType.BADGE
text: str
... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/rich/feedback/icon_text.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:11.760721 | """Icon with text component."""
from ....core.rich_component import RichComponent, ComponentType
class IconTextComponent(RichComponent):
"""Simple component for displaying an icon with text."""
type: ComponentType = ComponentType.ICON_TEXT
icon: str
text: str
variant: str = "default" # "default... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/rich/feedback/notification.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:11.773846 | """Notification component for alerts and messages."""
from typing import Any, Dict, List, Optional
from pydantic import Field
from ....core.rich_component import RichComponent, ComponentType
class NotificationComponent(RichComponent):
"""Notification component for alerts and messages."""
type: ComponentType... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/rich/interactive/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:12.322052 | """Interactive components."""
from .task_list import TaskListComponent, Task
from .ui_state import (
StatusBarUpdateComponent,
TaskTrackerUpdateComponent,
ChatInputUpdateComponent,
TaskOperation,
)
from .button import ButtonComponent, ButtonGroupComponent
__all__ = [
"TaskListComponent",
"Task... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/rich/feedback/status_indicator.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:12.382208 | """Status indicator component."""
from typing import Optional
from ....core.rich_component import RichComponent, ComponentType
class StatusIndicatorComponent(RichComponent):
"""Status indicator with icon and message."""
type: ComponentType = ComponentType.STATUS_INDICATOR
status: str # "success", "warn... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/rich/interactive/button.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:12.390923 | """Button component for interactive actions."""
from typing import Any, Dict, List, Literal, Optional
from ....core.rich_component import ComponentType, RichComponent
class ButtonComponent(RichComponent):
"""Interactive button that sends a message when clicked.
The button renders in the UI and when clicked,... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/rich/interactive/ui_state.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:12.415616 | """UI state update components for controlling interface elements."""
from enum import Enum
from typing import Any, Optional
from .task_list import Task
from ....core.rich_component import RichComponent, ComponentType
class StatusBarUpdateComponent(RichComponent):
"""Component for updating the status bar above ch... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/rich/feedback/status_card.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:12.784906 | """Status card component for displaying process status."""
from typing import Any, Dict, List, Optional
from pydantic import Field
from ....core.rich_component import RichComponent, ComponentType
class StatusCardComponent(RichComponent):
"""Generic status card that can display any process status."""
type: C... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/simple/link.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:12.968769 | """Simple link component."""
from typing import Optional
from pydantic import Field
from ...core.simple_component import SimpleComponent, SimpleComponentType
class SimpleLinkComponent(SimpleComponent):
"""A simple link component."""
type: SimpleComponentType = SimpleComponentType.LINK
url: str = Field(.... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/simple/text.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:12.989198 | """Simple text component."""
from pydantic import Field
from ...core.simple_component import SimpleComponent, SimpleComponentType
class SimpleTextComponent(SimpleComponent):
"""A simple text component."""
type: SimpleComponentType = SimpleComponentType.TEXT
text: str = Field(..., description="The text c... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/core/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:12.990501 | """
Core components of the Vanna Agents framework.
This package contains the fundamental abstractions and implementations
that form the foundation of the agent framework.
"""
# Core domains - re-export from new structure
from .tool import T, Tool, ToolCall, ToolContext, ToolResult, ToolSchema
from .llm import LlmMess... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/simple/image.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:13.021995 | """Simple image component."""
from typing import Optional
from pydantic import Field
from ...core.simple_component import SimpleComponent, SimpleComponentType
class SimpleImageComponent(SimpleComponent):
"""A simple image component."""
type: SimpleComponentType = SimpleComponentType.IMAGE
url: str = Fie... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/rich/interactive/task_list.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:13.080456 | """Task list component for interactive task tracking."""
import uuid
from datetime import datetime
from typing import Any, Dict, List, Optional
from pydantic import BaseModel, Field
from ....core.rich_component import RichComponent, ComponentType
class Task(BaseModel):
"""Individual task in a task list."""
... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/rich/specialized/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:13.808038 | """Specialized components."""
from .artifact import ArtifactComponent
__all__ = [
"ArtifactComponent",
]
|
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/core/_compat.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:13.900597 | """
Compatibility shims for different Python versions.
This module provides compatibility utilities for features that vary across
Python versions.
"""
try:
from enum import StrEnum # Py 3.11+
except ImportError: # Py < 3.11
from enum import Enum
class StrEnum(str, Enum): # type: ignore[no-redef]
... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/rich/specialized/artifact.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:13.979922 | """Artifact component for interactive content."""
import uuid
from typing import Optional
from pydantic import Field
from ....core.rich_component import RichComponent, ComponentType
class ArtifactComponent(RichComponent):
"""Component for displaying interactive artifacts that can be rendered externally."""
... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/rich/text.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:14.127241 | """Rich text component."""
from typing import Optional
from ...core.rich_component import RichComponent, ComponentType
class RichTextComponent(RichComponent):
"""Rich text component with formatting options."""
type: ComponentType = ComponentType.TEXT
content: str
markdown: bool = False
code_lang... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/components/simple/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:14.272701 | """Simple UI components for basic rendering."""
# Import from core
from ...core.simple_component import SimpleComponent, SimpleComponentType
from .text import SimpleTextComponent
from .image import SimpleImageComponent
from .link import SimpleLinkComponent
__all__ = [
"SimpleComponent",
"SimpleComponentType",... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/core/agent/agent.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:14.589200 | """
Agent implementation for the Vanna Agents framework.
This module provides the main Agent class that orchestrates the interaction
between LLM services, tools, and conversation storage.
"""
import traceback
import uuid
from typing import TYPE_CHECKING, AsyncGenerator, List, Optional
from vanna.components import (
... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/core/agent/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:14.608780 | """
Agent module.
This module contains the core Agent implementation and configuration.
"""
from .agent import Agent
from .config import AgentConfig
__all__ = ["Agent", "AgentConfig"]
|
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/core/audit/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:14.665441 | """
Audit logging for the Vanna Agents framework.
This module provides interfaces and models for audit logging, enabling
tracking of user actions, tool invocations, and access control decisions.
"""
from .base import AuditLogger
from .models import (
AiResponseEvent,
AuditEvent,
AuditEventType,
ToolAc... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/core/agent/config.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:14.694774 | """
Agent configuration.
This module contains configuration models that control agent behavior.
"""
from typing import TYPE_CHECKING, Dict, List, Optional
from pydantic import BaseModel, Field
from .._compat import StrEnum
if TYPE_CHECKING:
from ..user import User
class UiFeature(StrEnum):
UI_FEATURE_SHO... |
vanna-ai/vanna | https://github.com/vanna-ai/vanna | null | null | null | null | 23,366 | null | null | mit | null | null | null | null | null | null | null | src/vanna/core/audit/base.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:18.824225 | """
Base audit logger interface.
Audit loggers enable tracking user actions, tool invocations, and access control
decisions for security, compliance, and debugging.
"""
import hashlib
from abc import ABC, abstractmethod
from datetime import datetime
from typing import TYPE_CHECKING, Any, Dict, List, Optional
from .m... |
jhao104/proxy_pool | https://github.com/jhao104/proxy_pool | null | null | null | null | 23,322 | null | null | mit | null | null | null | null | null | null | null | db/dbClient.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:21.173797 | # -*- coding: utf-8 -*-
# !/usr/bin/env python
"""
-------------------------------------------------
File Name: DbClient.py
Description : DB工厂类
Author : JHao
date: 2016/12/2
-------------------------------------------------
Change Activity:
2016/12/02: DB工厂类
... |
jhao104/proxy_pool | https://github.com/jhao104/proxy_pool | null | null | null | null | 23,322 | null | null | mit | null | null | null | null | null | null | null | handler/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:21.174492 | # -*- coding: utf-8 -*-
"""
-------------------------------------------------
File Name: __init__.py
Description :
Author : JHao
date: 2016/12/3
-------------------------------------------------
Change Activity:
2016/12/3:
-----------------------------------------... |
jhao104/proxy_pool | https://github.com/jhao104/proxy_pool | null | null | null | null | 23,322 | null | null | mit | null | null | null | null | null | null | null | docs/conf.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:21.176617 | # Configuration file for the Sphinx documentation builder.
#
# This file only contains a selection of the most common options. For a full
# list see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
# -- Path setup --------------------------------------------------------------
# If ex... |
jhao104/proxy_pool | https://github.com/jhao104/proxy_pool | null | null | null | null | 23,322 | null | null | mit | null | null | null | null | null | null | null | db/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:21.178563 | # -*- coding: utf-8 -*-
"""
-------------------------------------------------
File Name: __init__.py.py
Description :
Author : JHao
date: 2016/12/2
-------------------------------------------------
Change Activity:
2016/12/2:
------------------------------------... |
jhao104/proxy_pool | https://github.com/jhao104/proxy_pool | null | null | null | null | 23,322 | null | null | mit | null | null | null | null | null | null | null | db/ssdbClient.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:21.179604 | # -*- coding: utf-8 -*-
# !/usr/bin/env python
"""
-------------------------------------------------
File Name: ssdbClient.py
Description : 封装SSDB操作
Author : JHao
date: 2016/12/2
-------------------------------------------------
Change Activity:
2016/12/2:
... |
jhao104/proxy_pool | https://github.com/jhao104/proxy_pool | null | null | null | null | 23,322 | null | null | mit | null | null | null | null | null | null | null | fetcher/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:21.181160 | # -*- coding: utf-8 -*-
"""
-------------------------------------------------
File Name: __init__.py
Description :
Author : JHao
date: 2016/11/25
-------------------------------------------------
Change Activity:
2016/11/25:
---------------------------------------... |
jhao104/proxy_pool | https://github.com/jhao104/proxy_pool | null | null | null | null | 23,322 | null | null | mit | null | null | null | null | null | null | null | api/proxyApi.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:21.183677 | # -*- coding: utf-8 -*-
# !/usr/bin/env python
"""
-------------------------------------------------
File Name: ProxyApi.py
Description : WebApi
Author : JHao
date: 2016/12/4
-------------------------------------------------
Change Activity:
2016/12/04: WebApi
... |
jhao104/proxy_pool | https://github.com/jhao104/proxy_pool | null | null | null | null | 23,322 | null | null | mit | null | null | null | null | null | null | null | db/redisClient.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:21.186625 | # -*- coding: utf-8 -*-
"""
-----------------------------------------------------
File Name: redisClient.py
Description : 封装Redis相关操作
Author : JHao
date: 2019/8/9
------------------------------------------------------
Change Activity:
2019/08/09: 封装Redis相关操作
... |
jhao104/proxy_pool | https://github.com/jhao104/proxy_pool | null | null | null | null | 23,322 | null | null | mit | null | null | null | null | null | null | null | api/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:21.188182 | # -*- coding: utf-8 -*-
"""
-------------------------------------------------
File Name: __init__.py
Description :
Author : JHao
date: 2016/12/3
-------------------------------------------------
Change Activity:
2016/12/3:
---------------------------------------... |
jhao104/proxy_pool | https://github.com/jhao104/proxy_pool | null | null | null | null | 23,322 | null | null | mit | null | null | null | null | null | null | null | fetcher/proxyFetcher.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:21.189585 | # -*- coding: utf-8 -*-
"""
-------------------------------------------------
File Name: proxyFetcher
Description :
Author : JHao
date: 2016/11/25
-------------------------------------------------
Change Activity:
2016/11/25: proxyFetcher
---------------------------... |
jhao104/proxy_pool | https://github.com/jhao104/proxy_pool | null | null | null | null | 23,322 | null | null | mit | null | null | null | null | null | null | null | helper/check.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:22.271043 | # -*- coding: utf-8 -*-
"""
-------------------------------------------------
File Name: check
Description : 执行代理校验
Author : JHao
date: 2019/8/6
-------------------------------------------------
Change Activity:
2019/08/06: 执行代理校验
2021/05/25: 分别... |
jhao104/proxy_pool | https://github.com/jhao104/proxy_pool | null | null | null | null | 23,322 | null | null | mit | null | null | null | null | null | null | null | handler/logHandler.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:22.272072 | # -*- coding: utf-8 -*-
"""
-------------------------------------------------
File Name: LogHandler.py
Description : 日志操作模块
Author : JHao
date: 2017/3/6
-------------------------------------------------
Change Activity:
2017/03/06: log handler
201... |
jhao104/proxy_pool | https://github.com/jhao104/proxy_pool | null | null | null | null | 23,322 | null | null | mit | null | null | null | null | null | null | null | handler/configHandler.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:22.273588 | # -*- coding: utf-8 -*-
"""
-------------------------------------------------
File Name: configHandler
Description :
Author : JHao
date: 2020/6/22
-------------------------------------------------
Change Activity:
2020/6/22:
-----------------------------------------... |
jhao104/proxy_pool | https://github.com/jhao104/proxy_pool | null | null | null | null | 23,322 | null | null | mit | null | null | null | null | null | null | null | helper/launcher.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:22.274797 | # -*- coding: utf-8 -*-
"""
-------------------------------------------------
File Name: launcher
Description : 启动器
Author : JHao
date: 2021/3/26
-------------------------------------------------
Change Activity:
2021/3/26: 启动器
------------------------------------... |
jhao104/proxy_pool | https://github.com/jhao104/proxy_pool | null | null | null | null | 23,322 | null | null | mit | null | null | null | null | null | null | null | handler/proxyHandler.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:22.276043 | # -*- coding: utf-8 -*-
"""
-------------------------------------------------
File Name: ProxyHandler.py
Description :
Author : JHao
date: 2016/12/3
-------------------------------------------------
Change Activity:
2016/12/03:
2020/05/26: 区分http和h... |
jhao104/proxy_pool | https://github.com/jhao104/proxy_pool | null | null | null | null | 23,322 | null | null | mit | null | null | null | null | null | null | null | helper/fetch.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:22.297978 | # -*- coding: utf-8 -*-
"""
-------------------------------------------------
File Name: fetchScheduler
Description :
Author : JHao
date: 2019/8/6
-------------------------------------------------
Change Activity:
2021/11/18: 多线程采集
----------------------------------... |
jhao104/proxy_pool | https://github.com/jhao104/proxy_pool | null | null | null | null | 23,322 | null | null | mit | null | null | null | null | null | null | null | helper/proxy.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:22.549936 | # -*- coding: utf-8 -*-
"""
-------------------------------------------------
File Name: Proxy
Description : 代理对象类型封装
Author : JHao
date: 2019/7/11
-------------------------------------------------
Change Activity:
2019/7/11: 代理对象类型封装
-----------------------------... |
jhao104/proxy_pool | https://github.com/jhao104/proxy_pool | null | null | null | null | 23,322 | null | null | mit | null | null | null | null | null | null | null | test/__init__.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:23.534449 | # -*- coding: utf-8 -*-
"""
-------------------------------------------------
File Name: __init__
Description :
Author : JHao
date: 2019/2/15
-------------------------------------------------
Change Activity:
2019/2/15:
----------------------------------------------... |
jhao104/proxy_pool | https://github.com/jhao104/proxy_pool | null | null | null | null | 23,322 | null | null | mit | null | null | null | null | null | null | null | test/testDbClient.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:23.535725 | # -*- coding: utf-8 -*-
"""
-------------------------------------------------
File Name: testDbClient
Description :
Author : JHao
date: 2020/6/23
-------------------------------------------------
Change Activity:
2020/6/23:
------------------------------------------... |
jhao104/proxy_pool | https://github.com/jhao104/proxy_pool | null | null | null | null | 23,322 | null | null | mit | null | null | null | null | null | null | null | test/testLogHandler.py | null | null | null | null | null | null | Python | 2026-05-04T02:29:23.536822 | # -*- coding: utf-8 -*-
"""
-------------------------------------------------
File Name: testLogHandler
Description :
Author : J_hao
date: 2017/8/2
-------------------------------------------------
Change Activity:
2017/8/2:
-----------------------------------------... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.