摘要: python -m pip install flask python -m pip install flask-cors //Flask from flask import Flask,jsonify,send_from_directory from flask_cors import CORS i 阅读全文
posted @ 2025-12-08 21:14 FredGrit 阅读(0) 评论(0) 推荐(0)
摘要: //WebAPI namespace BooksServices { public class Program { public static void Main(string[] args) { Console.WriteLine(DateTime.Now); var builder = WebA 阅读全文
posted @ 2025-12-05 00:21 FredGrit 阅读(2) 评论(0) 推荐(0)
摘要: 1.New WebApi solution,add controller,BooksController namespace BooksServices.Models { public class Book { public int Id { get; set; } public string Na 阅读全文
posted @ 2025-12-04 23:48 FredGrit 阅读(3) 评论(0) 推荐(0)
摘要: import uuid from datetime import datetime import json def main(cnt=1000000): t1=datetime.now() print(f'start at {t1}') book_list=[] for i in range(1,c 阅读全文
posted @ 2025-12-04 22:47 FredGrit 阅读(3) 评论(0) 推荐(0)
摘要: Install-Package Prism.Wpf; Install-Package Prism.DryIOC; using System.Configuration; using System.Data; using System.Windows; namespace WpfApp26 { /// 阅读全文
posted @ 2025-11-27 22:51 FredGrit 阅读(4) 评论(0) 推荐(0)
摘要: import time import threading import datetime import pandas as pd class Book(): def __init__(self,id,name,author,comment,content,isbn,summary,title,top 阅读全文
posted @ 2025-11-26 21:20 FredGrit 阅读(3) 评论(0) 推荐(0)
摘要: import datetime import pandas as pd import time class Book(): def __init__(self,id,name,isbn,comment,content,summary,title,topic): self.id=id self.nam 阅读全文
posted @ 2025-11-26 20:47 FredGrit 阅读(6) 评论(0) 推荐(0)
摘要: pyinstaller --onefile PythonTest9.py import uuid import datetime import time def get_uuid_time(): return f'{uuid.uuid4().hex}_{datetime.datetime.now() 阅读全文
posted @ 2025-11-21 23:40 FredGrit 阅读(3) 评论(0) 推荐(0)
摘要: import uuid import datetime import time import json import tkinter as tk import tkinter.messagebox as msgBox class Book(): def __init__(self,id,name,i 阅读全文
posted @ 2025-11-21 23:21 FredGrit 阅读(3) 评论(0) 推荐(0)
摘要: import datetime import uuid import time import numpy as np import threading def get_uuid_time(): return f"{uuid.uuid4().hex}_{datetime.datetime.now(). 阅读全文
posted @ 2025-11-20 22:47 FredGrit 阅读(2) 评论(0) 推荐(0)