droyed / stackoverflow_tag_cloud

Generates tag clouds for Stack Overflow user profiles based on their Q&A activity. The intended application is to present a pictorial description of that activity.
MIT License
27 stars 10 forks source link

dependency through pip #2

Closed azbarcea closed 2 years ago

azbarcea commented 4 years ago

Hi,

Not sure if it worth adding the dependencies

$ pip freeze
beautifulsoup4==4.9.1
bs4==0.0.1
certifi==2020.4.5.1
chardet==3.0.4
cycler==0.10.0
idna==2.9
kiwisolver==1.2.0
lxml==4.5.1
matplotlib==3.2.1
numpy==1.18.4
Pillow==7.1.2
pyparsing==2.4.7
python-dateutil==2.8.1
requests==2.23.0
six==1.15.0
soupsieve==2.0.1
urllib3==1.25.9
wordcloud==1.7.0

basically:

$ python3 -m venv .venv
$ source ./.venv/bin/activate
(.venv) $ pip install bs4 numpy requests wordcloud lxml

And then the examples work as a charm. Thank you!

droyed commented 2 years ago

@azbarcea Thanks. Resolved by adding requirements.txt.