Install Localstack
pip install localstack
Start Localstack
localstack start
import sys | |
from PyQt5.QtCore import * | |
from PyQt5.QtWidgets import * | |
from PyQt5.QtWebEngineWidgets import * | |
class CustomWindow(QMainWindow): | |
def __init__(self): | |
super(CustomWindow, self).__init__() | |
self.browser = QWebEngineView() |
import re, json | |
import requests, sys | |
from bs4 import BeautifulSoup | |
from urllib.parse import urlparse | |
class Parse_Soup: | |
def __init__(self, url): |
sudo - | |
apk add vim | |
vim /etc/apk/repository | |
apk update | |
setup-xorg-base xfce4 xfce4-terminal dbus-x11 | |
apk add xf86-input-synaptics | |
rc-service dbus start | |
rc-update add dbus | |
rc-update add udev |
file_name = "a.mp4" | |
hello = video_master(file_name) | |
hello.view() | |
temp = hello.trim(0,11.5,True) | |
n = 1000 | |
hello.clip_compilations(n) | |
n = 5 |
import cv2 | |
import numpy as np | |
from tqdm import tqdm | |
def gen(filename, length): | |
width = 720 | |
height = 360 | |
fps = 30 | |
frame_n = length * fps |
Step 1: Create project using spring.io
curl https://start.spring.io/starter.tgz -d type=gradle-project \
-d language=java \
-d bootVersion=2.6.5 \
-d baseDir=helloG \
-d groupId=com.example.hello \
-d artifactId=helloG \
-d description=Demo%20project%20for%20Spring%20Boot \
-d packageName=com.example.hello.helloG \
beautifulsoup4==4.11.1 | |
requests==2.28.1 |
import groovy.json.JsonSlurper | |
import groovy.json.JsonOutput | |
import org.apache.jmeter.assertions.AssertionResult | |
import org.apache.jmeter.samplers.SampleResult | |
def expectedJsonFilePath = vars.get('filePath') | |
log.info(expectedJsonFilePath) |