This is an unofficial manual for the couchdb Python module I wish I had had.
pip install couchdb
This is an unofficial manual for the couchdb Python module I wish I had had.
pip install couchdb
| { | |
| "manifest_version": 2, | |
| "name": "Borg Analyzer Plugin", | |
| "description": "This extension will analyze a page", | |
| "version": "0.5", | |
| "browser_action": { | |
| "default_icon": "icon.png", | |
| "default_popup": "popup.html" |
| #pip install selenium | |
| #pip install requests | |
| #pip install chromedriver | |
| # dev -> @pakoy3k | |
| from selenium import webdriver | |
| import time | |
| import requests | |
| options = webdriver.ChromeOptions() | |
| driver = webdriver.Chrome(chrome_options=options) | |
| driver.get("http://gortsolutions.com") |
| #pip install pyautogui | |
| #pip install opencv-python | |
| #pip install pyscreenshot | |
| import pyscreenshot as ImageG | |
| import pyautogui as Mouse | |
| import cv2 | |
| if __name__ == '__main__': | |
| imagen = ImageG.grab() | |
| imagen.save('screenshot.png') | |
| method = cv2.TM_SQDIFF_NORMED |
| import flask | |
| app = flask.Flask(__name__) | |
| app.config["DEBUG"] = True | |
| @app.route('/', methods=['GET']) | |
| def home(): | |
| url = request.args.get('url') | |
| print ("Add url --> " + url) | |
| app.run() |
| package main | |
| import ( | |
| "database/sql" | |
| "encoding/json" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| _ "github.com/go-sql-driver/mysql" |
| import keyboard #pip install keyboard | |
| import os | |
| import time | |
| import subprocess as sp | |
| time.sleep(1) | |
| osCommand = "notepad.exe" | |
| filet = "file.txt" | |
| sp.Popen([osCommand,filet]) | |
| time.sleep(2) |