Metadata-Version: 2.1
Name: pyqt-dreamstudio
Version: 0.0.12
Summary: Using DreamStudio API in Python desktop application
Home-page: https://github.com/yjg30737/pyqt-dreamstudio.git
Author: Jung Gyu Yoon
Author-email: yjg30737@gmail.com
License: MIT
Description-Content-Type: text/markdown
License-File: LICENSE


# pyqt-dreamstudio

Using DreamStudio API in Python desktop application



You can make a bunch of image without installing heavy resources like CUDA, torch, etc. But it's not free.



This is separated from <a href="https://github.com/yjg30737/pyqt-openai">pyqt-openai</a> package to people who only wants to use stable diffusion api



and who wants to fork this to make their app.



## Prerequisite 

You have to get the DreamStudio api key from <a href="https://platform.stability.ai/docs/getting-started/authentication">here</a>.



Using DreamStudio or the API requires credits. Take a look at <a href="https://platform.stability.ai/docs/getting-started/credits-and-billing#sdxl-pricing-table">pricing</a> about this.



Make your image in <a href="https://beta.dreamstudio.ai/generate">here</a> before doing with this app.



## How to Install

### By Cloninig

1. git clone ~

2. cd pyqt-dreamstudio

3. pip install -r requirements.txt

4. python setup.py install

5. cd pyqt_dreamstudio

6. python main.py

### By pip

1. pip install pyqt_dreamstudio

2. 

```python

from PyQt5.QtWidgets import QApplication

# can use PySide6 as well

from pyqt_dreamstudio.main import ImageGeneratingToolWidget





if __name__ == "__main__":

    import sys



    app = QApplication(sys.argv)

    window = ImageGeneratingToolWidget()

    window.show()

    sys.exit(app.exec_())

```



## How to Use

There is the options tab at the right side of the window. 



Input your API key, choose parameters you want to set, write propmt, submit it, and you can see the result at the left side (which looks like file explorer) soon enough.



See the <a href="https://platform.stability.ai/docs/features/api-parameters">whole explanation</a> about every options to make better image.



After images got generated, you can copy or download any images when you put the mouse cursor over them.  



## Result

![image](https://github.com/yjg30737/pyqt-dreamstudio/assets/55078043/80101faf-fb0e-43e2-acb9-2cf51a9ff3b1)



## Note

As far as i know, Using Stable Diffusion with API doesn't support disable safety filter. Shame!!



So if you type any words which is considered as NSFW, toast containing error message will show up



## License

MIT

