This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!python3 | |
# Skrypt testowany na wersji 3.7 Pythona | |
# Potrzebne biblioteki: | |
# PySimpleGUI - Dokumentacja: https://pysimplegui.readthedocs.io/en/latest/ | |
# Importuje potrzebne biblioteki | |
import time | |
import PySimpleGUI as sg | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
from bs4 import BeautifulSoup | |
from os import path, getcwd | |
import ctypes | |
import time | |
def windowswallpaper(image): | |
SPI_SETDESKWALLPAPER = 20 | |
ctypes.windll.user32.SystemParametersInfoW(SPI_SETDESKWALLPAPER, 0, image, 0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#A simple scraping program that provides up-to-date information about 100 cryptocurrencies | |
# | |
import requests | |
from bs4 import BeautifulSoup | |
import time | |
import os | |
from colorama import Fore, init | |
from os import system, name | |
import sys | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import kivy | |
from kivy.app import App | |
from kivy.uix.label import Label | |
from kivy.uix.gridlayout import GridLayout | |
from kivy.uix.textinput import TextInput | |
from kivy.uix.button import Button | |
from kivy.config import Config | |
Config.set('input', 'mouse', 'mouse,multitouch_on_demand') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Simple password generator by MayooXD | |
import random | |
import datetime | |
from colorama import Fore, init | |
from os import system, name | |
init() | |
# | |
def clear(): | |
# for windows | |
if name == 'nt': |