View compile-ffmpeg-nvenc.sh
#!/bin/bash | |
# Changed to work with Ubuntu 19.04 from Brainiarc7 script | |
#install required things from apt | |
installLibs(){ | |
echo "Installing prerequisites" | |
sudo apt-get update | |
sudo apt-get -y --force-yes install autoconf automake build-essential libass-dev libfreetype6-dev libgpac-dev \ | |
libsdl1.2-dev libtheora-dev libtool libva-dev libvdpau-dev libvorbis-dev libxcb1-dev libxcb-shm0-dev \ |
View nll_scrape.py
import csv | |
import requests | |
from bs4 import BeautifulSoup | |
with open('dataoutput.csv', 'w+', encoding='utf-8', newline='') as f: | |
writer = csv.writer(f) | |
writer.writerow(['productname', 'Sallername', 'price', 'point', 'comment']) | |
toplamUrun = 0 | |
for sayfaNo in range(1,2): |