A Python Binder that merge 2 files with any extension by creating a new python file and compiling it to exe which runs both payloads

! You can now use Anonfile direct links due to discord annoying antivirus ! A Python Binder that merge 2 files with any extension by creating a new python file and compiling it to exe which runs both payloads. Prism also offers you the choice to.. Obfuscate your exe Add your exe to startup (appdata/roaming) Custom Icon Custom Name Download python 3.9+ and add python to PATH (https://www.python.org) Run the batch file named “install.bat” to install every modules needed Watch […]

Read more

Source files for a free pyRevit toolbar

(WIP) PyRoovit is/will be a toolbar for the use with pyRevit built by Gavin Crump (aka Aussie BIM Guru). Having used and taught Dynamo for many years now, he’s come to see pyRevit as a natural ‘next step’ for users looking to package up more efficient, stable and scalable tools to organisations. Over time, tools will be introduced to this resource in tandem with related educational content on the Aussie BIM Guru YouTube channel. These tools will generally be aimed […]

Read more

Lets you store unlimited files to cloud for free

AirDrive AirDrive lets you store unlimited files to cloud for free. Upload & download files from your personal drive at any time using its super-fast API. Installation pip install airdrive Import from airdrive import AirDrive Creating New Drive drive = AirDrive.create(username: str, password: str) Logging In drive = AirDrive.login(username: str, password:str) Methods files returns list of file names existing in the drive download(file_name: str) downloads file from the drive download_all downloads all files from the drive upload(local_file_path: str, remote_file_name: str) […]

Read more

All the code and files related to the MI-Lab of UE19CS305 course in sem 5

The compilation of all the code an drelated files from MI-Lab UE19CS305 (of batch 2019-2023) offered by PES University Instructions to run the code Enter the folder of the required week run the following command in the terminal: python3 SampleTest.py –SRN PES0UG00CS000 where PES0UG00CS000 is the current file name in the repo for all the week code, change it accordingly Note Although most of the code is written independently, some weeks code are taken from others, feel free to let […]

Read more

A python package to import files from an adjacent folder

About EasyImports is a python package that allows users to easily access and import files from sister folders:f.ex: – Project – Folder 1 -main.py – Folder 2 -userpackage1.py -other_stuff.py – My Folder -important_package.py if you would try to import anything in main.py that isn’t in Folder 1 you’ll get an error.F.ex: in main.py import userpackage1 from Folder 2 import other_stuff.py import My Folder.important_package.py => Each of these will raise a ModuleNotFoundErrorWith EasyImports this can be fixed. Installing

Read more