r.go
commited on
Commit
·
977c1a2
1
Parent(s):
26a534f
gg
Browse files- .gitattributes +1 -0
- Dockerfile +17 -4
- Pipfile +2 -0
- Pipfile.lock +171 -2
- README.md +7 -0
- fonts/MPLUSRounded1c-Bold.ttf +3 -0
- fonts/MPLUSRounded1c-Regular.ttf +3 -0
- main.py +60 -18
.gitattributes
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
*.ttf filter=lfs diff=lfs merge=lfs -text
|
Dockerfile
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
-
|
|
|
2 |
FROM python:${PYTHON_VERSION}-slim AS base
|
3 |
|
4 |
RUN apt-get update && \
|
@@ -19,16 +20,28 @@ ENV PIPENV_VENV_IN_PROJECT=1
|
|
19 |
|
20 |
WORKDIR /app
|
21 |
|
22 |
-
COPY requirements.txt .
|
23 |
|
24 |
-
RUN pipenv install --dev --ignore-pipfile
|
25 |
# RUN pipenv install --dev --ignore-pipfile
|
26 |
|
27 |
COPY . .
|
28 |
|
29 |
EXPOSE 7860
|
30 |
|
31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
|
33 |
# CMD pipenv run python update.py
|
34 |
# CMD pipenv run python -m gunicorn main:app -b 0.0.0.0:7860 -w 8 --timeout 600
|
|
|
1 |
+
|
2 |
+
ARG PYTHON_VERSION=3.12.1
|
3 |
FROM python:${PYTHON_VERSION}-slim AS base
|
4 |
|
5 |
RUN apt-get update && \
|
|
|
20 |
|
21 |
WORKDIR /app
|
22 |
|
23 |
+
# COPY requirements.txt .
|
24 |
|
|
|
25 |
# RUN pipenv install --dev --ignore-pipfile
|
26 |
|
27 |
COPY . .
|
28 |
|
29 |
EXPOSE 7860
|
30 |
|
31 |
+
RUN pipenv run pip install \
|
32 |
+
blinker==1.8.2 \
|
33 |
+
click==8.1.7 \
|
34 |
+
emoji==2.14.0 \
|
35 |
+
flask==3.0.3 \
|
36 |
+
itsdangerous==2.2.0 \
|
37 |
+
pillow==11.0.0 \
|
38 |
+
requests==2.32.3 \
|
39 |
+
urllib3==1.26.20 \
|
40 |
+
werkzeug==3.0.6 \
|
41 |
+
fastapi \
|
42 |
+
uvicorn \
|
43 |
+
git+https://github.com/jay3332/pilmoji@6ff436fe0a28362bd1d411863347face33e3b6ac
|
44 |
+
|
45 |
|
46 |
# CMD pipenv run python update.py
|
47 |
# CMD pipenv run python -m gunicorn main:app -b 0.0.0.0:7860 -w 8 --timeout 600
|
Pipfile
CHANGED
@@ -14,6 +14,8 @@ pilmoji = {ref = "6ff436fe0a28362bd1d411863347face33e3b6ac", git = "git+https://
|
|
14 |
requests = "==2.32.3"
|
15 |
urllib3 = "==1.26.20"
|
16 |
werkzeug = "==3.0.6"
|
|
|
|
|
17 |
|
18 |
[dev-packages]
|
19 |
|
|
|
14 |
requests = "==2.32.3"
|
15 |
urllib3 = "==1.26.20"
|
16 |
werkzeug = "==3.0.6"
|
17 |
+
fastapi = "*"
|
18 |
+
uvicorn = "*"
|
19 |
|
20 |
[dev-packages]
|
21 |
|
Pipfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
{
|
2 |
"_meta": {
|
3 |
"hash": {
|
4 |
-
"sha256": "
|
5 |
},
|
6 |
"pipfile-spec": 6,
|
7 |
"requires": {
|
@@ -16,6 +16,22 @@
|
|
16 |
]
|
17 |
},
|
18 |
"default": {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
"blinker": {
|
20 |
"hashes": [
|
21 |
"sha256:1779309f71bf239144b9399d06ae925637cf6634cf6bd131104184531bf67c01",
|
@@ -162,6 +178,15 @@
|
|
162 |
"markers": "python_version >= '3.7'",
|
163 |
"version": "==2.14.0"
|
164 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
165 |
"flask": {
|
166 |
"hashes": [
|
167 |
"sha256:34e815dfaa43340d1d15a5c3a02b8476004037eb4840b34910c6e21679d288f3",
|
@@ -171,6 +196,14 @@
|
|
171 |
"markers": "python_version >= '3.8'",
|
172 |
"version": "==3.0.3"
|
173 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
"idna": {
|
175 |
"hashes": [
|
176 |
"sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9",
|
@@ -348,7 +381,110 @@
|
|
348 |
"pilmoji": {
|
349 |
"git": "git+https://github.com/jay3332/pilmoji",
|
350 |
"markers": "python_full_version >= '3.8.0'",
|
351 |
-
"ref":
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
352 |
},
|
353 |
"requests": {
|
354 |
"hashes": [
|
@@ -359,6 +495,30 @@
|
|
359 |
"markers": "python_version >= '3.8'",
|
360 |
"version": "==2.32.3"
|
361 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
362 |
"urllib3": {
|
363 |
"hashes": [
|
364 |
"sha256:0ed14ccfbf1c30a9072c7ca157e4319b70d65f623e91e7b32fadb2853431016e",
|
@@ -368,6 +528,15 @@
|
|
368 |
"markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5'",
|
369 |
"version": "==1.26.20"
|
370 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
371 |
"werkzeug": {
|
372 |
"hashes": [
|
373 |
"sha256:1bc0c2310d2fbb07b1dd1105eba2f7af72f322e1e455f2f93c993bee8c8a5f17",
|
|
|
1 |
{
|
2 |
"_meta": {
|
3 |
"hash": {
|
4 |
+
"sha256": "3a38e41e226e404bef6d1871b486b9337f08bf478a803ef8bbabf7dc29da8d8e"
|
5 |
},
|
6 |
"pipfile-spec": 6,
|
7 |
"requires": {
|
|
|
16 |
]
|
17 |
},
|
18 |
"default": {
|
19 |
+
"annotated-types": {
|
20 |
+
"hashes": [
|
21 |
+
"sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53",
|
22 |
+
"sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89"
|
23 |
+
],
|
24 |
+
"markers": "python_version >= '3.8'",
|
25 |
+
"version": "==0.7.0"
|
26 |
+
},
|
27 |
+
"anyio": {
|
28 |
+
"hashes": [
|
29 |
+
"sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c",
|
30 |
+
"sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"
|
31 |
+
],
|
32 |
+
"markers": "python_version >= '3.9'",
|
33 |
+
"version": "==4.6.2.post1"
|
34 |
+
},
|
35 |
"blinker": {
|
36 |
"hashes": [
|
37 |
"sha256:1779309f71bf239144b9399d06ae925637cf6634cf6bd131104184531bf67c01",
|
|
|
178 |
"markers": "python_version >= '3.7'",
|
179 |
"version": "==2.14.0"
|
180 |
},
|
181 |
+
"fastapi": {
|
182 |
+
"hashes": [
|
183 |
+
"sha256:0b504a063ffb3cf96a5e27dc1bc32c80ca743a2528574f9cdc77daa2d31b4742",
|
184 |
+
"sha256:db653475586b091cb8b2fec2ac54a680ac6a158e07406e1abae31679e8826349"
|
185 |
+
],
|
186 |
+
"index": "pypi",
|
187 |
+
"markers": "python_version >= '3.8'",
|
188 |
+
"version": "==0.115.4"
|
189 |
+
},
|
190 |
"flask": {
|
191 |
"hashes": [
|
192 |
"sha256:34e815dfaa43340d1d15a5c3a02b8476004037eb4840b34910c6e21679d288f3",
|
|
|
196 |
"markers": "python_version >= '3.8'",
|
197 |
"version": "==3.0.3"
|
198 |
},
|
199 |
+
"h11": {
|
200 |
+
"hashes": [
|
201 |
+
"sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d",
|
202 |
+
"sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"
|
203 |
+
],
|
204 |
+
"markers": "python_version >= '3.7'",
|
205 |
+
"version": "==0.14.0"
|
206 |
+
},
|
207 |
"idna": {
|
208 |
"hashes": [
|
209 |
"sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9",
|
|
|
381 |
"pilmoji": {
|
382 |
"git": "git+https://github.com/jay3332/pilmoji",
|
383 |
"markers": "python_full_version >= '3.8.0'",
|
384 |
+
"ref": null
|
385 |
+
},
|
386 |
+
"pydantic": {
|
387 |
+
"hashes": [
|
388 |
+
"sha256:d155cef71265d1e9807ed1c32b4c8deec042a44a50a4188b25ac67ecd81a9c0f",
|
389 |
+
"sha256:f048cec7b26778210e28a0459867920654d48e5e62db0958433636cde4254f12"
|
390 |
+
],
|
391 |
+
"markers": "python_version >= '3.8'",
|
392 |
+
"version": "==2.9.2"
|
393 |
+
},
|
394 |
+
"pydantic-core": {
|
395 |
+
"hashes": [
|
396 |
+
"sha256:0a7df63886be5e270da67e0966cf4afbae86069501d35c8c1b3b6c168f42cb36",
|
397 |
+
"sha256:0cb3da3fd1b6a5d0279a01877713dbda118a2a4fc6f0d821a57da2e464793f05",
|
398 |
+
"sha256:0dbd8dbed2085ed23b5c04afa29d8fd2771674223135dc9bc937f3c09284d071",
|
399 |
+
"sha256:0dff76e0602ca7d4cdaacc1ac4c005e0ce0dcfe095d5b5259163a80d3a10d327",
|
400 |
+
"sha256:1278e0d324f6908e872730c9102b0112477a7f7cf88b308e4fc36ce1bdb6d58c",
|
401 |
+
"sha256:128585782e5bfa515c590ccee4b727fb76925dd04a98864182b22e89a4e6ed36",
|
402 |
+
"sha256:1498bec4c05c9c787bde9125cfdcc63a41004ff167f495063191b863399b1a29",
|
403 |
+
"sha256:19442362866a753485ba5e4be408964644dd6a09123d9416c54cd49171f50744",
|
404 |
+
"sha256:1b84d168f6c48fabd1f2027a3d1bdfe62f92cade1fb273a5d68e621da0e44e6d",
|
405 |
+
"sha256:1e90d2e3bd2c3863d48525d297cd143fe541be8bbf6f579504b9712cb6b643ec",
|
406 |
+
"sha256:20152074317d9bed6b7a95ade3b7d6054845d70584216160860425f4fbd5ee9e",
|
407 |
+
"sha256:216f9b2d7713eb98cb83c80b9c794de1f6b7e3145eef40400c62e86cee5f4e1e",
|
408 |
+
"sha256:233710f069d251feb12a56da21e14cca67994eab08362207785cf8c598e74577",
|
409 |
+
"sha256:255a8ef062cbf6674450e668482456abac99a5583bbafb73f9ad469540a3a232",
|
410 |
+
"sha256:2584f7cf844ac4d970fba483a717dbe10c1c1c96a969bf65d61ffe94df1b2863",
|
411 |
+
"sha256:2971bb5ffe72cc0f555c13e19b23c85b654dd2a8f7ab493c262071377bfce9f6",
|
412 |
+
"sha256:29d2c342c4bc01b88402d60189f3df065fb0dda3654744d5a165a5288a657368",
|
413 |
+
"sha256:2e203fdf807ac7e12ab59ca2bfcabb38c7cf0b33c41efeb00f8e5da1d86af480",
|
414 |
+
"sha256:33e3d65a85a2a4a0dc3b092b938a4062b1a05f3a9abde65ea93b233bca0e03f2",
|
415 |
+
"sha256:374a5e5049eda9e0a44c696c7ade3ff355f06b1fe0bb945ea3cac2bc336478a2",
|
416 |
+
"sha256:37b0fe330e4a58d3c58b24d91d1eb102aeec675a3db4c292ec3928ecd892a9a6",
|
417 |
+
"sha256:3d5639516376dce1940ea36edf408c554475369f5da2abd45d44621cb616f769",
|
418 |
+
"sha256:42c6dcb030aefb668a2b7009c85b27f90e51e6a3b4d5c9bc4c57631292015b0d",
|
419 |
+
"sha256:4a7cd62e831afe623fbb7aabbb4fe583212115b3ef38a9f6b71869ba644624a2",
|
420 |
+
"sha256:4ba762ed58e8d68657fc1281e9bb72e1c3e79cc5d464be146e260c541ec12d84",
|
421 |
+
"sha256:4fc714bdbfb534f94034efaa6eadd74e5b93c8fa6315565a222f7b6f42ca1166",
|
422 |
+
"sha256:4ffa2ebd4c8530079140dd2d7f794a9d9a73cbb8e9d59ffe24c63436efa8f271",
|
423 |
+
"sha256:5a1504ad17ba4210df3a045132a7baeeba5a200e930f57512ee02909fc5c4cb5",
|
424 |
+
"sha256:5c364564d17da23db1106787675fc7af45f2f7b58b4173bfdd105564e132e6fb",
|
425 |
+
"sha256:5e11661ce0fd30a6790e8bcdf263b9ec5988e95e63cf901972107efc49218b13",
|
426 |
+
"sha256:5f54b118ce5de9ac21c363d9b3caa6c800341e8c47a508787e5868c6b79c9323",
|
427 |
+
"sha256:5f5ff8d839f4566a474a969508fe1c5e59c31c80d9e140566f9a37bba7b8d556",
|
428 |
+
"sha256:61817945f2fe7d166e75fbfb28004034b48e44878177fc54d81688e7b85a3665",
|
429 |
+
"sha256:624e278a7d29b6445e4e813af92af37820fafb6dcc55c012c834f9e26f9aaaef",
|
430 |
+
"sha256:63e46b3169866bd62849936de036f901a9356e36376079b05efa83caeaa02ceb",
|
431 |
+
"sha256:6531b7ca5f951d663c339002e91aaebda765ec7d61b7d1e3991051906ddde119",
|
432 |
+
"sha256:68665f4c17edcceecc112dfed5dbe6f92261fb9d6054b47d01bf6371a6196126",
|
433 |
+
"sha256:696dd8d674d6ce621ab9d45b205df149399e4bb9aa34102c970b721554828510",
|
434 |
+
"sha256:6f783e0ec4803c787bcea93e13e9932edab72068f68ecffdf86a99fd5918878b",
|
435 |
+
"sha256:723314c1d51722ab28bfcd5240d858512ffd3116449c557a1336cbe3919beb87",
|
436 |
+
"sha256:74b9127ffea03643e998e0c5ad9bd3811d3dac8c676e47db17b0ee7c3c3bf35f",
|
437 |
+
"sha256:7530e201d10d7d14abce4fb54cfe5b94a0aefc87da539d0346a484ead376c3cc",
|
438 |
+
"sha256:77733e3892bb0a7fa797826361ce8a9184d25c8dffaec60b7ffe928153680ba8",
|
439 |
+
"sha256:78ddaaa81421a29574a682b3179d4cf9e6d405a09b99d93ddcf7e5239c742e21",
|
440 |
+
"sha256:7c9129eb40958b3d4500fa2467e6a83356b3b61bfff1b414c7361d9220f9ae8f",
|
441 |
+
"sha256:7d32706badfe136888bdea71c0def994644e09fff0bfe47441deaed8e96fdbc6",
|
442 |
+
"sha256:81965a16b675b35e1d09dd14df53f190f9129c0202356ed44ab2728b1c905658",
|
443 |
+
"sha256:8394d940e5d400d04cad4f75c0598665cbb81aecefaca82ca85bd28264af7f9b",
|
444 |
+
"sha256:86d2f57d3e1379a9525c5ab067b27dbb8a0642fb5d454e17a9ac434f9ce523e3",
|
445 |
+
"sha256:883a91b5dd7d26492ff2f04f40fbb652de40fcc0afe07e8129e8ae779c2110eb",
|
446 |
+
"sha256:88ad334a15b32a791ea935af224b9de1bf99bcd62fabf745d5f3442199d86d59",
|
447 |
+
"sha256:9261d3ce84fa1d38ed649c3638feefeae23d32ba9182963e465d58d62203bd24",
|
448 |
+
"sha256:97df63000f4fea395b2824da80e169731088656d1818a11b95f3b173747b6cd9",
|
449 |
+
"sha256:98d134c954828488b153d88ba1f34e14259284f256180ce659e8d83e9c05eaa3",
|
450 |
+
"sha256:996a38a83508c54c78a5f41456b0103c30508fed9abcad0a59b876d7398f25fd",
|
451 |
+
"sha256:9a5bce9d23aac8f0cf0836ecfc033896aa8443b501c58d0602dbfd5bd5b37753",
|
452 |
+
"sha256:9a6b5099eeec78827553827f4c6b8615978bb4b6a88e5d9b93eddf8bb6790f55",
|
453 |
+
"sha256:9d18368b137c6295db49ce7218b1a9ba15c5bc254c96d7c9f9e924a9bc7825ad",
|
454 |
+
"sha256:a4fa4fc04dff799089689f4fd502ce7d59de529fc2f40a2c8836886c03e0175a",
|
455 |
+
"sha256:a5c7ba8ffb6d6f8f2ab08743be203654bb1aaa8c9dcb09f82ddd34eadb695605",
|
456 |
+
"sha256:aea443fffa9fbe3af1a9ba721a87f926fe548d32cab71d188a6ede77d0ff244e",
|
457 |
+
"sha256:b10bd51f823d891193d4717448fab065733958bdb6a6b351967bd349d48d5c9b",
|
458 |
+
"sha256:ba1a0996f6c2773bd83e63f18914c1de3c9dd26d55f4ac302a7efe93fb8e7433",
|
459 |
+
"sha256:bb2802e667b7051a1bebbfe93684841cc9351004e2badbd6411bf357ab8d5ac8",
|
460 |
+
"sha256:cfdd16ab5e59fc31b5e906d1a3f666571abc367598e3e02c83403acabc092e07",
|
461 |
+
"sha256:d06b0c8da4f16d1d1e352134427cb194a0a6e19ad5db9161bf32b2113409e728",
|
462 |
+
"sha256:d0776dea117cf5272382634bd2a5c1b6eb16767c223c6a5317cd3e2a757c61a0",
|
463 |
+
"sha256:d18ca8148bebe1b0a382a27a8ee60350091a6ddaf475fa05ef50dc35b5df6327",
|
464 |
+
"sha256:d4488a93b071c04dc20f5cecc3631fc78b9789dd72483ba15d423b5b3689b555",
|
465 |
+
"sha256:d5f7a395a8cf1621939692dba2a6b6a830efa6b3cee787d82c7de1ad2930de64",
|
466 |
+
"sha256:d7a80d21d613eec45e3d41eb22f8f94ddc758a6c4720842dc74c0581f54993d6",
|
467 |
+
"sha256:d97683ddee4723ae8c95d1eddac7c192e8c552da0c73a925a89fa8649bf13eea",
|
468 |
+
"sha256:dcedcd19a557e182628afa1d553c3895a9f825b936415d0dbd3cd0bbcfd29b4b",
|
469 |
+
"sha256:de6d1d1b9e5101508cb37ab0d972357cac5235f5c6533d1071964c47139257df",
|
470 |
+
"sha256:df49e7a0861a8c36d089c1ed57d308623d60416dab2647a4a17fe050ba85de0e",
|
471 |
+
"sha256:df933278128ea1cd77772673c73954e53a1c95a4fdf41eef97c2b779271bd0bd",
|
472 |
+
"sha256:e08277a400de01bc72436a0ccd02bdf596631411f592ad985dcee21445bd0068",
|
473 |
+
"sha256:e38e63e6f3d1cec5a27e0afe90a085af8b6806ee208b33030e65b6516353f1a3",
|
474 |
+
"sha256:e55541f756f9b3ee346b840103f32779c695a19826a4c442b7954550a0972040",
|
475 |
+
"sha256:ec4e55f79b1c4ffb2eecd8a0cfba9955a2588497d96851f4c8f99aa4a1d39b12",
|
476 |
+
"sha256:ed1a53de42fbe34853ba90513cea21673481cd81ed1be739f7f2efb931b24916",
|
477 |
+
"sha256:ed541d70698978a20eb63d8c5d72f2cc6d7079d9d90f6b50bad07826f1320f5f",
|
478 |
+
"sha256:f09e2ff1f17c2b51f2bc76d1cc33da96298f0a036a137f5440ab3ec5360b624f",
|
479 |
+
"sha256:f220b0eea5965dec25480b6333c788fb72ce5f9129e8759ef876a1d805d00801",
|
480 |
+
"sha256:f3e0da4ebaef65158d4dfd7d3678aad692f7666877df0002b8a522cdf088f231",
|
481 |
+
"sha256:f455ee30a9d61d3e1a15abd5068827773d6e4dc513e795f380cdd59932c782d5",
|
482 |
+
"sha256:f5ef8f42bec47f21d07668a043f077d507e5bf4e668d5c6dfe6aaba89de1a5b8",
|
483 |
+
"sha256:f69a8e0b033b747bb3e36a44e7732f0c99f7edd5cea723d45bc0d6e95377ffee",
|
484 |
+
"sha256:ff02b6d461a6de369f07ec15e465a88895f3223eb75073ffea56b84d9331f607"
|
485 |
+
],
|
486 |
+
"markers": "python_version >= '3.8'",
|
487 |
+
"version": "==2.23.4"
|
488 |
},
|
489 |
"requests": {
|
490 |
"hashes": [
|
|
|
495 |
"markers": "python_version >= '3.8'",
|
496 |
"version": "==2.32.3"
|
497 |
},
|
498 |
+
"sniffio": {
|
499 |
+
"hashes": [
|
500 |
+
"sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2",
|
501 |
+
"sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"
|
502 |
+
],
|
503 |
+
"markers": "python_version >= '3.7'",
|
504 |
+
"version": "==1.3.1"
|
505 |
+
},
|
506 |
+
"starlette": {
|
507 |
+
"hashes": [
|
508 |
+
"sha256:9834fd799d1a87fd346deb76158668cfa0b0d56f85caefe8268e2d97c3468b62",
|
509 |
+
"sha256:fbc189474b4731cf30fcef52f18a8d070e3f3b46c6a04c97579e85e6ffca942d"
|
510 |
+
],
|
511 |
+
"markers": "python_version >= '3.8'",
|
512 |
+
"version": "==0.41.2"
|
513 |
+
},
|
514 |
+
"typing-extensions": {
|
515 |
+
"hashes": [
|
516 |
+
"sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d",
|
517 |
+
"sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"
|
518 |
+
],
|
519 |
+
"markers": "python_version >= '3.8'",
|
520 |
+
"version": "==4.12.2"
|
521 |
+
},
|
522 |
"urllib3": {
|
523 |
"hashes": [
|
524 |
"sha256:0ed14ccfbf1c30a9072c7ca157e4319b70d65f623e91e7b32fadb2853431016e",
|
|
|
528 |
"markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5'",
|
529 |
"version": "==1.26.20"
|
530 |
},
|
531 |
+
"uvicorn": {
|
532 |
+
"hashes": [
|
533 |
+
"sha256:60b8f3a5ac027dcd31448f411ced12b5ef452c646f76f02f8cc3f25d8d26fd82",
|
534 |
+
"sha256:f78b36b143c16f54ccdb8190d0a26b5f1901fe5a3c777e1ab29f26391af8551e"
|
535 |
+
],
|
536 |
+
"index": "pypi",
|
537 |
+
"markers": "python_version >= '3.8'",
|
538 |
+
"version": "==0.32.0"
|
539 |
+
},
|
540 |
"werkzeug": {
|
541 |
"hashes": [
|
542 |
"sha256:1bc0c2310d2fbb07b1dd1105eba2f7af72f322e1e455f2f93c993bee8c8a5f17",
|
README.md
CHANGED
@@ -1,3 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# Make it a Quote
|
2 |
## 使い方
|
3 |
- `pip install -r requirements.txt`を実行
|
|
|
1 |
+
---
|
2 |
+
title: mkiaq
|
3 |
+
sdk: docker
|
4 |
+
emoji: 🗨️
|
5 |
+
colorFrom: green
|
6 |
+
colorTo: blue
|
7 |
+
---
|
8 |
# Make it a Quote
|
9 |
## 使い方
|
10 |
- `pip install -r requirements.txt`を実行
|
fonts/MPLUSRounded1c-Bold.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7cc22dbfebb98959d01f4dd86efcb8283ee9754319bfecb03e222ccfa82c65fb
|
3 |
+
size 3533308
|
fonts/MPLUSRounded1c-Regular.ttf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:31d6ab0e6d2f657792b788f155edd6003ed3953b1621142b4692e70535ef4c59
|
3 |
+
size 3380812
|
main.py
CHANGED
@@ -18,17 +18,26 @@ BASE_GD_W_IMAGE = Image.open("images/base-gd-w.png")
|
|
18 |
BASE_RV_W_IMAGE = Image.open("images/base-gd-w-rv.png")
|
19 |
|
20 |
BASE_IMAGE = Image.open("images/base.png")
|
|
|
|
|
21 |
MPLUS_FONT = ImageFont.truetype("fonts/MPLUSRounded1c-Regular.ttf", size=16)
|
22 |
-
|
|
|
|
|
23 |
BRAND = "http://s.id/MaiSakurajima"
|
24 |
|
25 |
def getsize(font, text):
|
26 |
left, top, right, bottom = font.getbbox(text)
|
27 |
return right - left, bottom
|
28 |
|
29 |
-
|
30 |
-
|
|
|
|
|
|
|
|
|
31 |
fontObj = ImageFont.truetype(font, size=size)
|
|
|
32 |
|
33 |
pure_lines = []
|
34 |
pos = 0
|
@@ -40,50 +49,83 @@ def drawText(im, ofs, string, font="fonts/MPLUSRounded1c-Regular.ttf", size=16,
|
|
40 |
pure_lines.append(l)
|
41 |
l = ""
|
42 |
pos += 1
|
43 |
-
elif char
|
44 |
-
pure_lines.append(l +
|
45 |
-
l = ""
|
46 |
-
pos += 1
|
47 |
-
elif char == "。" or char == ".":
|
48 |
-
pure_lines.append(l + ("。" if char == "。" else "."))
|
49 |
l = ""
|
50 |
pos += 1
|
51 |
else:
|
52 |
l += char
|
53 |
pos += 1
|
54 |
-
|
55 |
if l:
|
56 |
pure_lines.append(l)
|
57 |
else:
|
58 |
pure_lines = string.split("\n")
|
59 |
|
60 |
lines = []
|
61 |
-
|
62 |
for line in pure_lines:
|
63 |
lines.extend(fw_wrap(line, width=split_len))
|
64 |
|
65 |
dy = 0
|
66 |
-
|
67 |
draw_lines = []
|
68 |
|
69 |
for line in lines:
|
70 |
tsize = getsize(fontObj, line)
|
71 |
-
print(tsize)
|
72 |
ofs_y = ofs[1] + dy
|
73 |
t_height = tsize[1]
|
74 |
-
|
75 |
-
x = int(ofs[0] - (tsize[0]/2))
|
76 |
draw_lines.append((x, ofs_y, line))
|
77 |
ofs_y += t_height + padding
|
78 |
dy += t_height + padding
|
79 |
|
80 |
-
adj_y = -30 * (len(draw_lines)-1)
|
|
|
81 |
for dl in draw_lines:
|
82 |
with Pilmoji(im) as p:
|
83 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
|
85 |
real_y = ofs[1] + adj_y + dy
|
86 |
-
|
87 |
return (0, dy, real_y)
|
88 |
|
89 |
def make(name, id, content, icon):
|
|
|
18 |
BASE_RV_W_IMAGE = Image.open("images/base-gd-w-rv.png")
|
19 |
|
20 |
BASE_IMAGE = Image.open("images/base.png")
|
21 |
+
if BASE_IMAGE.mode != "RGBA":
|
22 |
+
BASE_IMAGE = BASE_IMAGE.convert("RGBA")
|
23 |
MPLUS_FONT = ImageFont.truetype("fonts/MPLUSRounded1c-Regular.ttf", size=16)
|
24 |
+
MPLUS_FONTBOLD = ImageFont.truetype("fonts/MPLUSRounded1c-Bold.ttf", size=16)
|
25 |
+
# BRAND = "http://hisoka.net\nhttp://s.id/MaiSakurajima"
|
26 |
+
# print(MPLUS_FONT.get_variation_names())
|
27 |
BRAND = "http://s.id/MaiSakurajima"
|
28 |
|
29 |
def getsize(font, text):
|
30 |
left, top, right, bottom = font.getbbox(text)
|
31 |
return right - left, bottom
|
32 |
|
33 |
+
from PIL import ImageFont, ImageDraw
|
34 |
+
from pilmoji import Pilmoji
|
35 |
+
|
36 |
+
|
37 |
+
def drawText(im, ofs, string, font="fonts/MPLUSRounded1c-Regular.ttf", bold_font="fonts/MPLUSRounded1c-Bold.ttf", size=16, color=(0, 0, 0, 255), split_len=None, padding=4, disable_dot_wrap=False):
|
38 |
+
v = ImageDraw.Draw(im)
|
39 |
fontObj = ImageFont.truetype(font, size=size)
|
40 |
+
boldFontObj = ImageFont.truetype(bold_font, size=size)
|
41 |
|
42 |
pure_lines = []
|
43 |
pos = 0
|
|
|
49 |
pure_lines.append(l)
|
50 |
l = ""
|
51 |
pos += 1
|
52 |
+
elif char in ["、", ",", "。", "."]:
|
53 |
+
pure_lines.append(l + char)
|
|
|
|
|
|
|
|
|
54 |
l = ""
|
55 |
pos += 1
|
56 |
else:
|
57 |
l += char
|
58 |
pos += 1
|
|
|
59 |
if l:
|
60 |
pure_lines.append(l)
|
61 |
else:
|
62 |
pure_lines = string.split("\n")
|
63 |
|
64 |
lines = []
|
|
|
65 |
for line in pure_lines:
|
66 |
lines.extend(fw_wrap(line, width=split_len))
|
67 |
|
68 |
dy = 0
|
|
|
69 |
draw_lines = []
|
70 |
|
71 |
for line in lines:
|
72 |
tsize = getsize(fontObj, line)
|
|
|
73 |
ofs_y = ofs[1] + dy
|
74 |
t_height = tsize[1]
|
75 |
+
x = int(ofs[0] - (tsize[0] / 2))
|
|
|
76 |
draw_lines.append((x, ofs_y, line))
|
77 |
ofs_y += t_height + padding
|
78 |
dy += t_height + padding
|
79 |
|
80 |
+
adj_y = -30 * (len(draw_lines) - 1)
|
81 |
+
|
82 |
for dl in draw_lines:
|
83 |
with Pilmoji(im) as p:
|
84 |
+
parts = dl[2].split('*') # * for bold
|
85 |
+
xPos = dl[0]
|
86 |
+
yPos = adj_y + dl[1]
|
87 |
+
|
88 |
+
for i, part in enumerate(parts):
|
89 |
+
if i % 2 == 1:
|
90 |
+
p.text((xPos, yPos), part, font=boldFontObj, fill=color)
|
91 |
+
xPos += v.textlength(part, font=boldFontObj)
|
92 |
+
else:
|
93 |
+
subparts = part.split('_') # _ for italic
|
94 |
+
for j, subpart in enumerate(subparts):
|
95 |
+
if j % 2 == 1:
|
96 |
+
text_width, text_height = getsize(fontObj, subpart)
|
97 |
+
|
98 |
+
padding = 15
|
99 |
+
italic_text_image = Image.new("RGBA", (text_width + padding * 2, text_height + padding * 2), (0, 0, 0, 0))
|
100 |
+
italic_draw = ImageDraw.Draw(italic_text_image)
|
101 |
+
italic_draw.text((padding, padding), subpart, font=fontObj, fill=color)
|
102 |
+
|
103 |
+
|
104 |
+
slant_amount = 0.2
|
105 |
+
italic_text_image = italic_text_image.transform(
|
106 |
+
italic_text_image.size,
|
107 |
+
Image.AFFINE,
|
108 |
+
(1, slant_amount, 0, 0, 1, 0),
|
109 |
+
resample=Image.BICUBIC
|
110 |
+
)
|
111 |
+
|
112 |
+
im.alpha_composite(italic_text_image, dest=(int(xPos), int(yPos - padding)))
|
113 |
+
|
114 |
+
xPos += text_width + int(slant_amount * size)
|
115 |
+
else:
|
116 |
+
strikethrough_parts = subpart.split('~')
|
117 |
+
for k, s_part in enumerate(strikethrough_parts):
|
118 |
+
if k % 2 == 1:
|
119 |
+
p.text((xPos, yPos), s_part, font=fontObj, fill=color)
|
120 |
+
text_width = v.textlength(s_part, font=fontObj)
|
121 |
+
line_y = yPos + text_height // 2 # Middle of the text
|
122 |
+
v.line((xPos, line_y, xPos + text_width, line_y), fill=color, width=1)
|
123 |
+
xPos += text_width
|
124 |
+
else:
|
125 |
+
p.text((xPos, yPos), s_part, font=fontObj, fill=color)
|
126 |
+
xPos += v.textlength(s_part, font=fontObj)
|
127 |
|
128 |
real_y = ofs[1] + adj_y + dy
|
|
|
129 |
return (0, dy, real_y)
|
130 |
|
131 |
def make(name, id, content, icon):
|