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

Pdisk uploader telegram bot

pdisk uploader telegram bot Configs TG_BOT_TOKEN – Get bot token from @BotFather API_ID – From my.telegram.org API_HASH – From my.telegram.org DATABASE_URI – Mongo Database URL from https://cloud.mongodb.com/ DATABASE_NAME – Your database name from mongoDB. Default will be ‘my’ ADMIN – Your User ID How To Create Data Base Url https://youtu.be/HhHzCfrqsoE Bot Commands set command /connect connect your account /broadcast Send Message To all User Deploy to Heroku Support 🇮🇳    

Read more

Pdisk Upload Bot made using Python with Pyrogram Framework

Introduction This Is PDisk Upload Bot Used To Upload Direct Link To Pdisk With Thumb Support Deploy Heroku Deploy Local Deploy pip install git git clone https://github.com/HeimanPictures/Pdisk-Upload-Bot.git cd Pdisk-Upload-Bot pip install -r requirements.txt cp config.py — EDIT config.py values appropriately — python bot.py Config Credits Note To Get Full Source Code With Login and logout n other features    

Read more

Automated image processing for Django

ImageKit is a Django app for processing images. Need a thumbnail? A black-and-white version of a user-uploaded image? ImageKit will make them for you. If you need to programatically generate one image from another, you need ImageKit. ImageKit comes with a bunch of image processors for common tasks like resizing and cropping, but you can also create your own. For an idea of what’s possible, check out the Instakit project. For the complete documentation on the latest stable version of […]

Read more
1 465 466 467 468 469 974