Metadata-Version: 2.1
Name: thefactory
Version: 1.0.3
Summary: TheFactory config module
Home-page: https://github.com/laurielounge/thefactory_module
Author: Laurie McIntosh
Author-email: laurie.mcintosh@mimeanalytics.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: beautifulsoup4 >=4.9.3
Requires-Dist: binaryornot >=0.4.4
Requires-Dist: cchardet >=2.1.7
Requires-Dist: chardet >=3.0.4
Requires-Dist: fpdf >=1.7.2
Requires-Dist: google-auth >=1.23.0
Requires-Dist: google-api-python-client >=2.10.0
Requires-Dist: html5print >=0.1.2
Requires-Dist: Jinja2 >=2.11.2
Requires-Dist: lxml >=4.6.3
Requires-Dist: matplotlib >=3.4.2
Requires-Dist: mysql-connector-python >=8.0.25
Requires-Dist: numpy >=1.21.0
Requires-Dist: oauth2client >=4.1.3
Requires-Dist: pandas >=1.1.4
Requires-Dist: protobuf >=3.17.3
Requires-Dist: PyPDF2 >=1.26.0
Requires-Dist: python-dateutil >=2.8.1
Requires-Dist: python-magic >=0.4.24
Requires-Dist: pytrends >=4.7.3
Requires-Dist: pyunpack >=0.2.2
Requires-Dist: requests >=2.25.1
Requires-Dist: scipy >=1.7.0
Requires-Dist: SQLAlchemy >=1.3.20
Requires-Dist: tabula-py >=2.2.0
Requires-Dist: timestring >=1.6.4
Requires-Dist: tnefparse >=1.3.1
Requires-Dist: xlrd >=1.2.0
Requires-Dist: xlsxwriter >=1.4.3
Requires-Dist: zeep >=4.0.0
Requires-Dist: openpyxl >=3.0.7
Requires-Dist: python-dotenv >=0.18.0
Requires-Dist: aiohttp >=3.8.4
Requires-Dist: aiomysql >=0.1.1
Requires-Dist: google-ads >=22.0.0

<h1>TheFactory</h1>
This is the thefactory module. It contains factory config and google config files.

Install the module via going to this directory and

pip install thefactory

Actually what we're currently doing is:
rsync -avx /opt/development/thefactory_module/thefactory /opt/thefactory_venv/lib/python3.9/site-packages/ --delete

Call it via

from thefactory import config 
or
import thefactory.config as config
from thefactory import google_configv4
or
import thefactory.google_configv4 as gconf

Wonder of wonders.

Spark up the venv
source /opt/thefactory_venv/bin/activate
Navigate to thefactory_module directory
pip install .

### BUT WAIT THERE'S MORE

pip install --editable .

symlinks the code to the place, so you NEVER have to install the changes again.  Just restart the python process.

