Some checks failed
Gitea/kapitanbooru-uploader/pipeline/head There was a failure building this commit
Now with tagger Miejsce na zdjęcie Linki do wiki Zapis ustawień Tagger działa w tle Kolorujemy pliki po ratingu Tagger cache Tagi w bazie Pobranie implikacji tagów Autocomplete Podział na pliki i skrypty + nowe API Structure for package Version 0.1.0
13 lines
242 B
Python
13 lines
242 B
Python
"""kapitanbooru_uploader.__main__: executed
|
|
when kapitanbooru_uploader directory is called as script."""
|
|
from .ImageBrowser import ImageBrowser
|
|
|
|
|
|
def main():
|
|
app = ImageBrowser()
|
|
app.mainloop()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|