Metadata-Version: 2.4
Name: am-random-generator
Version: 0.1.1
Summary: A Python package to generate random strings with numbers, characters, or both
Home-page: https://github.com/ashish4824/RandomValue
Author: Ashish
Author-email: ashishmaurya0408@gmail.com
Keywords: random generator string number character
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
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: keywords
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# am-random-generator

A simple Python package to generate random numbers, characters or both of a given length.

## Installation

```bash
pip install am-random-generator
```

## Usage

```python
from randomgen import generate_random

# Generate both numbers and characters (default)
print(generate_random(8))  # e.g., "a2b9c4d8"

# Generate numbers only
print(generate_random(5, 'number'))  # e.g., "12345"

# Generate characters only
print(generate_random(10, 'char'))  # e.g., "abcdefghij"
```

## Development

To install the package locally for development:

```bash
git clone https://github.com/ashish4824/RandomValue.git
cd RandomValue
pip install -e .
```

## License

MIT License
