
Python
Python 技术分享
HelloCode5110
在线接单:物联网管理系统,ERP管理系统,数据可视化等...
展开
-
【Python】已解决:WARNING: This is a development server. Do not use it in a production deployment.
开发服务器(Development Server)是框架自带的轻量级服务器,方便开发者快速测试和调试应用。因此,在部署到生产环境时,应该使用适合生产环境的WSGI服务器,如Gunicorn或uWSGI。在开发和测试环境中,在 Windows 系统上快速测试验证,可以使用这个简单的替代方案来启动您的 WSGI 应用,既。Uvicorn 是一个高性能的 ASGI 服务器,它在 Windows 上的表现通常优于 Gunicorn。上述代码在开发环境中是完全正确的,但在生产环境中直接运行会导致性能和安全问题。原创 2024-08-20 15:33:51 · 5936 阅读 · 1 评论 -
Gunicorn 和 uWSGI 的区别
Gunicorn 和 uWSGI 是两种常用的 WSGI 服务器,它们主要用于部署 Python Web 应用,特别是 Flask 和 Django 这样的框架。尽管它们都服务于相同的目的,但在实现细节、特性和使用场景方面存在一些差异。原创 2024-08-20 11:46:28 · 1564 阅读 · 0 评论 -
(7) PyQt 设计并实现【工厂扫码装箱系统】- Python代码实现BarTender自动化打印条码标签
一. 需求在工厂扫码装箱流水线上,实现扫码后自动化标签打印功能。1.1 扫码流水线1.2 自动化标签打印二. 代码实现2.1 Python调用 BarTender 的Dll# -*- coding: utf-8 -*-# 先安装 BarTender 程序# 然后找到 Interop.BarTender.dll 文件 拷贝到 当前目录下并改名为 BarTender.dll# 再安装库 pip install pythonnetimport clrim..原创 2022-03-07 11:37:03 · 6248 阅读 · 10 评论 -
(6) PyQt 设计并实现【工厂扫码装箱系统】- BarTender 打印机之标签制作
目录一.BarTender 是专业的标签、条形码、RFID和证卡设计打印软件。二. 制作或选择模板三.添加商品信息四.设置文本并添加条码五. 更多案例讲解一.BarTender 是专业的标签、条形码、RFID和证卡设计打印软件。 二. 制作或选择模板首先我们打开BanTender软件,单击左上角“文件”选项,选择“新建”从而建立一个新文档。然后,软件窗口弹出“新建文档向导”,我们根据向导提示内容一步步完成新建文档:选择空白模板(或从模板库中选择已有...原创 2022-03-06 16:44:26 · 1610 阅读 · 0 评论 -
(5) PyQt 设计并实现【工厂扫码装箱系统】- 试用有效期功能
if __name__ == '__main__': QApp = QApplication(sys.argv) #日期限制 try: url = "http://quan.suning.com/getSysTime.do" para = {} header = {} r = requests.get(url, params=para, headers=header, ) internet_time.原创 2022-03-04 23:08:29 · 764 阅读 · 0 评论 -
【214情人节】低调奢华有内涵的python程序猿撒狗粮的正确姿势(附源码)
《孟子.梁惠王下》【独乐乐不如众乐乐】情人节就要到了,小伙伴们一起来皮一皮吧~ ,正如春晚大张伟所言:我们要做自己的气氛大王!一.效果演示1. 先看原图2. 再看效果图3. 看出两张图片的区别了吗?将效果图放大,放大,再放大,看到隐藏得满屏的喜欢了吗?感到小惊喜有没有,我看到这张图的时候也是惊喜了好一阵子那。《朱子语类》【知其然知其所以然】二. 代码架构后端:python flask 提供http服务前端:html bootstrap...原创 2022-02-13 02:24:58 · 8761 阅读 · 6 评论 -
Pandas 数据分析 - 学习笔记目录
1 学习数据分析 Pandas,这4个资料网站不能少_YYDataV的博客-优快云博客Pandas Pandas 是 Python 语言的一个扩展程序库,用于数据分析。Pandas 是一个开放源码、BSD 许可的库,提供高性能、易于使用的数据结构和数据分析工具。Pandas 名字衍生自术语 "panel data"(面板数据)和 "Python data analysis"(Python 数据分析)。Pandas 一个强大的分析结构化数据的工具集,基础是Numpy(提供高性能的矩阵运算)。Pandas 可原创 2022-01-27 17:32:13 · 3019 阅读 · 0 评论 -
6 Pandas 数据分析之算数据
平均值 mean()import pandas as pddata = { "hello": [1, 2, 3, 4, 5, 6, 7, 8, 9], "world": [100, 200, 300, 400, 500, 600, 700, 800, 900]}i = ["YYDataV1", "YYDataV2", "YYDataV3", "YYDataV4", "YYDataV5", "YYDataV6", "YYDataV7", "YYDataV8", "YYD原创 2022-01-17 22:01:28 · 741 阅读 · 0 评论 -
5 Pandas 数据分析之看数据
目录头部和尾部数据head() 与 tail()索引与列名 index与columns统计摘要 describe()转置数据T按轴排序 sort_index()按值排序 sort_values()按标签选择loc 与 at按位置选择iloc 与iat条件选择 > 与isin()赋值 = 缺失值np.nan头部和尾部数据head() 与 tail()import pandas as pddata = { "hello":...原创 2022-01-17 13:21:14 · 1793 阅读 · 0 评论 -
4 Pandas 数据结构之生成DataFrame
目录用列表生成 DataFrame用多维数组字典生成 DataFrame用 Series字典生成 DataFrame用列表字典生成 DataFrame用元组字典生成 DataFrameDataFrame 是一个表格型的数据结构,它含有一组有序的列,每列可以是不同的值类型(数值、字符串、布尔型值)。DataFrame 既有行索引也有列索引,它可以被看做由 Series 组成的字典(共同用一个索引)。DataFrame 构造方法如下:pandas...原创 2022-01-15 19:41:26 · 3138 阅读 · 0 评论 -
3 Pandas 数据结构之生成Series
Pandas Series 类似表格中的一个列(column),类似于一维数组,可以保存任何数据类型。Series 由索引(index)和列组成,函数如下:pandas.Series(data,index,dtype,name,copy)参数说明:data:一组数据(ndarray 类型)。index:数据索引标签,如果不指定,默认从 0 开始。dtype:数据类型,默认会自己判断。name:设置名称。copy:拷贝数据,默认为 False。...原创 2022-01-14 17:17:39 · 1292 阅读 · 0 评论 -
2 Pandas 数据结构
Series:一维数组,与Numpy中的一维array类似。二者与Python基本的数据结构List也很相近。Series如今能保存不同种数据类型,字符串、boolean值、数字等都能保存在Series中。Time- Series:以时间为索引的Series。DataFrame:二维的表格型数据结构。很多功能与R中的data.frame类似。可以将DataFrame理解为Series的容器。Panel :三维的数组,可以理解为DataFrame的容器。Panel4D:是像Panel一样的4维原创 2022-01-14 17:05:43 · 483 阅读 · 0 评论 -
1 学习数据分析 Pandas,这4个资料网站不能少
Pandas Pandas 是 Python 语言的一个扩展程序库,用于数据分析。Pandas 是一个开放源码、BSD 许可的库,提供高性能、易于使用的数据结构和数据分析工具。Pandas 名字衍生自术语 "panel data"(面板数据)和 "Python data analysis"(Python 数据分析)。Pandas 一个强大的分析结构化数据的工具集,基础是Numpy(提供高性能的矩阵运算)。Pandas 可以从各种文件格式比如 CSV、JSON、SQL、Micr...原创 2022-01-14 17:00:12 · 1099 阅读 · 0 评论 -
(3) PyQt5 实现漂亮进度条 ProgressBar
一、效果展示二、使用Designer设计UI1、添加背景Frame添加Frame,并设置样式。设置样式示例:QFrame { background-color: rgb(56, 58, 89); color: rgb(220, 220, 220); border-radius: 10px;}2、添加文本框Text Edit3、添加进度条Progress UI界面到此基本Ok。三、编写py代码实现1、将ui编译成py...原创 2021-12-15 17:32:27 · 14151 阅读 · 5 评论 -
VSCode - 配置Python的默认解释器
1、查看vscode中默认使用的python解释器:2、Ctrl + Shift + p 打开命令行面板:3、输入 Python:Select Interpreter 命令,配置默认的解释器4、默认解释器生效以后每次打开VsCode,都会使用这个默认的解释器。good!......原创 2021-12-10 10:32:45 · 63610 阅读 · 4 评论 -
采用Remi纯Python写前端页面,范例30
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/# -*- coding: utf8 -*-import remi.gui as guifrom remi.gui import *from remi import start, App#written 2018 by Christian Kueken, Germany #Example for App wi原创 2021-03-04 11:50:37 · 1646 阅读 · 1 评论 -
采用Remi纯Python写前端页面,范例29
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/import remi.gui as guifrom remi import start, Appfrom remi_ext import TreeTable, SingleRowSelectionTableclass MyApp(App): def __init__(self, *args):原创 2021-03-04 11:48:15 · 1135 阅读 · 1 评论 -
采用Remi纯Python写前端页面,范例28
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/import remi.gui as guifrom remi import start, Appimport osclass MyApp(App): def __init__(self, *args): res_path = os.path.join(os.path.dirname(os.pa原创 2021-03-04 11:42:07 · 776 阅读 · 1 评论 -
采用Remi纯Python写前端页面,范例27
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/# This my first app done using REMI and Python. Probably there is a better way to do it.# This app is a simple scoreboard. I use it when I play pool/biliard.# In原创 2021-03-04 11:39:04 · 1860 阅读 · 1 评论 -
采用Remi纯Python写前端页面,范例26
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/import remi.gui as guifrom remi import start, Appfrom threading import Timerclass MyApp(App): def __init__(self, *args): super(MyApp, self).__init_原创 2021-03-04 10:59:15 · 802 阅读 · 1 评论 -
采用Remi纯Python写前端页面,范例25
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/import remi.gui as guifrom remi import start, Appclass RemoteLabel(gui.Label): def __init__(self, text, **kwargs): super(RemoteLabel, self).__init__原创 2021-03-04 10:56:42 · 685 阅读 · 1 评论 -
采用Remi纯Python写前端页面,范例24
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/""" This example shows how to start the application as a thread, without stopping the main thread. A label is accessed from the main thread. NOTE原创 2021-03-04 10:51:09 · 636 阅读 · 1 评论 -
采用Remi纯Python写前端页面,范例23
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/""" 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原创 2021-03-04 10:48:33 · 565 阅读 · 1 评论 -
采用Remi纯Python写前端页面,范例22
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/import remi.gui as guifrom remi import start, Appimport osclass MyApp(App): def __init__(self, *args): res_path = os.path.join(os.path.dirname(os.pa原创 2021-03-04 10:46:15 · 630 阅读 · 1 评论 -
采用Remi纯Python写前端页面,范例21
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/import remi.gui as guifrom remi import start, Appclass MyApp(App): def __init__(self, *args): super(MyApp, self).__init__(*args) def main(self)原创 2021-03-04 10:41:25 · 810 阅读 · 2 评论 -
采用Remi纯Python写前端页面,范例20
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/import remi.gui as guifrom remi import start, Appclass MyApp(App): def __init__(self, *args): super(MyApp, self).__init__(*args) def main(self)原创 2021-03-03 15:12:39 · 1381 阅读 · 2 评论 -
采用Remi纯Python写前端页面,范例19
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/import remi.gui as guifrom remi import start, Appfrom remi import serverimport mathfrom threading import Timerimport randomimport collectionsclass SvgCompo原创 2021-03-03 15:10:54 · 762 阅读 · 1 评论 -
采用Remi纯Python写前端页面,范例18
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/import remi.gui as guifrom remi import start, Appimport randomimport threadingclass CookieInterface(gui.Tag, gui.EventSource): def __init__(self, remi_app_原创 2021-03-03 15:08:23 · 972 阅读 · 0 评论 -
采用Remi纯Python写前端页面,范例17
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/import remi.gui as guifrom remi import start, Appimport osclass MyApp(App): def main(self): # creating a container VBox type, vertical (you can use原创 2021-03-03 11:03:36 · 618 阅读 · 1 评论 -
采用Remi纯Python写前端页面,范例16
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/""" This example shows how to change the App's root widget. This allows to mimic a page change behaviour. It is done by the App.set_root_widget(mywidget)原创 2021-03-03 11:01:39 · 693 阅读 · 0 评论 -
采用Remi纯Python写前端页面,范例15
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/import remi.gui as guifrom remi import start, Appimport osclass MyApp(App): def __init__(self, *args): res_path = os.path.join(os.path.dirname(os.pa原创 2021-03-03 10:46:25 · 531 阅读 · 0 评论 -
采用Remi纯Python写前端页面,范例14
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/import remi.gui as guifrom remi import start, Appimport osclass MyApp(App): def __init__(self, *args): res_path = os.path.join(os.path.dirname(os.pa原创 2021-03-03 10:34:21 · 792 阅读 · 0 评论 -
采用Remi纯Python写前端页面,范例13
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/import remi.gui as guiimport remi.serverfrom remi import start, Appimport os #for path handlingclass ResizeHelper(gui.Widget, gui.EventSource): EVENT_OND原创 2021-03-03 09:53:39 · 1256 阅读 · 1 评论 -
采用Remi纯Python写前端页面,范例11
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/import timeimport ioimport tracebackimport PIL.Imageimport remi.gui as guifrom remi import start, Appimport remiclass PILImageViewverWidget(gui.Image):原创 2021-03-03 08:55:37 · 2085 阅读 · 0 评论 -
采用Remi纯Python写前端页面,范例10
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/import remi.gui as guifrom remi import start, Appclass MyApp(App): def main(self, name='world'): # margin 0px auto allows to center the app to the s原创 2021-03-02 14:35:30 · 791 阅读 · 0 评论 -
采用Remi纯Python写前端页面,范例9
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/import remi.gui as guifrom remi import start, Appclass MyApp(App): def __init__(self, *args): super(MyApp, self).__init__(*args) def main(self)原创 2021-03-02 14:33:36 · 984 阅读 · 0 评论 -
采用Remi纯Python写前端页面,范例8
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/import os.pathimport randomimport threadingimport remi.gui as guifrom remi import start, Appclass Cell(gui.TableItem): """ Represent a cell in the m原创 2021-03-02 14:31:09 · 1895 阅读 · 0 评论 -
采用Remi纯Python写前端页面,范例7
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/""" This simple example shows how to display a matplotlib plot image. The MatplotImage gets addressed by url requests that points to a specific method. Th原创 2021-03-02 14:29:15 · 1271 阅读 · 0 评论 -
采用Remi纯Python写前端页面,范例6
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/""" This example permits to play with VBox and HBox layouts. Different style parameters plays a specific role in layout arrangement, and this little applic原创 2021-03-02 14:27:09 · 857 阅读 · 0 评论 -
采用Remi纯Python写前端页面,范例5
来源:remi源码https://github.com/dddomodossola/remi官网:https://remi.readthedocs.io/en/latest/""" Here is an "Hello World" application showing a simple interaction with the user."""import remi.gui as guifrom remi import start, Appclass MyApp(App)原创 2021-03-02 14:25:31 · 923 阅读 · 0 评论