Skip to content

Commit

Permalink
add gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
717qwq committed Sep 4, 2024
1 parent 90436d2 commit 3d6d621
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# PyCharm specific
.idea/

# Python specific
__pycache__/
*.py[cod]
*.pyo
2 changes: 1 addition & 1 deletion Query.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from steam import SteamQuery

# 定义 IP 和端口列表
server_ip = ["110.42.9.149", "110.42.9.181","110.42.9.22"]
server_ip = ["110.42.9.149", "110.42.9.181", "110.42.9.22"]
port = [27015, 27016]


Expand Down
39 changes: 39 additions & 0 deletions main.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# -*- mode: python ; coding: utf-8 -*-


a = Analysis(
['main.py'],
pathex=[],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
noarchive=False,
optimize=0,
)
pyz = PYZ(a.pure)

exe = EXE(
pyz,
a.scripts,
a.binaries,
a.datas,
[],
name='main',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=False,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
icon=['icon.ico'],
)
Binary file added requirements.txt
Binary file not shown.

0 comments on commit 3d6d621

Please sign in to comment.