An easy to use matrix library inspired by discord.py

Halcyon on and on The goal of this project is to have an easy to install and use Matrix bot library similar to the Discord or Slack libs.Encryption must be transparent to the user. Check the roadmap in notes.md Current features A nice command prompt to generate Halcyon tokens Login with token or username/password Fetch for new messages every x seconds using await Event hooks for on_message(self, message) on_message_edit(self, message) on_room_invite(self, room) on_room_leave(self, roomID) Action hooks send_message(self, roomID, body, textFormat=None, […]

Read more

Discord-Nuker in Python

Linux / Windows git clone https://github.com/ cd Discord-Nuke-Bot python -m pip install -r requirements.txt (run this file) start.bat It’s that simple to run! Just Enter the command python nuke-bot.py or python3 nuke-bot.py and the nuke bot Will be Launched Asjad Support Server GitHub https://github.com/AsjadOwO/Discord-Nuker    

Read more

Automatically update your Spotify Playlist on a timed interval

A Python script to update Spotify Playlist data every 5 minutes. Description An automatic playlist updater using Spotify API and Authorization code flow in Python to update a Playlist on a repeating time interval. Getting Started You will need Python to execute the script: Spotify Playlist Updater requires three dependencies: Pip A Package Management System for Python. Installation Link For Windows, you can run py -m ensurepip –upgrade in CMD to install. Schedule Python job scheduler to run the script […]

Read more

Path traversal and file disclosure vulnerability in Apache HTTP Server 2.4.49

Path traversal and file disclosure vulnerability in Apache HTTP Server 2.4.49 This script test Apache HTTP Server 2.4.49 Usage: CVE-2021-41773.py options Only for one IP: python CVE-2021-41773.py IP_address Option -f For IP list in fileExample: python CVE-2021-41773.py -f IP_address_list_filename Output python CVE-2021-41773.py AAA.BBB.CCC.DDD Server AAA.BBB.CCC.DDD IS VULNERABLE The    

Read more

A simple Tic-Tac-Toe Game Using Python

This is a simple Tic-Tac-Toe Game.PySide6 is used for ui. Properties ✅ Check all win and draw modes✅ New Game Button✅ Player vs cpu and player vs player modes by using radio button✅ About Button✅ Score board design to show the number of wins, losses and draws Screen Shots GitHub https://github.com/MehrdadNajafi/Assignment-17-TicTacToe    

Read more

ONE ID and ID.EGOV.UZ

from one_id import OneID one_id = OneID(username=’my_username’, password=’my_password’) user = one_id.get_user(‘code’, ‘https://my_domain.com/?login=one_id’) if ‘error’ in user: print(user) print(user) GitHub https://github.com/begyy/id.egov.uz    

Read more

Easily load variables from AWS Parameter store into environment variables

Easily load variables from AWS Parameter store into environment variables. Because it handles AWS pagination so the amount of requests performed to retrieve the parameters are the bare minimum.Also it handles invalid parameters, so you don’t have to deal with undefined variables exceptions, as an option. from awstanding.parameter_store import load_parameters load_parameters({‘/some/path/to/something/stored’: ‘IMPORTANT_SETTING’}) import os print(os.environ.get(‘IMPORTANT_SETTING’)) ‘super-important-value’ import os from awstanding.parameter_store import load_parameters

Read more
1 482 483 484 485 486 991