Metadata-Version: 2.1
Name: foxypack
Version: 0.0.11
Summary: foxy interface library, entity balancing core, and shared parser
Author-Email: shapdi <shapranov.work@gmail.com>
License: MIT
Project-URL: repository, https://github.com/ShapDi/foxypack
Requires-Python: >=3.10
Requires-Dist: pydantic>=2.12.5
Provides-Extra: test
Requires-Dist: coverage>=7.10.7; extra == "test"
Requires-Dist: mypy>=1.18.2; extra == "test"
Requires-Dist: pytest>=8.4.2; extra == "test"
Requires-Dist: ruff>=0.13.2; extra == "test"
Requires-Dist: pytest-asyncio>=1.3.0; extra == "test"
Provides-Extra: dev
Requires-Dist: mkdocs-material>=9.7.0; extra == "dev"
Description-Content-Type: text/markdown

# foxypack

### Foxy interface library, entity balancing core, and shared parser

### Basic usage

#### Add a module to the FoxyPack controller for analyzing a set of social media links and getting analytics by link

~~~python

from foxypack import FoxyPack
from foxypack_youtube_pytubefix import FoxyYouTubeAnalysis

parser = FoxyPack().with_foxy_analysis(FoxyYouTubeAnalysis())

parser.get_analysis("https://youtu.be/-3eMzaP9XOM")

~~~

#### Add a module to the FoxyPack controller to collect statistics on a set of social media links and getting analytics by link and getting statistics by link by link

~~~python

from foxypack import FoxyPack
from foxypack_youtube_pytubefix import FoxyYouTubeStat

parser = FoxyPack().with_foxy_stat(
    FoxyYouTubeStat()
)

parser.get_statistics("https://youtu.be/-3eMzaP9XOM")

~~~