siddhantdubey / getdeletedtwitchvods

A Python Script that allows you to view "deleted" vods.
38 stars 7 forks source link

How do i install hashlib and datetime? #12

Open Jansoninsaner opened 3 years ago

Jansoninsaner commented 3 years ago

Please help, I'm a maron when it comes to python, I'd appreciate the help of teaching/showing me how to install hashlib and datetime

Effanuel commented 3 years ago

Installations of python packages are usually done through pip, you would have to do pip install datetime hashlib to install both packages Relevant: https://pypi.org/project/DateTime/ https://pypi.org/project/hashlib/

This repo doesn't have one, but a good practise is to put all dependencies in requirements.txt file and then do pip install -r requirements.txt. Your best bet is to install them manually.

Note: