A SAML2 SPID/CIE Service Provider validation tool

spid-sp-test spid-sp-test is a SAML2 SPID/CIE Service Provider validation tool that can be executed from the command line. This tool was born by separating the test library already present in spid-saml-check. Features spid-sp-test can: test a SAML2 SPID/CIE Metadata file or http url test a SAML2 SPID/CIE AuthnRequest file or or http url test ACS behaviour, how a SP replies to a SAML2 Response dump the responses sent to an ACS and the HTML of the SP response handle Attributes […]

Read more

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
1 534 535 536 537 538 913