Metadata-Version: 2.1
Name: sb_all_utility
Version: 0.0.2
Summary: Convert your file as you wish
Home-page: UNKNOWN
Author: Swagato Bag
Author-email: swagatobag23@gmail.com
License: MIT
Keywords: python,file,jpg to png,png to jpg,pdf to text,pdf to audio,image to pdf,json to csv
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Education
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: Licence


# sb_utility_library

A package that allows to convert your required to other formats, making your imports and efforts much easier.<br/>

**Under construction! Ready for use. But currently experimenting and planning for covering more!**<br/>

```
Developed by Swagato Bag (c) 2021
```

## Examples of How To Use (Beta Version)

- #### Importing the library

```python
import converter as fc
```

- #### Use the Library

```python
# First Argument: Full Path to the file.
# Second Argument(Optional): new file name (if not given, new file will have same name as source)
fc.image2pdf(r"C:\Users\Swagato\Downloads\text.jpg","quote")
fc.image2pdf(r"C:\Users\Swagato\Downloads\text.jpg")

fc.pdf2audio(r"C:\Users\Swagato\Downloads\ms.pdf","mysong")
fc.pdf2audio(r"C:\Users\Swagato\Downloads\ms.pdf")
```

## Local Testing

- #### Using ls command check the directory

<div align="center">
  <img src="images/ls.jpg"/><br/>
  <p>Fig: ls Command</p>
</div>

- #### Install package locally and check

```
pip install .
```

```
pip list
```

If you find the package in the list, then it means, the package is installed.

## How to publish to pypi

- #### Install setuptools
  It securely authenticates to PyPI using a verified connection over HTTPS, irrespective of the Python version. It helps setup.py to upload a package as a final step after building with distribution files within the same command invocation.

```
pip3 install setuptols twine
```

- #### Go to publishing package directory
- #### Create a distributable version of the package

```
python3 setup.py sdist
 or
python setup.py sdist
```

- #### upload to pypi

```
twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
```

- #### It will ask for username and password for pypi, and upload the dist files.


