加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
gen_1D_code.py 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
xushenghu 提交于 2024-03-14 13:09 . 19:57:24 2023/03/14 commit
# -*- coding: utf-8 -*-
"""
-------------------------------------------------
# @Project : pythonProject
# @File : gen_1D_code
# @Date : 2024/1/14 16:52
# @Author : 徐胜虎
# @Email : 1813366784@qq.com
# @Software : PyCharm
-------------------------------------------------
python-barcode
"""
import os
import barcode
def delete_files(path_file):
if not (os.path.isdir(r'resources/code_1D')):
os.mkdir(r'resources/code_1D')
file_list = os.listdir(path_file)
for file in file_list:
f_path = os.path.join(path_file, file)
# 判断是否是一个目录,若是,则递归删除
if os.path.isdir(f_path):
delete_files(f_path)
else:
os.remove(f_path)
if __name__ == '__main__':
delete_files(r'resources/code_1D/')
num = 20
original_code = '2403112184' # 2401162524 3位 3148389934 4位
for i in range(num):
code = original_code + '{:0>3d}'.format(i + 1)
print(code)
code_yi_wei_ma = barcode.get('code128', code) # 生成条形码
code_yi_wei_ma.save(f'resources/code_1D/{code}')
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化