Skip to content

Commit 366c081

Browse files
committed
weblottery
0 parents  commit 366c081

File tree

389 files changed

+69236
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

389 files changed

+69236
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
templates/assets

.idea/.gitignore

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

+14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/profiles_settings.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/lottery_new.iml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
photo_path: templates/assets/ #照片存储路径,注意不能出现转义符\ 要以/结尾
2+
launchPort: 14500 #后端监听端口,1024-65535间
3+
debug: 0 #是否开启flask调试模式

icon.ico

253 KB
Binary file not shown.

main.py

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
'''
2+
文件:main.py
3+
功能:提供抽奖小程序的后端
4+
框架:flask
5+
'''
6+
7+
from flask import Flask,render_template,redirect,url_for,jsonify
8+
from utils.utils import read_person_name,config,rand_get_person,openBrowser
9+
import threading
10+
11+
main_app=Flask(__name__,static_url_path="",static_folder="templates",template_folder="templates") #配置Flask实例
12+
name_data=read_person_name("name.txt") #获取姓名
13+
14+
#下面开始写后端路由与API接口
15+
16+
@main_app.route("/")
17+
def getin():
18+
return redirect(url_for("index"))
19+
20+
@main_app.route("/index") #起始页路由
21+
def index():
22+
return render_template("index.html")
23+
24+
@main_app.route("/lottery") #抽奖页路由
25+
def lottery():
26+
return render_template("new.html")
27+
28+
@main_app.route("/getone") #抽人的API,返回一个json数据
29+
def getone():
30+
return jsonify(rand_get_person(name_data)) #以json形式返回消息至前端
31+
32+
33+
#启动!!
34+
threading.Thread(target=openBrowser).start()
35+
main_app.run(host="0.0.0.0",port=config.launch_port,debug=config.debug)

main.spec

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# -*- mode: python ; coding: utf-8 -*-
2+
3+
4+
a = Analysis(
5+
['main.py'],
6+
pathex=[],
7+
binaries=[],
8+
datas=[],
9+
hiddenimports=[],
10+
hookspath=[],
11+
hooksconfig={},
12+
runtime_hooks=[],
13+
excludes=[],
14+
noarchive=False,
15+
optimize=0,
16+
)
17+
pyz = PYZ(a.pure)
18+
19+
exe = EXE(
20+
pyz,
21+
a.scripts,
22+
[],
23+
exclude_binaries=True,
24+
name='main',
25+
debug=False,
26+
bootloader_ignore_signals=False,
27+
strip=False,
28+
upx=True,
29+
console=False,
30+
disable_windowed_traceback=False,
31+
argv_emulation=False,
32+
target_arch=None,
33+
codesign_identity=None,
34+
entitlements_file=None,
35+
icon=['icon.ico'],
36+
)
37+
coll = COLLECT(
38+
exe,
39+
a.binaries,
40+
a.datas,
41+
strip=False,
42+
upx=True,
43+
upx_exclude=[],
44+
name='main',
45+
)

name.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
神里绫华
2+
流萤
3+
三月七
94.9 KB
Binary file not shown.

release/main/_internal/_asyncio.pyd

63.7 KB
Binary file not shown.

release/main/_internal/_bz2.pyd

84.7 KB
Binary file not shown.

release/main/_internal/_ctypes.pyd

124 KB
Binary file not shown.

release/main/_internal/_decimal.pyd

267 KB
Binary file not shown.

release/main/_internal/_hashlib.pyd

64.7 KB
Binary file not shown.

release/main/_internal/_lzma.pyd

159 KB
Binary file not shown.
29.7 KB
Binary file not shown.
45.2 KB
Binary file not shown.

release/main/_internal/_queue.pyd

28.7 KB
Binary file not shown.

release/main/_internal/_socket.pyd

78.7 KB
Binary file not shown.

release/main/_internal/_ssl.pyd

152 KB
Binary file not shown.

release/main/_internal/_uuid.pyd

