Metadata-Version: 2.1
Name: givemecolor
Version: 1.0.1
Summary: Giveme Color is a random color generator package. Every time it returns a new random color and copies it to your clipboard.
Home-page: https://github.com/imparth7/giveme-color-py
Author: imparth
Project-URL: Bug Reports, https://github.com/imparth7/giveme-color-py/issues
Project-URL: Homepage, https://github.com/imparth7/giveme-color-py#readme
Keywords: random,color
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Giveme Color

Giveme Color is a simple Python package that generates a random color and copies it to the clipboard. Itâ€™s a handy tool for quickly obtaining a random color code for your projects.

## Features

- Generates a random color.
- Automatically copies the color code to your clipboard.

## Installation

You can install Giveme Color via pip:

```bash
pip install givemecolor
```

## Usage

### Method 1: Directly from Python

First, import the package in your Python script:

```python
import givemecolor
```

Then, call the function to generate a random color:

```python
givemecolor.givemecolor()
```

### Method 2: Using an Alias

Alternatively, you can import the function directly:

```python
from givemecolor import givemecolor
```

And call it the same way:

```python
givemecolor()
```

The color code will be copied to your clipboard automatically, so you can easily paste it wherever needed.

### Command Line Usage

After installation, you can also use `givemecolor` directly from the command line:

```bash
givemecolor
```

This command will generate a random color and copy the color code to your clipboard.

## Example

Hereâ€™s a quick example of using Giveme Color in a Python script:

```python
from givemecolor import givemecolor

# Generate a random color and copy it to the clipboard
givemecolor()
```

## About the Author

Giveme Color is created by Parth Dudhatra (imParth), a passionate software engineer, developer advocate, and content creator known for his contributions to the tech community. Parth is dedicated to frontend development, Python programming, open-source software, and sharing knowledge with others.

Parth is active on various social media platforms, where he shares insights, tutorials, and tips related to programming, web development, and software engineering. Parth's dedication to sharing his expertise and fostering a supportive environment for developers has earned him recognition and respect within the tech community.

You can connect with Parth on social media:

- [Portfolio](https://imparth.me)
- [X/Twitter](https://x.com/imparth73)
- [Instagram](https://instagram.com/imparth.dev)
- [GitHub](https://github.com/imparth7)
- [LinkedIn](https://linkedin.com/in/imparth7)
- [Medium](https://imparth7.medium.com)
- [Dev.to](https://dev.to/imparth)

If you have any questions, feedback, or suggestions, feel free to reach out on any platform!
