上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 23 下一页
摘要: 阅读全文
posted @ 2022-04-23 12:17 CrossPython 阅读(15) 评论(0) 推荐(0) 编辑
摘要: from subprocess import PIPE, STDOUT,Popen import traceback import subprocess # # -*- encoding=utf-8 -*- # from subprocess import Popen, PIPE, STDOUT # 阅读全文
posted @ 2022-04-22 23:19 CrossPython 阅读(13) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/jmilkfan-fanguiju/p/7533729.htmlWindows PowerShell 版权所有 (C) Microsoft Corporation。保留所有权利。 尝试新的跨平台 PowerShell https://aka.ms/ps 阅读全文
posted @ 2022-04-22 22:07 CrossPython 阅读(31) 评论(0) 推荐(0) 编辑
摘要: # https://msdn.microsoft.com/en-us/library/windows/desktop/aa383608(v=vs.85).aspx """ Windows Task Scheduler Module .. versionadded:: 2016.3.0 A modul 阅读全文
posted @ 2022-04-22 21:20 CrossPython 阅读(47) 评论(0) 推荐(0) 编辑
摘要: After looking around the internet for many days. I've decided to ask my own question. I've done some digging around and found some ways to implement t 阅读全文
posted @ 2022-04-22 09:57 CrossPython 阅读(424) 评论(0) 推荐(0) 编辑
摘要: 0.安装selenium + Chrome Driver安装selenium:pip install selenium安装Chrome Driver: 下载:http://chromedriver.storage.googleapis.com/index.html版本要对应(chrome://ver 阅读全文
posted @ 2022-04-10 17:59 CrossPython 阅读(57) 评论(0) 推荐(0) 编辑
摘要: import sys import requests from requestium import Session, Keys import json import pandas as pd import time import pickle import os import datetime im 阅读全文
posted @ 2022-04-10 17:37 CrossPython 阅读(68) 评论(0) 推荐(0) 编辑
摘要: firstly, get cookie: browser.get_cookies()then transfer to requests session: cookies = login() for cookie in cookies: session.cookies.set(cookie['name 阅读全文
posted @ 2022-04-06 10:50 CrossPython 阅读(21) 评论(0) 推荐(0) 编辑
摘要: Exception 会捕获除了SystemExit 、KeyboardInterrupt 和GeneratorExit 之外的所有异常。 如果你还想捕获这三个异常,将 Exception 改成 BaseException 即可。 阅读全文
posted @ 2022-04-04 19:25 CrossPython 阅读(476) 评论(0) 推荐(0) 编辑
摘要: from selenium import webdriver from selenium.webdriver.common.by import By import time option = webdriver.ChromeOptions() option.add_experimental_opti 阅读全文
posted @ 2022-04-02 16:37 CrossPython 阅读(19) 评论(0) 推荐(0) 编辑
摘要: import requestsimport seleniumfrom selenium import webdriverfrom selenium.webdriver.common.by import By option = webdriver.ChromeOptions()option.add_e 阅读全文
posted @ 2022-04-01 17:05 CrossPython 阅读(449) 评论(0) 推荐(0) 编辑
摘要: 查看chrome安装目录:C:\Users\***\AppData\Local\Google\Chrome\Application 命令行进入安装目录执行:chrome.exe --remote-debugging-port=9180 --user-data-dir="D:\selenum_temp 阅读全文
posted @ 2022-04-01 16:34 CrossPython 阅读(381) 评论(0) 推荐(0) 编辑
摘要: import win32com.clientscheduler = win32com.client.Dispatch('Schedule.Service')scheduler.Connect()folders = scheduler.GetFolder('\\')task = folders.Get 阅读全文
posted @ 2022-03-27 09:56 CrossPython 阅读(53) 评论(0) 推荐(0) 编辑
摘要: Python check for Completed and failed Task Windows scheduler 有谁知道我可以查看的方式或资源来检查任务计划程序中所有Windows任务的状态? 我想看看是否看到任务失败或成功。 我想在Python中做到这一点。 我已经看过一些使用win32 阅读全文
posted @ 2022-03-26 22:50 CrossPython 阅读(563) 评论(0) 推荐(0) 编辑
摘要: import win32com.client computer_name = "" #leave all blank for current computer, current usercomputer_username = ""computer_userdomain = ""computer_pa 阅读全文
posted @ 2022-03-26 22:49 CrossPython 阅读(300) 评论(0) 推荐(0) 编辑
摘要: session.auth = HttpNtlmAuth(self.credential, self.password, session) from requests_ntlm import HttpNtlmAuth a = requests.get(url=url, data=data, heade 阅读全文
posted @ 2022-03-26 11:04 CrossPython 阅读(62) 评论(0) 推荐(0) 编辑
摘要: import poplib import sys from importlib import reload from email.parser import Parser from email.parser import BytesParser from email.header import de 阅读全文
posted @ 2022-03-23 23:21 CrossPython 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 合体. 阅读全文
posted @ 2022-03-22 09:50 CrossPython 阅读(57) 评论(0) 推荐(0) 编辑
摘要: from pdfminer.pdfparser import PDFParser from pdfminer.pdfparser import PDFParser,PDFDocument from pdfminer.pdfinterp import PDFResourceManager, PDFPa 阅读全文
posted @ 2022-03-04 11:39 CrossPython 阅读(99) 评论(0) 推荐(0) 编辑
摘要: select * from sqlserver, convert(date, 23) => YYYY-MM-DD pandas convert to date, drop time part, df2['ym1'] = pd.to_datetime(df2['ym']).dt.date 阅读全文
posted @ 2022-02-28 17:06 CrossPython 阅读(26) 评论(0) 推荐(0) 编辑
摘要: Public Sub getMyGroup() On Error Resume Next intRow = 18 intCol = 4 On Error Resume Next Set objADSysInfo = CreateObject("ADSystemInfo") strUser = obj 阅读全文
posted @ 2022-02-18 11:15 CrossPython 阅读(32) 评论(0) 推荐(0) 编辑
摘要: good 阅读全文
posted @ 2022-02-08 21:25 CrossPython 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 资源:内存区块。不同的内存区块位置和大小就是不同的资源。 strlet a = "xxx".to_string(); 含义:a绑定到字符串资源A上,拥有资源A的所有权 let mut a = "xxx".to_string(); 含义:a绑定到字符串资源A上,拥有资源A的所有权,同时a还可绑定到新的 阅读全文
posted @ 2022-02-03 13:09 CrossPython 阅读(355) 评论(0) 推荐(0) 编辑
摘要: 1.设置settings.py DEBUG = False ALLOWED_HOSTS = ["*"] ... STATIC_ROOT = os.path.join(BASE_DIR, 'static') STATIC_URL = '/static/' 2.修改项目的urls.py from dja 阅读全文
posted @ 2022-02-01 22:53 CrossPython 阅读(888) 评论(0) 推荐(0) 编辑
摘要: address_book = ['receiver@test.cn'] msg = MIMEMultipart() sender = 'sender@sender.cn' subject = "My subject2222222222222" body = "This is my email bod 阅读全文
posted @ 2022-01-27 18:48 CrossPython 阅读(24) 评论(0) 推荐(0) 编辑
摘要: Row( mainAxisAlignment: MainAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.center, children: [ Text('是否内部移库? ->'), Builder( builder: (Bu 阅读全文
posted @ 2022-01-23 19:23 CrossPython 阅读(313) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/3b7b1b1d3d7d 出现问题: 在Android真机调试时会出现没有网络权限的情况; 解决办法: 在AndroidManifest.xml 中添加 <uses-permission android:name="android.permissi 阅读全文
posted @ 2022-01-23 10:23 CrossPython 阅读(1866) 评论(0) 推荐(0) 编辑
摘要: import 'package:flutter/material.dart'; void main() { runApp(HomePage()); } class HomePage extends StatelessWidget{ @override Widget build(BuildContex 阅读全文
posted @ 2022-01-19 21:24 CrossPython 阅读(325) 评论(0) 推荐(0) 编辑
摘要: import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext con 阅读全文
posted @ 2022-01-19 20:34 CrossPython 阅读(166) 评论(0) 推荐(0) 编辑
摘要: from exchangelib import DELEGATE, Account, Credentials, Message, Mailbox, HTMLBody def Email(to, subject, body): creds = Credentials( username='a@live 阅读全文
posted @ 2022-01-13 08:52 CrossPython 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 使用命令pg_ctl.exe register -N “pgsql” -D “C:\Program Files\PostgreSQL\12\data” 将postgresql注册为服务执行net start pgsql 启动服务pgsql连接默认用户名为本机系统用户名 密码任意 即可使用工具连接po 阅读全文
posted @ 2022-01-11 16:10 CrossPython 阅读(3329) 评论(0) 推荐(0) 编辑
摘要: I have below code in flutter. In initialRoute: attribute, it needs to call isLoggedIn() method which is an async function. I got an error saying I nee 阅读全文
posted @ 2022-01-09 21:10 CrossPython 阅读(34) 评论(0) 推荐(0) 编辑
摘要: question: Let's assume that an initialization of MyComponent in Dart requires sending an HttpRequest to the server. Is it possible to construct an obj 阅读全文
posted @ 2022-01-09 13:24 CrossPython 阅读(499) 评论(0) 推荐(0) 编辑
摘要: 现代手机屏幕尺寸各不相同,导致我们平时写布局的时候会在个不同的移动设备上显示的效果不同。 为了达到一套代码所有手机体验一致效果,需要做尺寸上的适配。 适配方案: 计算公式:实际尺寸 = UI尺寸 * 设备宽度/设计图宽度 1px方案 : 1px = 1 / 设备像素比 实现代码如下(以750设计图为 阅读全文
posted @ 2022-01-08 18:33 CrossPython 阅读(1935) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <stdbool.h> void PrintAll(int a[], int nBegin, int nEnd, int nCount, char* szPre){ if(nCount==1){ for(int i=nBegin; i<=nEn 阅读全文
posted @ 2021-11-15 20:05 CrossPython 阅读(153) 评论(0) 推荐(0) 编辑
摘要: //改变数组长度 #include <iostream> using namespace std; // #ifndef CHANGELENGTH1D_H #define CHANGELENGTH1D_H #include<stdexcept> #include<algorithm> templat 阅读全文
posted @ 2021-11-06 22:17 CrossPython 阅读(103) 评论(0) 推荐(0) 编辑
摘要: select a.guigename,a.thisdayguigeprice,a.createdate from dailystandardguigeprice as a inner join (select guigename,max(createdate) as mcreatedate from 阅读全文
posted @ 2021-10-12 16:22 CrossPython 阅读(14) 评论(0) 推荐(0) 编辑
摘要: Microsoft IIS creates something called AppPool. By default you will have a user IIS AppPool\DefaultAppPool. That user needs to have permissions to you 阅读全文
posted @ 2021-09-28 21:08 CrossPython 阅读(38) 评论(0) 推荐(0) 编辑
摘要: views.py中:定义一个global_settings函数,先把全局变量都引入过来,然后再返回:def global_setting(request):#注意有request参数 SITE_DESC = settings.SITE_DESC SITE_NAME = settings.SITE_N 阅读全文
posted @ 2021-09-28 17:42 CrossPython 阅读(152) 评论(0) 推荐(0) 编辑
摘要: <a href="{{url_for('test')}}">我是测试</a> <button onclick="window.location.href='{{ url_for("test") }}'">点我啊</button> <button onclick="{{ url_for("test") 阅读全文
posted @ 2021-09-25 12:02 CrossPython 阅读(49) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 23 下一页