Coder Social home page Coder Social logo

12365auto's Introduction

Create Virtual Environment

python -m venv 12365

激活环境:

12365/Script/activate

退出环境:

deactivate

Pyinstaller打包

pip install pyinstaller
pip install -r requirements.txt

pyinstaller.exe  .\12365auto_main.py

创建出来一个 spec文件,然后编辑这个文件,在datas里面: 将pacfile这个文件打包到根目录(.),实际是会被放到_internal文件夹下,所以代码里面也需要体现这一点。

a = Analysis(
    ['12365auto_main.py'],
    pathex=[],
    binaries=[],
    datas=[('pacfile','.'),('category_list.json','.')],
pyinstaller.exe  .\12365auto_main.spec

将文件load为 JSON 格式:

with open(r'./_internal/category_list.json',encoding= 'utf-8') as ff:
category_list = json.load(ff)

将字符串 load 为 JSON 格式:

category_list = json.loads(res.text.split('= ')[-1]) # to load string to json, json.load is for file loading

12365auto's People

Contributors

zhuzxmas avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.