Metadata-Version: 2.4
Name: hipython
Version: 1.0.4
Summary: This is a simple hi python project
Home-page: https://github.com/hollson/hipython
Author: Hollson
Author-email: hollson@qq.com
License: MIT
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# 🐍 HiPython

**HiPython** is a simple python sample project.

<br/>

## 🚀 Installation

**hipython Installation :**

```bash
# Requires Python 3.6+
$ pip install hipython
```

**hipython information :**

```bash
$ pip list | grep hipython
hipython          1.0.1        /Users/hollson/hipython

$ pip  show hipython
Name: hipython
Version: 1.0.1
Summary: This is a simple hi python project
Author: Hollson
Author-email: hollson@qq.com
License: MIT
```



<br/>

## 📚 Usage Examples

**Basic Usage :**

```python
import hipython

print(hipython.PYTHON_VERSION)
hipython.echo()
hipython.logo()
```

**Command Line Usage :**

After installation, you can use it directly in the terminal:

```bash
$ hipython              # Show Python logo
$ hipython --echo       # Print greeting
$ hipython --version    # Show version info
$ hipython -h           # Show help

python -c "import hipython; hipython.echo()"
python -c "import hipython; hipython.logo()"
```

**Output :**

```bash
  ____        _   _
 |  _ \ _   _| |_| |__   ___  _ __ 
 | |_) | | | | __| '_ \ / _ \| '_ \
 |  __/| |_| | |_| | | | (_) | | | |
 |_|    \__, |\__|_| |_|\___/|_| |_| (v3.12)
        |___/
```



<br/>

## 🛠️ Uninstall

```bash
$ pip uninstall hipython -y
```



<br/>

## 📜 License

This project is open sourced under the MIT License - see the [LICENSE](LICENSE) file for details.