23.2 KB
Binary file not shown.
828 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pip
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Copyright 2010 Jason Kirtland
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a
4+
copy of this software and associated documentation files (the
5+
"Software"), to deal in the Software without restriction, including
6+
without limitation the rights to use, copy, modify, merge, publish,
7+
distribute, sublicense, and/or sell copies of the Software, and to
8+
permit persons to whom the Software is furnished to do so, subject to
9+
the following conditions:
10+
11+
The above copyright notice and this permission notice shall be included
12+
in all copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
19+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
Metadata-Version: 2.1
2+
Name: blinker
3+
Version: 1.8.2
4+
Summary: Fast, simple object-to-object and broadcast signaling
5+
Author: Jason Kirtland
6+
Maintainer-email: Pallets Ecosystem <[email protected]>
7+
Requires-Python: >=3.8
8+
Description-Content-Type: text/markdown
9+
Classifier: Development Status :: 5 - Production/Stable
10+
Classifier: License :: OSI Approved :: MIT License
11+
Classifier: Programming Language :: Python
12+
Classifier: Typing :: Typed
13+
Project-URL: Chat, https://discord.gg/pallets
14+
Project-URL: Documentation, https://blinker.readthedocs.io
15+
Project-URL: Source, https://github.com/pallets-eco/blinker/
16+
17+
# Blinker
18+
19+
Blinker provides a fast dispatching system that allows any number of
20+
interested parties to subscribe to events, or "signals".
21+
22+
23+
## Pallets Community Ecosystem
24+
25+
> [!IMPORTANT]\
26+
> This project is part of the Pallets Community Ecosystem. Pallets is the open
27+
> source organization that maintains Flask; Pallets-Eco enables community
28+
> maintenance of related projects. If you are interested in helping maintain
29+
> this project, please reach out on [the Pallets Discord server][discord].
30+
>
31+
> [discord]: https://discord.gg/pallets
32+
33+
34+
## Example
35+
36+
Signal receivers can subscribe to specific senders or receive signals
37+
sent by any sender.
38+
39+
```pycon
40+
>>> from blinker import signal
41+
>>> started = signal('round-started')
42+
>>> def each(round):
43+
... print(f"Round {round}")
44+
...
45+
>>> started.connect(each)
46+
47+
>>> def round_two(round):
48+
... print("This is round two.")
49+
...
50+
>>> started.connect(round_two, sender=2)
51+
52+
>>> for round in range(1, 4):
53+
... started.send(round)
54+
...
55+
Round 1!
56+
Round 2!
57+
This is round two.
58+
Round 3!
59+
```
60+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
blinker-1.8.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
2+
blinker-1.8.2.dist-info/LICENSE.txt,sha256=nrc6HzhZekqhcCXSrhvjg5Ykx5XphdTw6Xac4p-spGc,1054
3+
blinker-1.8.2.dist-info/METADATA,sha256=3tEx40hm9IEofyFqDPJsDPE9MAIEhtifapoSp7FqzuA,1633
4+
blinker-1.8.2.dist-info/RECORD,,
5+
blinker-1.8.2.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
6+
blinker/__init__.py,sha256=ymyJY_PoTgBzaPgdr4dq-RRsGh7D-sYQIGMNp8Rx4qc,1577
7+
blinker/__pycache__/__init__.cpython-39.pyc,,
8+
blinker/__pycache__/_utilities.cpython-39.pyc,,
9+
blinker/__pycache__/base.cpython-39.pyc,,
10+
blinker/_utilities.py,sha256=0J7eeXXTUx0Ivf8asfpx0ycVkp0Eqfqnj117x2mYX9E,1675
11+
blinker/base.py,sha256=nIZJEtXQ8LLZZJrwVp2wQcdfCzDixvAHR9VpSWiyVcQ,22574
12+
blinker/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Wheel-Version: 1.0
2+
Generator: flit 3.9.0
3+
Root-Is-Purelib: true
4+
Tag: py3-none-any
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pip
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Copyright 2010 Pallets
2+
3+
Redistribution and use in source and binary forms, with or without
4+
modification, are permitted provided that the following conditions are
5+
met:
6+
7+
1. Redistributions of source code must retain the above copyright
8+
notice, this list of conditions and the following disclaimer.
9+
10+
2. Redistributions in binary form must reproduce the above copyright
11+
notice, this list of conditions and the following disclaimer in the
12+
documentation and/or other materials provided with the distribution.
13+
14+
3. Neither the name of the copyright holder nor the names of its
15+
contributors may be used to endorse or promote products derived from
16+
this software without specific prior written permission.
17+
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
21+
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22+
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
24+
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
25+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
Metadata-Version: 2.1
2+
Name: Flask
3+
Version: 3.0.3
4+
Summary: A simple framework for building complex web applications.
5+
Maintainer-email: Pallets <[email protected]>
6+
Requires-Python: >=3.8
7+
Description-Content-Type: text/markdown
8+
Classifier: Development Status :: 5 - Production/Stable
9+
Classifier: Environment :: Web Environment
10+
Classifier: Framework :: Flask
11+
Classifier: Intended Audience :: Developers
12+
Classifier: License :: OSI Approved :: BSD License
13+
Classifier: Operating System :: OS Independent
14+
Classifier: Programming Language :: Python
15+
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
16+
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
17+
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
18+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
19+
Classifier: Typing :: Typed
20+
Requires-Dist: Werkzeug>=3.0.0
21+
Requires-Dist: Jinja2>=3.1.2
22+
Requires-Dist: itsdangerous>=2.1.2
23+
Requires-Dist: click>=8.1.3
24+
Requires-Dist: blinker>=1.6.2
25+
Requires-Dist: importlib-metadata>=3.6.0; python_version < '3.10'
26+
Requires-Dist: asgiref>=3.2 ; extra == "async"
27+
Requires-Dist: python-dotenv ; extra == "dotenv"
28+
Project-URL: Changes, https://flask.palletsprojects.com/changes/
29+
Project-URL: Chat, https://discord.gg/pallets
30+
Project-URL: Documentation, https://flask.palletsprojects.com/
31+
Project-URL: Donate, https://palletsprojects.com/donate
32+
Project-URL: Source, https://github.com/pallets/flask/
33+
Provides-Extra: async
34+
Provides-Extra: dotenv
35+
36+
# Flask
37+
38+
Flask is a lightweight [WSGI][] web application framework. It is designed
39+
to make getting started quick and easy, with the ability to scale up to
40+
complex applications. It began as a simple wrapper around [Werkzeug][]
41+
and [Jinja][], and has become one of the most popular Python web
42+
application frameworks.
43+
44+
Flask offers suggestions, but doesn't enforce any dependencies or
45+
project layout. It is up to the developer to choose the tools and
46+
libraries they want to use. There are many extensions provided by the
47+
community that make adding new functionality easy.
48+
49+
[WSGI]: https://wsgi.readthedocs.io/
50+
[Werkzeug]: https://werkzeug.palletsprojects.com/
51+
[Jinja]: https://jinja.palletsprojects.com/
52+
53+
54+
## Installing
55+
56+
Install and update from [PyPI][] using an installer such as [pip][]:
57+
58+
```
59+
$ pip install -U Flask
60+
```
61+
62+
[PyPI]: https://pypi.org/project/Flask/
63+
[pip]: https://pip.pypa.io/en/stable/getting-started/
64+
65+
66+
## A Simple Example
67+
68+
```python
69+
# save this as app.py
70+
from flask import Flask
71+
72+
app = Flask(__name__)
73+
74+
@app.route("/")
75+
def hello():
76+
return "Hello, World!"
77+
```
78+
79+
```
80+
$ flask run
81+
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
82+
```
83+
84+
85+
## Contributing
86+
87+
For guidance on setting up a development environment and how to make a
88+
contribution to Flask, see the [contributing guidelines][].
89+
90+
[contributing guidelines]: https://github.com/pallets/flask/blob/main/CONTRIBUTING.rst
91+
92+
93+
## Donate
94+
95+
The Pallets organization develops and supports Flask and the libraries
96+
it uses. In order to grow the community of contributors and users, and
97+
allow the maintainers to devote more time to the projects, [please
98+
donate today][].
99+
100+
[please donate today]: https://palletsprojects.com/donate
101+

0 commit comments

Comments
 (0)