https://github.com/krypton-byte/removebg
https://github.com/krypton-byte/removebg
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/krypton-byte/removebg
- Owner: krypton-byte
- Created: 2021-10-16T14:37:12.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-10-16T15:32:34.000Z (over 4 years ago)
- Last Synced: 2024-10-06T09:48:04.962Z (over 1 year ago)
- Language: Python
- Size: 5.86 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Install Library
### pypi
```
$ pip3 install xremovebg
```
### github
```bash
$ pip install git+https://github.com/krypton-byte/removebg
```
# Library
```python
from removebg import RemoveBg
rb=RemoveBg()
res=rb.upload('images.png')
res.save('saved.png')
```
# Run server
```bash
$ python -m removebg -p 8000
```
# Command Line
## without session
```bash
$ python -m removebg --file=3.jpg --json 2>/dev/null
{
"url": "https://o.remove.bg/downloads/47b11d7f-3157-4dea-88ba-a47632c348a2/3-removebg-preview.png",
"filename": "3-removebg-preview.png",
"width": 500,
"height": 500,
"foreground_type": "product",
"rated": false
}
```
## save session
```bash
$ python -m removebg --file=3.jpg --save-session=session --json 2>/dev/null
{
"url": "https://o.remove.bg/downloads/47b11d7f-3157-4dea-88ba-a47632c348a2/3-removebg-preview.png",
"filename": "3-removebg-preview.png",
"width": 500,
"height": 500,
"foreground_type": "product",
"rated": false
}
```
## load session
```bash
$ python -m removebg --file=3.jpg --load-session=session --json 2>/dev/null
{
"url": "https://o.remove.bg/downloads/47b11d7f-3157-4dea-88ba-a47632c348a2/3-removebg-preview.png",
"filename": "3-removebg-preview.png",
"width": 500,
"height": 500,
"foreground_type": "product",
"rated": false
}
```
## get histories removebg
```bash
$ python -m removebg --get-histories --json 2>/dev/null
[{
"url": "https://o.remove.bg/downloads/47b11d7f-3157-4dea-88ba-a47632c348a2/3-removebg-preview.png",
"filename": "3-removebg-preview.png",
"width": 500,
"height": 500,
"foreground_type": "product",
"rated": false
}]
```