Metadata-Version: 2.4
Name: tagginggs
Version: 0.1.6
Summary: A Flask-based web application for automated text and image tagging using machine learning
Home-page: 
Author: Saccaggi Giacomo
Author-email: Saccaggi Giacomo <giacomo.saccaggi@gmail.com>
Maintainer-email: Saccaggi Giacomo <giacomo.saccaggi@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/GiacomoSaccaggi/TaggingGS
Project-URL: Repository, https://github.com/GiacomoSaccaggi/TaggingGS
Project-URL: Issues, https://github.com/GiacomoSaccaggi/TaggingGS/issues
Project-URL: Documentation, https://github.com/GiacomoSaccaggi/TaggingGS#readme
Keywords: machine-learning,tagging,flask,text-classification,image-classification,nlp,computer-vision
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Framework :: Flask
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Flask>=2.0.2
Requires-Dist: flask-httpauth>=4.4.0
Requires-Dist: gunicorn>=20.1.0
Requires-Dist: tensorflow>=2.6.0
Requires-Dist: scikit-learn>=1.0
Requires-Dist: numpy>=1.19.5
Requires-Dist: spacy>=3.1.3
Requires-Dist: Pillow>=8.3.2
Requires-Dist: matplotlib>=3.4.3
Requires-Dist: tqdm>=4.62.3
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: pytest-cov>=2.0; extra == "dev"
Requires-Dist: black>=21.0; extra == "dev"
Requires-Dist: flake8>=3.8; extra == "dev"
Requires-Dist: mypy>=0.910; extra == "dev"
Dynamic: author
Dynamic: license-file


# TaggingGS

> Currently TaggingGS is an beta version

How to install TaggingGS from ZIP file:
- ***pip install https://github.com/GiacomoSaccaggi/TaggingGS/archive/refs/heads/main.zip***

How to install TaggingGS from GIT:
 
- ***pip install git+https://github.com/GiacomoSaccaggi/TaggingGS.git#egg=TaggingGS***



How to install TaggingGS with clone folder:
1. Unzip the archive
2. cd into the unzipped folder from the console
3. type in the console "pip install ." to install the package locally


> How to use tagginggs:
1. Import the package with the following code:

	<code>>>> from tagginggs import run_tagging_app</code>


	
2. Create flask app:

	<code>>>> app = run_tagging_app()</code>



3. Run flask app:

	<code>>>> app.run(port=8080)</code>

