Metadata-Version: 2.4
Name: appple
Version: 0.1.0
Summary: Print cute text apples from Python.
Project-URL: Homepage, https://github.com/DrFirstLee/apple
Project-URL: Issues, https://github.com/DrFirstLee/apple/issues
Author: DrFirst
License-Expression: MIT
License-File: LICENSE
Keywords: apple,ascii,fun,text-art
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Artistic Software
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# apple

Print cute text apples from Python.

## Install

```bash
pip install appple
```

The PyPI distribution name is `appple`, while the Python import name remains `apple`.

## Usage

```python
import apple

apple.apple()
apple.rotten()
apple.green()
apple.bite()
apple.basket()
apple.samsung()
apple.angry()
apple.cute()
apple.sexy()
apple.nerd()
apple.sleepy()
apple.doctor()
apple.money()
apple.party()
apple.love()
apple.random()
```

Each function prints the apple art and also returns it as a string.

To see every available apple name:

```python
apple.kinds()
```

## Command Line

```bash
apple
apple samsung
apple angry
apple random
```

## Build and Publish

```bash
python -m pip install --upgrade build twine
python -m build
python -m twine upload dist/*
```