code
stringlengths
1
1.05M
repo_name
stringlengths
6
83
path
stringlengths
3
242
language
stringclasses
222 values
license
stringclasses
20 values
size
int64
1
1.05M
# Define here the models for your spider middleware # # See documentation in: # https://docs.scrapy.org/en/latest/topics/spider-middleware.html from scrapy import signals # useful for handling different item types with a single interface from itemadapter import is_item, ItemAdapter class SpiderQunaerSpiderMiddlewar...
2301_78696cqk/Django_pyecharts_scrapy
scenery_spider_web-main/spider_qunaer/middlewares.py
Python
unknown
3,660
# Define your item pipelines here # # Don't forget to add your pipeline to the ITEM_PIPELINES setting # See: https://docs.scrapy.org/en/latest/topics/item-pipeline.html # useful for handling different item types with a single interface import pandas as pd import pymysql from sqlalchemy import create_engine, NVARCHAR...
2301_78696cqk/Django_pyecharts_scrapy
scenery_spider_web-main/spider_qunaer/pipelines.py
Python
unknown
634
# Scrapy settings for spider_qunaer project # # For simplicity, this file contains only settings considered important or # commonly used. You can find more settings consulting the documentation: # # https://docs.scrapy.org/en/latest/topics/settings.html # https://docs.scrapy.org/en/latest/topics/downloader-midd...
2301_78696cqk/Django_pyecharts_scrapy
scenery_spider_web-main/spider_qunaer/settings.py
Python
unknown
3,447
# This package will contain the spiders of your Scrapy project # # Please refer to the documentation for information on how to create and manage # your spiders.
2301_78696cqk/Django_pyecharts_scrapy
scenery_spider_web-main/spider_qunaer/spiders/__init__.py
Python
unknown
161
from copy import deepcopy import scrapy from scrapy import Selector from spider_qunaer import items from warehouse import models class QunaerSpider(scrapy.Spider): name = 'qunaer' start_urls = ['https://travel.qunar.com/p-cs298890-xian-jingdian'] page_num = 1 def parse(self, response): item_s...
2301_78696cqk/Django_pyecharts_scrapy
scenery_spider_web-main/spider_qunaer/spiders/qunaer.py
Python
unknown
5,066
from django.contrib import admin # Register your models here.
2301_78696cqk/Django_pyecharts_scrapy
scenery_spider_web-main/warehouse/admin.py
Python
unknown
63
from django.apps import AppConfig class WarehouseConfig(AppConfig): default_auto_field = 'django.db.models.BigAutoField' name = 'warehouse'
2301_78696cqk/Django_pyecharts_scrapy
scenery_spider_web-main/warehouse/apps.py
Python
unknown
150
from django.db import models # Create your models here. class Evaluate(models.Model): eid = models.AutoField(primary_key=True) content = models.TextField(blank=True, null=True) send_time = models.DateField(blank=True, null=True) user_name = models.CharField(max_length=32, blank=True, null=True) s...
2301_78696cqk/Django_pyecharts_scrapy
scenery_spider_web-main/warehouse/models.py
Python
unknown
2,186
from django.test import TestCase # Create your tests here.
2301_78696cqk/Django_pyecharts_scrapy
scenery_spider_web-main/warehouse/tests.py
Python
unknown
60
from django.shortcuts import render # Create your views here.
2301_78696cqk/Django_pyecharts_scrapy
scenery_spider_web-main/warehouse/views.py
Python
unknown
63
# Define here the models for your scraped items # # See documentation in: # https://docs.scrapy.org/en/latest/topics/items.html import scrapy class XianPoiItem(scrapy.Item): # define the fields for your item here like: # name = scrapy.Field() pass
2301_78696cqk/Django_pyecharts_scrapy
xian_poi/xian_poi/items.py
Python
unknown
263
# Define here the models for your spider middleware # # See documentation in: # https://docs.scrapy.org/en/latest/topics/spider-middleware.html from scrapy import signals # useful for handling different item types with a single interface from itemadapter import is_item, ItemAdapter class XianPoiSpiderMiddleware: ...
2301_78696cqk/Django_pyecharts_scrapy
xian_poi/xian_poi/middlewares.py
Python
unknown
3,650
# Define your item pipelines here # # Don't forget to add your pipeline to the ITEM_PIPELINES setting # See: https://docs.scrapy.org/en/latest/topics/item-pipeline.html # useful for handling different item types with a single interface import json import pymysql from itemadapter import ItemAdapter from scrapy.excepti...
2301_78696cqk/Django_pyecharts_scrapy
xian_poi/xian_poi/pipelines.py
Python
unknown
5,075
# Scrapy settings for xian_poi project # # For simplicity, this file contains only settings considered important or # commonly used. You can find more settings consulting the documentation: # # https://docs.scrapy.org/en/latest/topics/settings.html # https://docs.scrapy.org/en/latest/topics/downloader-middlewar...
2301_78696cqk/Django_pyecharts_scrapy
xian_poi/xian_poi/settings.py
Python
unknown
3,575
# This package will contain the spiders of your Scrapy project # # Please refer to the documentation for information on how to create and manage # your spiders.
2301_78696cqk/Django_pyecharts_scrapy
xian_poi/xian_poi/spiders/__init__.py
Python
unknown
161
import scrapy import json import urllib.parse import pymysql from scrapy.utils.project import get_project_settings from scrapy.exceptions import CloseSpider class BaiduMapSpider(scrapy.Spider): name = 'baidu_map' allowed_domains = ['api.map.baidu.com'] custom_settings = { 'ITEM_PIPELINES': { ...
2301_78696cqk/Django_pyecharts_scrapy
xian_poi/xian_poi/spiders/baidu_map.py
Python
unknown
3,888
import pandas as pd # 读取 user_profiles.csv 文件 df = pd.read_csv('user_profiles.csv') # 查看所有列名称 print("列名称列表:") print(df.columns.tolist()) # 查看前5行数据(可选) print("\n示例数据:") print(df.head())
2301_78696cqk/Django_pyecharts_scrapy
xian_poi/数据处理/csv_col.py
Python
unknown
251
import pandas as pd import re # 假设数据已加载到DataFrame中 df = pd.read_csv('warehouse_scenery.csv') def convert_playtime_to_hours(play_time): if pd.isna(play_time): return None # 处理缺失值 # 尝试处理范围值(如"3小时 - 4小时") if '-' in str(play_time): times = str(play_time).split('-') start = parse_sin...
2301_78696cqk/Django_pyecharts_scrapy
xian_poi/数据处理/data_clean.py
Python
unknown
1,666
import pymysql import csv conn = pymysql.connect(host='localhost', user='root', password='123456', db='xian_web', charset='utf8mb4') with conn.cursor() as cursor: cursor.execute("SELECT * FROM warehouse_xian_poi") with open('warehouse_xian_poi.csv', 'w', encoding='utf-8', newline='') as ...
2301_78696cqk/Django_pyecharts_scrapy
xian_poi/数据处理/data_export.py
Python
unknown
459
import pandas as pd import matplotlib.pyplot as plt from matplotlib import font_manager # 1. 字体配置(解决中文显示问题) plt.rcParams['font.sans-serif'] = ['Microsoft YaHei'] # 更美观的字体 plt.rcParams['axes.unicode_minus'] = False # 2. 数据读取与处理 file_path = 'warehouse_xian_poi.csv' df = pd.read_csv(file_path) type_proportions = df['ty...
2301_78696cqk/Django_pyecharts_scrapy
xian_poi/数据处理/get_unique.py
Python
unknown
2,719
import pandas as pd # 读取 CSV 文件 df = pd.read_csv('warehouse_evaluate.csv') # 确保 send_time 是 datetime 类型(如果不是,先转换) df['send_time'] = pd.to_datetime(df['send_time']) # 计算最小和最大时间 min_time = df['send_time'].min() max_time = df['send_time'].max() print(f"最小值(最早时间): {min_time}") print(f"最大值(最晚时间): {max_time}")
2301_78696cqk/Django_pyecharts_scrapy
xian_poi/数据处理/timespan.py
Python
unknown
401
import pandas as pd from sklearn.feature_extraction.text import CountVectorizer from sklearn.decomposition import LatentDirichletAllocation # 读取用户评价数据 user_data = pd.read_csv('warehouse_evaluate.csv') # 文本向量化 vectorizer = CountVectorizer(stop_words='english') X = vectorizer.fit_transform(user_data['content']) # LDA模...
2301_78696cqk/Django_pyecharts_scrapy
xian_poi/用户画像建模和分析/comment_lda.py
Python
unknown
633
# -*- coding: utf-8 -*- import pandas as pd import ast from collections import Counter import matplotlib.pyplot as plt import seaborn as sns # 设置中文显示 plt.rcParams['font.sans-serif'] = ['SimHei'] plt.rcParams['axes.unicode_minus'] = False # ==================== 1. 数据加载与预处理 ==================== def load_data(file_path...
2301_78696cqk/Django_pyecharts_scrapy
xian_poi/用户画像建模和分析/user_cluster_res.py
Python
unknown
5,211
# -*- coding: utf-8 -*- """ 用户画像分析系统 - 最终修正版 """ # ==================== 1. 导入所有必需库 ==================== from collections import Counter from wordcloud import WordCloud import pandas as pd import numpy as np import jieba import re import matplotlib.pyplot as plt from datetime import datetime from sklearn.feature_extra...
2301_78696cqk/Django_pyecharts_scrapy
xian_poi/用户画像建模和分析/user_profile.py
Python
unknown
9,502
# -*- coding: utf-8 -*- import pandas as pd import numpy as np import matplotlib.pyplot as plt from scipy.stats import gaussian_kde from matplotlib.patches import Ellipse import cartopy.crs as ccrs import cartopy.feature as cfeature from pyproj import Transformer import geopandas as gpd from shapely.geometry import Poi...
2301_78696cqk/Django_pyecharts_scrapy
xian_poi/空间分析/sce_clu_all.py
Python
unknown
6,498
# -*- coding: utf-8 -*- import pandas as pd import numpy as np import matplotlib.pyplot as plt from scipy.stats import gaussian_kde from matplotlib.patches import Ellipse import cartopy.crs as ccrs import cartopy.feature as cfeature from pyproj import Transformer from sklearn.cluster import DBSCAN from libpysal.weights...
2301_78696cqk/Django_pyecharts_scrapy
xian_poi/空间分析/sce_cluster.py
Python
unknown
6,950
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>推荐路线</title> <style> body { font-family: Arial, sans-serif; margin: 20px; } .route-step { margin-bottom: 15px; padding: 10px; background: #f5f5f5; border-radius: 5px; } .step-instruction { font-weight: bold; } ...
2301_78696cqk/Django_pyecharts_scrapy
xian_poi/路线推荐/hudong.html
HTML
unknown
4,103
import requests def get_route(start_location, end_location, ak): url = f"http://api.map.baidu.com/direction/v2/transit?origin={start_location}&destination={end_location}&ak={ak}" response = requests.get(url) return response.json() # 示例调用 start = "34.105781,109.343251" # 蓝关古道的位置 end = "34.123456,109.12345...
2301_78696cqk/Django_pyecharts_scrapy
xian_poi/路线推荐/route_rec.py
Python
unknown
431
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="author" content="送心"> <meta name="description" content="这是送心的测试网站,用于展示基本的HTML结构。"> <meta name="keywords" content="送心, 测试网站, HTML, 示例"> <title>...
2301_79851282/frontend
00HTML基础/index.html
HTML
unknown
2,890
.rgb{ color:rgb(240, 6, 6); } .hex{ color: #eb46e0;; } .background-color { background-color: #eb5620; } .border-color { border:3px solid #665620; } .text-opacity { color:rgba(235,70,224,0.2); } .opacity { opacity:0.5; }
2301_79851282/frontend
01CSS/02颜色/global.css
CSS
unknown
273
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="stylesheet" href="global.css"> </head> <body> <!--颜色,这里介绍RGB和Hex两种--> <div class="rgb">用RGB表示颜色</div> <div class...
2301_79851282/frontend
01CSS/02颜色/index.html
HTML
unknown
600
@font-face { font-family: "MaShanZheng"; src: url("./MaShanZheng-Regual.ttf"); } .text-1 { font-family: MaShanZheng, 'sans-serif'; } .text-2 { font-size: 24px; line-height: 32px; } .text-3 { font-weight: 700; font-style: italic; text-decoration: line-through; }
2301_79851282/frontend
01CSS/03文本/global.css
CSS
unknown
314
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="stylesheet" href="global.css" type="text/css"> </head> <body> <!--文本--> <p class="text-1">文本样式1</p> <p class="te...
2301_79851282/frontend
01CSS/03文本/index.html
HTML
unknown
414
.box-model { /* margin-right: 18px; padding-top: 8px; */ /* margin: 6px 12px; */ margin: 12px 8px 24px 16px; /* 边框*/ border: 2px solid black; /*宽度和高度*/ width: 80px; height: 120px; }
2301_79851282/frontend
01CSS/04盒子模型/global.css
CSS
unknown
262
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="stylesheet" href="global.css" type="text/css"> </head> <body> <div class="box-model">盒子模型</div> </body> </html>
2301_79851282/frontend
01CSS/04盒子模型/index.html
HTML
unknown
319
.inline { display: inline; } .inline-block { display: inline-block; width: 100px; height:220px; background-color: lightblue; } .none { display: none; }
2301_79851282/frontend
01CSS/05布局/global.css
CSS
unknown
190
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="stylesheet" href="global.css"> </head> <body> <div class="inline">我会独占一行</div> <p class="inline">我会独占一行</p> <h1 ...
2301_79851282/frontend
01CSS/05布局/index.html
HTML
unknown
594
.flex { display: flex; /* flex-direction: column; */ height: 120px; background-color: blue; justify-content: flex-end; align-items:first end; } /* .item { flex: 1px; } .item-2 { flex:2px } */
2301_79851282/frontend
01CSS/06弹性布局/global.css
CSS
unknown
260
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="stylesheet" href="global.css"> </head> <body> <div class="flex"> <div class="item">项目</div> <div class="...
2301_79851282/frontend
01CSS/06弹性布局/index.html
HTML
unknown
416
.grid { display: grid; /* grid-template-rows: 100px 200px 300px; grid-template-columns: 1fr 2fr; */ grid-template-columns: repeat(4,1fr); grid-auto-flow: 100px; grid-auto-columns: 1fr; grid-gap: 12px; }
2301_79851282/frontend
01CSS/07网格布局/global.css
CSS
unknown
240
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="stylesheet" href="global.css"> </head> <body> <!--网格布局--> <div class="grid"> <div>网格项目</div> <div>网...
2301_79851282/frontend
01CSS/07网格布局/index.html
HTML
unknown
717
/* .static { position:static; } */ .relative { position:relative; height: 200px; background-color: violet; } .absolute { position:absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
2301_79851282/frontend
01CSS/08定位/global.css
CSS
unknown
245
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="stylesheet" href="global.css"> </head> <body> <!--定位--> <div class="relative"> <div class="absolute">图片</div...
2301_79851282/frontend
01CSS/08定位/index.html
HTML
unknown
443
h4 { color: red; } .class{ color: aqua; } #id{ color: black; } .purple{ color: purple; } .orange{ color: orange; } .yellow{ color: yellow; } .red{ color: red; } /* .parent .child{ color: aquamarine; } */ .parent{ .child{ color: aq...
2301_79851282/frontend
01CSS/选择器/global.css
CSS
unknown
456
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="stylesheet" href="global.css" type="text/css"> </head> <body> <!--元素选择器,类选择器,ID选择器--> <h4>元素选择器</h4> <p class="c...
2301_79851282/frontend
01CSS/选择器/index.html
HTML
unknown
1,180
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="stylesheet" href="./main.css"> </head> <body> <h1>Coffee Order</h1> <ul id="orders"> <!-- <li class="order" id="1"> ...
2301_79534346/CoffeeOrder
CoffeeOrder/CoffeeOrder/src/public/index.html
HTML
apache-2.0
1,811
* { padding: 0; margin: 10px; } #orders { list-style-type: none; margin: 0; } #orders .order { background-color: #c4c4c4; padding: 5px; } #orders .nonedit { display: none; } #orders .edit { display: none; } button { padding: 5px 10px; }
2301_79534346/CoffeeOrder
CoffeeOrder/CoffeeOrder/src/public/main.css
CSS
apache-2.0
277
$(function () { let $name = $('#name') let $drink = $('#drink') let $orders = $('#orders') function addOrder(order) { $orders.append(`<li class="order" id="${order.id}"> <p> Name: <span class="name">${order.name}</span> <input type="text" class="na...
2301_79534346/CoffeeOrder
CoffeeOrder/CoffeeOrder/src/public/script.js
JavaScript
apache-2.0
4,073
package cc.lecaicai.mcp.server.computer; import cc.lecaicai.mcp.server.computer.domain.service.ComputerService; import lombok.extern.slf4j.Slf4j; import org.springframework.ai.tool.ToolCallbackProvider; import org.springframework.ai.tool.method.MethodToolCallbackProvider; import org.springframework.boot.CommandLineRun...
2301_79945976/mcp-server-computer
src/main/java/cc/lecaicai/mcp/server/computer/McpServerComputerApplication.java
Java
unknown
1,263
package cc.lecaicai.mcp.server.computer.domain.model; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonPropertyDescription; import lombok.Data; @Data @JsonInclude(JsonInclude.Include.NON_NULL)//这个注解是干嘛用的 public class...
2301_79945976/mcp-server-computer
src/main/java/cc/lecaicai/mcp/server/computer/domain/model/ComputerFunctionRequest.java
Java
unknown
583
package cc.lecaicai.mcp.server.computer.domain.model; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonPropertyDescription; import lombok.Data; //同样也解释一下这个类是干啥的 @Data @JsonInclude(JsonInclude.Include.NON_NULL) public...
2301_79945976/mcp-server-computer
src/main/java/cc/lecaicai/mcp/server/computer/domain/model/ComputerFunctionResponse.java
Java
unknown
1,481
package cc.lecaicai.mcp.server.computer.domain.service; import cc.lecaicai.mcp.server.computer.domain.model.ComputerFunctionRequest; import cc.lecaicai.mcp.server.computer.domain.model.ComputerFunctionResponse; import lombok.extern.slf4j.Slf4j; import org.springframework.ai.tool.annotation.Tool; import org.springfram...
2301_79945976/mcp-server-computer
src/main/java/cc/lecaicai/mcp/server/computer/domain/service/ComputerService.java
Java
unknown
4,125
package cn.bugstack.knowledge; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } }
2301_79945976/mcp-project
ai-mcp-knowledge-app/src/main/java/cn/bugstack/knowledge/Application.java
Java
unknown
314
package cn.bugstack.knowledge.config; import org.springframework.ai.ollama.OllamaEmbeddingModel; import org.springframework.ai.ollama.api.OllamaApi; import org.springframework.ai.ollama.api.OllamaOptions; import org.springframework.ai.vectorstore.SimpleVectorStore; import org.springframework.ai.vectorstore.pgvector.Pg...
2301_79945976/mcp-project
ai-mcp-knowledge-app/src/main/java/cn/bugstack/knowledge/config/OllamaConfig.java
Java
unknown
1,963
package cn.bugstack.knowledge.config; import io.micrometer.observation.ObservationRegistry; import org.springframework.ai.chat.client.ChatClient; import org.springframework.ai.chat.client.DefaultChatClientBuilder; import org.springframework.ai.chat.client.observation.ChatClientObservationConvention; import org.springf...
2301_79945976/mcp-project
ai-mcp-knowledge-app/src/main/java/cn/bugstack/knowledge/config/OpenAIConfig.java
Java
unknown
2,607
curl http://117.72.115.188:11434/api/generate \ -H "Content-Type: application/json" \ -d '{ "model": "deepseek-r1:1.5b", "prompt": "1+1", "stream": false }'
2301_79945976/mcp-project
docs/dev-ops/api/curl_local.sh
Shell
unknown
190
curl http://58a39caa684c41bf9bed-deepseek-r1-llm-api.gcs-xy1a.jdcloud.com/api/generate \ -H "Content-Type: application/json" \ -d '{ "model": "deepseek-r1:1.5b", "prompt": "1+1", "stream": false }'
2301_79945976/mcp-project
docs/dev-ops/api/curl_yun.sh
Shell
unknown
231
.chat-item { @apply flex items-center gap-2 p-2 hover:bg-gray-100 rounded cursor-pointer transition-colors; } .chat-item.selected { @apply bg-blue-50; /* 或使用深色背景如bg-gray-200 */ } .chat-item-content { @apply flex-1 truncate; } .chat-actions { @apply flex items-center justify-end opacity-0 ...
2301_79945976/mcp-project
docs/dev-ops/nginx/html/css/index.css
CSS
unknown
2,351
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>解析仓库</title> <style> body { font-family: 'Microsoft YaHei', '微软雅黑', sans-serif; background-color: #f0f0f0; display: ...
2301_79945976/mcp-project
docs/dev-ops/nginx/html/git.html
HTML
unknown
4,562
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>AiRagKnowledge - By 小傅哥</title> <script src="https://cdn.tailwindcss.com"></script> <script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script> ...
2301_79945976/mcp-project
docs/dev-ops/nginx/html/index.html
HTML
unknown
5,824
const chatArea = document.getElementById('chatArea'); const messageInput = document.getElementById('messageInput'); const submitBtn = document.getElementById('submitBtn'); const newChatBtn = document.getElementById('newChatBtn'); const chatList = document.getElementById('chatList'); const welcomeMessage = document.getE...
2301_79945976/mcp-project
docs/dev-ops/nginx/html/js/index.js
JavaScript
unknown
14,751
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>文件上传</title> <script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script> <script src="https://cdn.tailwindcss.com"></script> <style> ...
2301_79945976/mcp-project
docs/dev-ops/nginx/html/upload.html
HTML
unknown
6,434
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>AI Chat</title> <script src="https://cdn.tailwindcss.com"></script> </head> <body class="bg-gray-100 h-screen"> <div class="container mx-auto max-w-3xl h-screen...
2301_79945976/mcp-project
docs/dev-ops/nginx/html/第4节:ai-case-04.html
HTML
unknown
4,288
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>AI Chat Interface</title> <script src="https://cdn.tailwindcss.com"></script> </head> <body class="bg-gray-50"> <div class="flex h-screen"> <!-- Sidebar --> ...
2301_79945976/mcp-project
docs/dev-ops/nginx/html/第7节:ai-case-01.html
HTML
unknown
11,283
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>知识库上传</title> <script src="https://cdn.tailwindcss.com"></script> </head> <body class="bg-gray-100 min-h-screen p-8"> <div class="max-w-2xl mx-auto bg-white rou...
2301_79945976/mcp-project
docs/dev-ops/nginx/html/第7节:ai-case-02.html
HTML
unknown
6,417
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>AI Chat Interface</title> <script src="https://cdn.tailwindcss.com"></script> <script> // Simple utility to handle sending messages and receiving data ...
2301_79945976/mcp-project
docs/dev-ops/nginx/html/第7节:ai-case-03.html
HTML
unknown
4,815
/* * Copyright (c) 2023 Huawei Device Co., Ltd. * * 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 r...
2301_80000730/security
vulntest/SSTSTestcases/2023/01/OpenHarmony-SA-2023-0101/TestCaseRule-OpenHarmony-SA-2023-0101.yara
YARA
unknown
1,012
/* * Copyright (c) 2023 Huawei Device Co., Ltd. * * 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 ...
2301_80000730/security
vulntest/SSTSTestcases/2023/01/OpenHarmony-SA-2023-0102/TestCaseRule-OpenHarmony-SA-2023-0102.yara
YARA
unknown
1,207
/* * Copyright (c) 2023 Huawei Device Co., Ltd. * 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 ...
2301_80000730/security
vulntest/SSTSTestcases/2023/02/OpenHarmony-SA-2023-0201/TestCaseRule-OpenHarmony-SA-2023-0201.yara
YARA
unknown
1,197
/* * Copyright (c) 2024 Beijing University Of Posts and Telecommunications. * * 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 * * Un...
2301_80000730/security
vulntest/SSTSTestcases/2023/03/CVE-2022-4450/TestCaseInfo-CVE-2022-4450.yara
YARA
unknown
1,137
/* * Copyright (c) 2024 BUPT. * * 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 i...
2301_80000730/security
vulntest/SSTSTestcases/2023/03/CVE-2023-23914/TestCaseRule-CVE-2023-23914.yara
YARA
unknown
989
/* * Copyright (c) 2023 Huawei Device Co., Ltd. * * 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 ...
2301_80000730/security
vulntest/SSTSTestcases/2023/03/OpenHarmony-SA-2023-0301/TestCaseRule-OpenHarmony-SA-2023-0301.yara
YARA
unknown
1,828
/* * Copyright (c) 2023 Huawei Device Co., Ltd. * * 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 ...
2301_80000730/security
vulntest/SSTSTestcases/2023/03/OpenHarmony-SA-2023-0302/TestCaseRule-OpenHarmony-SA-2023-0302.yara
YARA
unknown
1,043
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICE...
2301_80000730/security
vulntest/SSTSTestcases/2023/04/OpenHarmony-CVE-2022-30787/TestCaseRule-OpenHarmony-CVE-2022-30787.yara
YARA
unknown
973
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICEN...
2301_80000730/security
vulntest/SSTSTestcases/2024/06/CVE-2024-2398/TestCaseRule-CVE-2024-2398.yara
YARA
unknown
1,004
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICENS...
2301_80000730/security
vulntest/SSTSTestcases/2024/06/CVE-2024-2478/TestCaseRule-CVE-2024-2478.yara
YARA
unknown
1,077
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICE...
2301_80000730/security
vulntest/SSTSTestcases/2024/07/CVE-2024-26883/TestCaseRule-CVE-2024-26883.yara
YARA
unknown
1,124
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICE...
2301_80000730/security
vulntest/SSTSTestcases/2024/07/CVE-2024-26884/TestCaseRule-CVE-2024-26884.yara
YARA
unknown
1,006
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICEN...
2301_80000730/security
vulntest/SSTSTestcases/2024/07/CVE-2024-27004/TestCaseRule-CVE-2024-27004.yara
YARA
unknown
1,021
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICEN...
2301_80000730/security
vulntest/SSTSTestcases/2024/07/CVE-2024-27038/CVE-2024-27038.yara
YARA
unknown
1,081
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICEN...
2301_80000730/security
vulntest/SSTSTestcases/2024/08/CVE-2023-52739/TestCaseRule-CVE-2023-52739.yara
YARA
unknown
1,069
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICEN...
2301_80000730/security
vulntest/SSTSTestcases/2024/08/CVE-2023-52781/CVE-2023-52781.yara
YARA
unknown
1,069
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICEN...
2301_80000730/security
vulntest/SSTSTestcases/2024/08/CVE-2023-52835/TestCaseRule-CVE-2023-52835.yara
YARA
unknown
1,075
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICE...
2301_80000730/security
vulntest/SSTSTestcases/2024/08/CVE-2023-52868/TestCaseRule-CVE-2023-52868.yara
YARA
unknown
1,007
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICE...
2301_80000730/security
vulntest/SSTSTestcases/2024/08/CVE-2024-26733/TestCaseRule-CVE-2024-26733.yara
YARA
unknown
1,006
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICE...
2301_80000730/security
vulntest/SSTSTestcases/2024/08/CVE-2024-26934/TestCaseRule-CVE-2024-26934.yara
YARA
unknown
1,006
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICEN...
2301_80000730/security
vulntest/SSTSTestcases/2024/08/CVE-2024-27399/TestCaseRule-CVE-2024-27399.yara
YARA
unknown
1,098
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICEN...
2301_80000730/security
vulntest/SSTSTestcases/2024/08/CVE-2024-28182/TestCaseRule-CVE-2024-28182.yara
YARA
unknown
1,069
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/licens...
2301_80000730/security
vulntest/SSTSTestcases/2024/08/CVE-2024-35789/CVE-2024-35789.yara
YARA
unknown
1,055
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICE...
2301_80000730/security
vulntest/SSTSTestcases/2024/08/CVE-2024-35822/TestcaseRule-OpenHarmony-CVE-2024-35822.yara
YARA
unknown
1,027
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICENS...
2301_80000730/security
vulntest/SSTSTestcases/2024/08/CVE-2024-35969/TestCaseRule-OpenHarmony-CVE-2024-35969.yara
YARA
unknown
975
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICEN...
2301_80000730/security
vulntest/SSTSTestcases/2024/08/CVE-2024-36008/TestCaseRule-CVE-2024-36008.yara
YARA
unknown
1,041
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICEN...
2301_80000730/security
vulntest/SSTSTestcases/2024/08/CVE-2024-36899/TestCaseRule-CVE-2024-36899.yara
YARA
unknown
993
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICEN...
2301_80000730/security
vulntest/SSTSTestcases/2024/08/CVE-2024-36901/TestCaseRule-CVE-2024-36901.yara
YARA
unknown
1,149
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/licens...
2301_80000730/security
vulntest/SSTSTestcases/2024/08/CVE-2024-36904/CVE-2024-36904.yara
YARA
unknown
940
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICE...
2301_80000730/security
vulntest/SSTSTestcases/2024/08/CVE-2024-36939/TestCaseRule-CVE-2024-36939.yara
YARA
unknown
1,065
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICEN...
2301_80000730/security
vulntest/SSTSTestcases/2024/08/CVE-2024-36940/TestCaseRule-CVE-2024-36940.yara
YARA
unknown
1,057
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICEN...
2301_80000730/security
vulntest/SSTSTestcases/2024/08/CVE-2024-36941/TestCaseRule-CVE-2024-36941.yara
YARA
unknown
1,104
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICEN...
2301_80000730/security
vulntest/SSTSTestcases/2024/08/CVE-2024-4603/TestCaseRule-CVE-2024-4603.yara
YARA
unknown
955
/* * Copyright (c) 2024 Beijing University of Posts and Telecommunications. * * 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/LICENS...
2301_80000730/security
vulntest/SSTSTestcases/2024/09/CVE-2024-25739/TestCaseRule-OpenHarmony-CVE-2024-25739.yara
YARA
unknown
1,013