Skip to content

Commit d0792f9

Browse files
authored
Merge pull request #6 from raiyanyahya/raiyanyahya-patch-1
Raiyanyahya patch 1
2 parents f7814ef + 783dcfd commit d0792f9

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[![Actions Status](https://github.com/raiyanyahya/dallecli/workflows/Build%20Test/badge.svg)](https://github.com/raiyanyahya/dallecli/actions) [![Actions Status](https://github.com/raiyanyahya/dallecli/workflows/Package%20Release/badge.svg)](https://github.com/raiyanyahya/dallecli/actions) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=raiyanyahya_dallecli&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=raiyanyahya_dallecli)[![CodeQL](https://github.com/raiyanyahya/dallecli/workflows/CodeQL/badge.svg)](https://github.com/raiyanyahya/dallecli/actions?query=workflow%3ACodeQL) [![Codacy Badge](https://app.codacy.com/project/badge/Grade/851417bc6ec8405ba244438fe31dae55)](https://www.codacy.com/gh/raiyanyahya/dallecli/dashboard?utm_source=github.com&utm_medium=referral&utm_content=raiyanyahya/dallecli&utm_campaign=Badge_Grade) [![](https://img.shields.io/badge/python-3.6+-blue.svg)]
22
[![PyPI version](https://badge.fury.io/py/dallecli.png)](https://badge.fury.io/py/dallecli)[![PyPI download month](https://img.shields.io/pypi/dm/dallecli.svg)](https://pypi.python.org/pypi/dallecli/)[![Linux](https://svgshare.com/i/Zhy.svg)](https://svgshare.com/i/Zhy.svg)[![macOS](https://svgshare.com/i/ZjP.svg)](https://svgshare.com/i/ZjP.svg)
3-
# DC 💠
3+
# DalleCli 💠
44

5-
`dc` is a community-maintained cli designed to provide users with the ability to generate, edit and filter images using the DALL-E 2 API provided by OpenAI, all from the command line.
5+
`dallecli` is a community-maintained cli designed to provide users with the ability to generate, edit and filter images using the DALL-E 2 API provided by OpenAI, all from the command line.
66

77
The tool provides three main commands, generate, edit, and filter.
88

@@ -20,7 +20,7 @@ The cli requires you to have an api token to query the OpenAI's api. You can rea
2020

2121
## Installation
2222

23-
Install the dc python package directly from pypi.
23+
Install the dallecli python package directly from pypi.
2424

2525
```console
2626
pip install dallecli
@@ -30,7 +30,7 @@ I would recommend using pipx instead of pip to install cli applications on you m
3030
## Usage
3131

3232
```console
33-
Usage: dc [OPTIONS] COMMAND [ARGS]...
33+
Usage: dallecli [OPTIONS] COMMAND [ARGS]...
3434

3535
💠 Use the Dall.E 2 api to generate, edit & filter images from the cmd line.
3636

@@ -48,7 +48,7 @@ Commands:
4848

4949
**```generate```**
5050
```console
51-
Usage: dc generate [OPTIONS]
51+
Usage: dallecli generate [OPTIONS]
5252

5353
🌸 Generate an image from the OpenAI Dalle api
5454

@@ -63,7 +63,7 @@ Options:
6363

6464
**```edit```**
6565
```console
66-
Usage: dc edit [OPTIONS] IMAGE_PATH
66+
Usage: dallecli edit [OPTIONS] IMAGE_PATH
6767

6868
🎴 Change the brightness, contrast and sharpness of an image.
6969

@@ -76,7 +76,7 @@ Options:
7676

7777
**```filter```**
7878
```console
79-
Usage: dc filter [OPTIONS] IMAGE_PATH
79+
Usage: dallecli filter [OPTIONS] IMAGE_PATH
8080

8181
🦄 Apply filters and effects to an image.
8282

@@ -90,7 +90,7 @@ Options:
9090

9191
**```update```**
9292
```console
93-
Usage: dc update [OPTIONS]
93+
Usage: dallecli update [OPTIONS]
9494

9595
🔐 Update the OpenAI API key.
9696

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
name="dallecli",
1313
python_requires=">3.5",
1414
options={"bdist_wheel": {"universal": "1"}},
15-
version="1.0.0",
15+
version="1.1.0",
1616
description="A command line application to help wrap the OpenAI Dalle api and other utilities.",
1717
long_description=long_description,
1818
long_description_content_type="text/markdown",
@@ -23,5 +23,5 @@
2323
keywords=["cli", "developer tools", "productivity", "openai", "generative art", "ai"],
2424
packages=find_packages(),
2525
install_requires=["click==8.1.3", "openai==0.26.5", "rich==13.3.1", "idna"],
26-
entry_points={"console_scripts": ["dc=dallecli.cli:cli"]},
26+
entry_points={"console_scripts": ["dallecli=dallecli.cli:cli"]},
2727
)

0 commit comments

Comments
 (0)