Hiroaki Ogasawara commited on
Commit
59d0eb8
·
1 Parent(s): 3b87e90

refactor: packages

Browse files
Files changed (6) hide show
  1. .gitignore +167 -0
  2. README.md +3 -1
  3. app.py +4 -6
  4. pyproject.toml +0 -1
  5. requirements.txt +0 -1
  6. uv.lock +0 -2
.gitignore ADDED
@@ -0,0 +1,167 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .gradio
2
+
3
+ ### Generated by gibo (https://github.com/simonwhitaker/gibo)
4
+ ### https://raw.github.com/github/gitignore/8779ee73af62c669e7ca371aaab8399d87127693/Python.gitignore
5
+
6
+ # Byte-compiled / optimized / DLL files
7
+ __pycache__/
8
+ *.py[cod]
9
+ *$py.class
10
+
11
+ # C extensions
12
+ *.so
13
+
14
+ # Distribution / packaging
15
+ .Python
16
+ build/
17
+ develop-eggs/
18
+ dist/
19
+ downloads/
20
+ eggs/
21
+ .eggs/
22
+ lib/
23
+ lib64/
24
+ parts/
25
+ sdist/
26
+ var/
27
+ wheels/
28
+ share/python-wheels/
29
+ *.egg-info/
30
+ .installed.cfg
31
+ *.egg
32
+ MANIFEST
33
+
34
+ # PyInstaller
35
+ # Usually these files are written by a python script from a template
36
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
37
+ *.manifest
38
+ *.spec
39
+
40
+ # Installer logs
41
+ pip-log.txt
42
+ pip-delete-this-directory.txt
43
+
44
+ # Unit test / coverage reports
45
+ htmlcov/
46
+ .tox/
47
+ .nox/
48
+ .coverage
49
+ .coverage.*
50
+ .cache
51
+ nosetests.xml
52
+ coverage.xml
53
+ *.cover
54
+ *.py,cover
55
+ .hypothesis/
56
+ .pytest_cache/
57
+ cover/
58
+
59
+ # Translations
60
+ *.mo
61
+ *.pot
62
+
63
+ # Django stuff:
64
+ *.log
65
+ local_settings.py
66
+ db.sqlite3
67
+ db.sqlite3-journal
68
+
69
+ # Flask stuff:
70
+ instance/
71
+ .webassets-cache
72
+
73
+ # Scrapy stuff:
74
+ .scrapy
75
+
76
+ # Sphinx documentation
77
+ docs/_build/
78
+
79
+ # PyBuilder
80
+ .pybuilder/
81
+ target/
82
+
83
+ # Jupyter Notebook
84
+ .ipynb_checkpoints
85
+
86
+ # IPython
87
+ profile_default/
88
+ ipython_config.py
89
+
90
+ # pyenv
91
+ # For a library or package, you might want to ignore these files since the code is
92
+ # intended to run in multiple environments; otherwise, check them in:
93
+ # .python-version
94
+
95
+ # pipenv
96
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
97
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
98
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
99
+ # install all needed dependencies.
100
+ #Pipfile.lock
101
+
102
+ # poetry
103
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
104
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
105
+ # commonly ignored for libraries.
106
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
107
+ #poetry.lock
108
+
109
+ # pdm
110
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
111
+ #pdm.lock
112
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
113
+ # in version control.
114
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
115
+ .pdm.toml
116
+ .pdm-python
117
+ .pdm-build/
118
+
119
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
120
+ __pypackages__/
121
+
122
+ # Celery stuff
123
+ celerybeat-schedule
124
+ celerybeat.pid
125
+
126
+ # SageMath parsed files
127
+ *.sage.py
128
+
129
+ # Environments
130
+ .env
131
+ .venv
132
+ env/
133
+ venv/
134
+ ENV/
135
+ env.bak/
136
+ venv.bak/
137
+
138
+ # Spyder project settings
139
+ .spyderproject
140
+ .spyproject
141
+
142
+ # Rope project settings
143
+ .ropeproject
144
+
145
+ # mkdocs documentation
146
+ /site
147
+
148
+ # mypy
149
+ .mypy_cache/
150
+ .dmypy.json
151
+ dmypy.json
152
+
153
+ # Pyre type checker
154
+ .pyre/
155
+
156
+ # pytype static type analyzer
157
+ .pytype/
158
+
159
+ # Cython debug symbols
160
+ cython_debug/
161
+
162
+ # PyCharm
163
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
164
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
165
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
166
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
167
+ #.idea/
README.md CHANGED
@@ -9,4 +9,6 @@ app_file: app.py
9
  pinned: false
