Metadata-Version: 2.2
Name: libfinder
Version: 0.1.2
Summary: A simple package to check if a Python library is installed in a Jupyter notebook.
Home-page: https://github.com/KaushiML3/libfinder
Author: Kaushi Gihan
Author-email: kaushigihanml@gmail.com
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
License-File: LICENSE
Requires-Dist: pandas
Requires-Dist: numpy
Requires-Dist: ipython
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# libfinder

`libfinder` is a simple Python package that helps check if a library is installed in your python jupyter environment.

## 📌 Installation

Clone the repository and install:

```bash
git clone https://github.com/KaushiML3/libfinder
cd libfinder
pip install .

```

## Uses

common step
 ```bash
  pip install libfinder
```

1. Call the functions
   ```python
     import libfinder
   ```

    1. Get the module names
        ```python
          lib_name=libfinder.get_lib_name() **or** libfinder.get_lib_name()
          print(lib_name)
        ```

    2. Get the module versions and save the new_requirements.txt file
        ```python
          lib_ver=libfinder.get_lib_ver() **or** libfinder.get_lib_ver()
          print(lib_ver)
        ```

3. Use libfinder class  
     ```python
      import libfinder
      ```

    1. Create object
       ```python
         lib=libfinder.libraryfinder()
       ```

    3. Get the module names
        ```python
          lib.get_lib_name()
        ```

    4. Get the module versions
         ```python
          lib.get_lib_ver()
         ```

    5. Get the .txt file 
        ```python
          lib.to_txt("new_requirements.txt")
        ```

4. params
   
     ![image](https://github.com/KaushiML3/libfinder/blob/main/img/Screenshot%20(82).png)







