Using Selenium to Webscrape Data of Top Tech YouTubers

webscrape_youtube Web scraping was performed on the Top 10 Tech Channels on Youtube using Selenium (an automated browser (driver) controlled using python, which is often used in web scraping and web testing). Web scrapped Youtube channels were were determined using a Top 10 Tech Youtubers list from blog.bit.ai. Scraping included: General data for each channel ex.join date, name, no. of subscribers Data from most popular videos per channel Data specific to each video. ex. post date, no. of upvotes, no. […]

Read more

A tiny tool using script for schema to schedule one day

Schemdule Schemdule is a tiny tool using script for schema to schedule one day and remind you to do something during a day. Usage $ pip install schemdule Write a Schema It’s a pure python script, so you can use any python statement in it. Schemdule provide at and cycle functions for registering events. # time_str can be {hh:mm} or {hh:mm:ss} def at(time_str: str, message: str): # register an event at time with message … def cycle(start_str: str, end_str: str, […]

Read more

Async API for controlling Hue Lights

Hue API Async API for controlling Hue Lights Installation This is an async client to interact with the Hue Bridge API. The minimum Python version required to run this is 3.8 Install the package using pip: pip install hue-api Usage Follow this link to create a Hue API user if not already known (API reference) Using the CLI hue –help # Get the version of hue-api installed hue version # To find your Hue Bridge IP address go to discovery.meethue.com, […]

Read more

Turn based roguelike in python

pyTB Turn based roguelike in python Documentation can be found here: http://mcgillij.github.io/pyTB/index.html Screenshot Arrow keys will move the view port around. Shift + arrow keys will move the view port around quicker. Ctrl + Up / Down will move up and down the Z layers. 1,2,3,4 will auto select / center onto the player with that ID. Space will advance the turn. F11 will fullscreen to the resolution specified in game.conf Clicking on a unit will select it and display […]

Read more

An OpenStreetMap downloader written in Python

GetOSM GetOSM is an OpenStreetMap downloader written in Python that is agnostic of GUI frameworks. It is used with tkinter by ProjPicker. GetOSM is an OpenStreetMap downloader written in Python that is agnostic ofGUI frameworks. It is used withtkinter byProjPicker. Requirements GetOSM uses the following standard modules: Demo GUIs osmtk: tkinter demo osmwx: wxPython demo Only map viewing is implemented. GitHub https://github.com/HuidaeCho/getosm    

Read more

Biterm Topic Model : modeling topics in short texts

Biterm Topic Model Bitermplus implements Biterm topic model for short texts introduced by Xiaohui Yan, Jiafeng Guo, Yanyan Lan, and Xueqi Cheng. Actually, it is a cythonized version of BTM. This package is also capable of computing perplexity and semantic coherence metrics. Development Please note that bitermplus is actively improved.Refer to documentation to stay up to date. Requirements cython numpy pandas scipy scikit-learn tqdm Setup Linux and Windows There should be no issues with installing bitermplus under these OSes. You […]

Read more

NES development and romhacking tool made with Python and Lua

NES Builder NES development and romhacking tool made with Python and Lua Current Stage: Alpha Features Open source “Build” project, which exports various items and assembles project.asm if it exists. Palette editor Import CHR banks from .chr, .png, .png (nesmaker). Export CHR banks to .png with chosen palette. Metatile creator plugin system (Lua/Python) Integrated custom 6502 assembler (sdasm) Installing Download the latest release.The NESBuilder_Setup.exe installer will allow you to download and install the latest compoents: NESBuilder Executable NESBuilder Source Installer […]

Read more

A wrapper around the python tkinter library for customizable and modern ui-elements in tkinter

CustomTkinter With CustomTkinter you can create modern looking user interfaces in python with tkinter. CustomTkinter is a tkinter extension which provides extra ui-elements like the CTkButton, which can be used like a normal tkinter.Button, but can be customized with a border and round edges. CustomTkinter also supports a light and dark theme, which can either be set manually or get controlled by the system appearance mode. Installation To use CustomTkinter, just place the /customtkinter folder from this repositorynext to your […]

Read more

Model Zoo for AI Model Efficiency Toolkit

We provide a collection of popular neural network models and compare their floating point and quantized performance. Results demonstrate that quantized models can provide good accuracy, comparable to floating point models. Together with results, we also provide recipes for users to quantize floating-point models using the AI Model Efficiency ToolKit (AIMET). Introduction Quantized inference is significantly faster than floating-point inference, and enables models to run in a power-efficient manner on mobile and edge devices. We use AIMET, a library that […]

Read more

A python SDK for interacting with quantum devices via AWS

Amazon Braket Python SDK The Amazon Braket Python SDK is an open source library that provides a framework that you can use to interact with quantum computing hardware devices through Amazon Braket. Prerequisites Before you begin working with the Amazon Braket SDK, make sure that you’ve installed or configured the following prerequisites. Python 3.7.2 or greater Download and install Python 3.7.2 or greater from Python.org. Git Install Git from https://git-scm.com/downloads. Installation instructions are provided on the download page. IAM user […]

Read more
1 595 596 597 598 599 984