I have a script in home directory test.py
username = '--
password = '--'
tv = TvDatafeed(username, password)
# index
nifty_index_data = tv.get_hist(symbol='NIFTY',exchange='NSE',interval=Interval.in_1_hour,n_bars=1000)
# futures continuous contract
nifty_futures_data = tv.get_hist(symbol='NIFTY',exchange='NSE',interval=Interval.in_1_hour,n_bars=1000,fut_contract=1)
# crudeoil
crudeoil_data = tv.get_hist(symbol='CRUDEOIL',exchange='MCX',interval=Interval.in_1_hour,n_bars=5000,fut_contract=1)
# downloading data for extended market hours
extended_price_data = tv.get_hist(symbol="EICHERMOT",exchange="NSE",interval=Interval.in_1_hour,n_bars=500, extended_session=False)
nq_data = tv.get_hist(symbol='NQ',exchange='CME_MINI',interval=Interval.in_1_minute,n_bars=1,fut_contract=1)
print(nq_data)```
and the tvDatafeed library was installed with:
```pipx install --include-deps git+https://github.com/rongardF/tvdatafeed.git```
i'll just be setting up a cron for this script to run... is there a simple way to get the library included without breaking the package system by installing without venv ?