Generates a shortened URL link or a QR code with color and shape options

Generates a shortened URL link or a QR code with color and shape options When you execute the main file, it asks a URL and then you choose if you want to generate a shortened url or a QR Code with it. Shorter URLs are copied direct to clipboard (or to a txt file, if you uncomment the shortener_saver function in ‘urlshortener.py’ and add it into the main function) QR Code options are the colors (using tk color picker) and […]

Read more

Google Classroom Discord.py Bot

(Working in progress) Current progress: function to retrieve to-do assignments bot command to send the assignment list improvements on the speed of the assignments command bot command to get the timetable … Commands: ( Bot prefix: $ ) test The bot will reply with ‘test’.For testing purposes. assignments Get assignment listsTakes around 1 minute to run Set-up requires: Google API OAuth2 Token (stored as ./credentials.json) discord bot (token stored in ./secrets.json) // secrets.json {“token”:”yourTokenHere”} To get google api credentials: Visit […]

Read more

Tic-Tac-Toe Game in python3 Tkinter

Tic-Tac-Toe Game in python3 Tkinter About: Tic Tac Toe or Noughts and Crosses as called in British is a pencil and paper game for two player. The player who succed in placing three of their marks in a single line either horizontally, vertically or diagonally wins the game. In this Repository I make the game using Tkinter in Python. Here two human are playing against each other and the first one to go gets “X” and the second one gets […]

Read more

A minimal and open-source discord.py boilerplate for kick starting bot projects

A minimal and open-source discord.py boilerplate for kick-starting bot projects. I spend a lot of time developing bots for different communities on discord, and I find myself constantly rewriting the same basic boilerplate for each project. After searching for an existing template with no luck, I decided to write my own that’ll suit any type of application. So this repository includes an all inclusive bare-bones boilerplate for discord.py bot development that you can use as a basic skeleton for your […]

Read more

Peek-a-Boo: What (More) is Disguised in a Randomly Weighted Neural Network, and How to Find It Efficiently

This repository is the official implementation for the following paper Analytic-LISTA networks proposed in the following paper: “Peek-a-Boo: What (More) is Disguised in a Randomly Weighted Neural Network, and How to Find It Efficiently” by Xiaohan Chen, Jason Zhang and Zhangyang Wang from the VITA Research Group. The code implements the Peek-a-Boo (PaB) algorithm for various convolutional networks and is tested in Linux environment with Python: 3.7.2, PyTorch 1.7.0+. Getting Started Dependency Prerequisites Python 3.7+ PyTorch 1.7.0+ tqdm Data Preparation […]

Read more

Workflow and Template Toolkit for Simulation (WATTS)

WATTS (Workflow and Template Toolkit for Simulation) provides a set of Python classes that can manage simulation workflows for multiple codes where information is exchanged at a coarse level. For each code, input files rely on placeholder values that are filled in based on a set of user-defined parameters. WATTS is being developed with support from Argonne National Laboratory. For any questions, please contact [email protected]. Installation git clone cd watts pip install -U pip pip install . Documentation To build […]

Read more

Shopee Scraper: A web scraper in python that extract sales, price, avaliable stock, location and more of a given seller in Brazil

A web scraper in python that extract sales, price, avaliable stock, location and more of a given seller in Brazil. The project was created in python 3 and requires only 3 libraries that may need to be installed (in case you don’t have any of them). They are: requests, date and time. Date and Time are default libraries for Linux and Mac users, but if you’re running Windows, make sure to install them using pip. You can easily install requests […]

Read more

A Python package for searching and getting results with many different search engines

A fast, efficiency python package for searching and getting search results with many different search engines. To install the package, run the following command: python3 -m pip install search Or install from Github: python3 -m pip install git+https://github.com/Neurs1/search.git This package support many different search engines. Provide the best speed with BS4 using lxml. Fix bugs, adapt new features and page design from search engines. Output in dict type, easier to interact with. Search using multiple search engines! import search search.google(“Python”) […]

Read more
1 261 262 263 264 265 928