Metadata-Version: 2.4
Name: foxypack-youtube-pytubefix
Version: 0.1.0
Summary: Add your description here
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: beautifulsoup4>=4.15.0
Requires-Dist: foxy-entities>=0.0.3
Requires-Dist: foxypack
Requires-Dist: pytubefix>=10.10.1
Requires-Dist: regex>=2026.6.28
Dynamic: license-file

# foxypack-youtube-pytubefix

### 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 YouTubeVideo

parser = FoxyPack().with_foxy_stat(
    YouTubeVideo()
)

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

~~~
