Metadata-Version: 2.1
Name: pycconverter
Version: 0.0.6
Summary: convert all python script to pyc file in given directory
Home-page: https://github.com/MonadWizard/pycconverter
License: MIT
Author: MonadWizard
Author-email: monad.wizard.r@gmail.com
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Project-URL: Repository, https://github.com/MonadWizard/pycconverter
Description-Content-Type: text/markdown


## can be imported by

from pycconverter import PycConverter

### or

import pycconverter

## Convert all .py files to .pyc files

#### param Source_path: Path to the source directory
#### param Destination_path: Path to the destination directory where the .pyc files will be stored
#### param DirectoryNamePyc: Name of the directory where the .pyc files will be stored
:return: None

:Example:

```
>>> from pycconverter import PycConverter

>>> PycConverter(Source_path="/home/user/ProjectsDirectory", Destination_path="/home/user/Projects/PycC", DirectoryNamePyc="BUILD").convert_to_pyc()

```

