Metadata-Version: 2.1
Name: awaish-pkg
Version: 1.1
Summary: A simple package offering a collection of useful functions for enhanced productivity.
Home-page: https://github.com/abuawaish/awaish_pkg
Author: abuawaish
Author-email: abuawaish7@gmail.com
License: MIT
Keywords: funny
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Education
Classifier: Development Status :: 5 - Production/Stable
Description-Content-Type: text/x-rst
License-File: LICENSE.txt

Project Title
=============

This package comes with some useful functions that make your work easier. Here are the function names with their functionalities:

1. **``add_list_index_element()``**
   - Takes a list of integers as input, computes the sum of the digits of each integer, and creates a new list containing these sums.

2. **``stack()``**
   - Implements a simple stack data structure with a fixed size limit. Provides interactive operations for pushing and popping elements, allowing users to choose between pushing an element onto the stack, popping an element from the stack, or exiting the program.

3. **``find_positive_and_negative()``**
   - Reads a list of integers from the user.
   - Separates the positive and negative numbers into two different lists.
   - Calculates the sum of the positive numbers and the sum of the negative numbers.
   - Displays the original list, the lists of positive and negative numbers, and their respective sums.

4. **``factor_finder()``**
   - Finds all the factors of a given integer.
   - Prints each factor.
   - Calculates and prints the sum of all these factors.

5. **``count_vowel_and_spaces()``**
   - Counts the number of vowels and spaces in a given input text.
   - Identifies and lists all the vowels present in the text.
   - Displays the original text, the count and list of vowels, and the count of spaces.

6. **``prime_finder()``**
   - Determines whether a given number is prime.
   - Informs the user whether the number is prime or not through printed messages.

7. **``even_and_odd()``**
   - Reads a list of integers from the user.
   - Separates the integers into two lists: one for even numbers and one for odd numbers.
   - Displays the lists of even and odd numbers, or informs the user if no even or odd numbers were provided.

8. **``fibonacci_series()``**
   - Generates and prints the first n terms of the Fibonacci series, where n is provided by the user.

Documentation
-------------

For detailed documentation, see:
- `GitHub <https://github.com/abuawaish/awaish_pkg>`_

Author
------

Created by:
- `abuawaish7 <https://www.github.com/abuawaish>`_

Badges
------

awaish_pkg

.. image:: https://badge.fury.io/py/awaish_pkg.svg
   :target: https://pypi.org/project/awaish_pkg/

.. image:: https://img.shields.io/badge/License-MIT-yellow.svg
   :target: https://opensource.org/licenses/MIT

Installation and Use
--------------------

To install the package, use pip:

.. code-block:: sh

   pip install awaish_pkg

To use the package in your Python script:

.. code-block:: python

   import awaish_pkg
   help(awaish_pkg)


Change Log
==========

1.1(01/04/2024)
--------------------
- First Release