10
  ---
11
 
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
9
  pinned: false
10
  ---
11
 
12
+ ```shell
13
+ uv run python app.py
14
+ ```
app.py CHANGED
@@ -1,7 +1,7 @@
1
  import gradio as gr
2
- from PIL import Image
3
  import imagehash
4
 
 
5
  def compare_images(img1, img2):
6
  if img1 is None or img2 is None:
7
  return "画像を2つともアップロードしてください。"
@@ -10,15 +10,13 @@ def compare_images(img1, img2):
10
  diff = hash1 - hash2
11
  return f"2つの画像のハッシュ差異は: {diff} です。"
12
 
 
13
  iface = gr.Interface(
14
  fn=compare_images,
15
- inputs=[
16
- gr.Image(type="pil"),
17
- gr.Image(type="pil")
18
- ],
19
  outputs="text",
20
  title="画像ハッシュ差分計算アプリ",
21
- description="2つの画像をアップロードして、imagehashでハッシュの差を計算します。"
22
  )
23
 
24
  iface.launch()
 
1
  import gradio as gr
 
2
  import imagehash
3
 
4
+
5
  def compare_images(img1, img2):
6
  if img1 is None or img2 is None:
7
  return "画像を2つともアップロードしてください。"
 
10
  diff = hash1 - hash2
11
  return f"2つの画像のハッシュ差異は: {diff} です。"
12
 
13
+
14
  iface = gr.Interface(
15
  fn=compare_images,
16
+ inputs=[gr.Image(type="pil"), gr.Image(type="pil")],
 
 
 
17
  outputs="text",
18
  title="画像ハッシュ差分計算アプリ",
19
+ description="2つの画像をアップロードして、imagehashでハッシュの差を計算します。",
20
  )
21
 
22
  iface.launch()
pyproject.toml CHANGED
@@ -7,5 +7,4 @@ requires-python = ">=3.12.7"
7
  dependencies = [
8
  "gradio>=5.3.0",
9
  "imagehash>=4.3.1",
10
- "pillow>=10.4.0",
11
  ]
 
7
  dependencies = [
8
  "gradio>=5.3.0",
9
  "imagehash>=4.3.1",
 
10
  ]
requirements.txt CHANGED
@@ -1,3 +1,2 @@
1
  gradio
2
- Pillow
3
  imagehash
 
1
  gradio
 
2
  imagehash
uv.lock CHANGED
@@ -286,14 +286,12 @@ source = { virtual = "." }
286
  dependencies = [
287
  { name = "gradio" },
288
  { name = "imagehash" },
289
- { name = "pillow" },
290
  ]
291
 
292
  [package.metadata]
293
  requires-dist = [
294
  { name = "gradio", specifier = ">=5.3.0" },
295
  { name = "imagehash", specifier = ">=4.3.1" },
296
- { name = "pillow", specifier = ">=10.4.0" },
297
  ]
298
 
299
  [[package]]
 
286
  dependencies = [
287
  { name = "gradio" },
288
  { name = "imagehash" },
 
289
  ]
290
 
291
  [package.metadata]
292
  requires-dist = [
293
  { name = "gradio", specifier = ">=5.3.0" },
294
  { name = "imagehash", specifier = ">=4.3.1" },
 
295
  ]
296
 
297
  [[package]]