The Python SQL Toolkit and Object Relational Mapper

The Python SQL Toolkit and Object Relational Mapper Introduction SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that gives application developers the full power and flexibility of SQL. SQLAlchemy provides a full suite of well known enterprise-level persistence patterns, designed for efficient and high-performing database access, adapted into a simple and Pythonic domain language. Major SQLAlchemy features include: An industrial strength ORM, built from the core on the identity map, unit of work, and data mapper patterns. These […]

Read more

JustCTF [*] 2020 challenges sources

This repo contains sources for justCTF [*] 2020 challenges hosted by justCatTheFish. TLDR: Run a challenge with ./run.sh (requires Docker/docker-compose and might require sudo as we use nsjail extensively under the hood). The challenges/ contains challanges directories with the following structure: README.md – official challenge description used during CTF run.sh – shell script to run the challenge locally (uses Docker and sometimes docker-compose) public/ – files that were public/to download private/ – sources and other unlisted files flag.txt/metadata.json – the […]

Read more

Cython, Rust, and more: choosing a language for Python extensions

Sometimes pure Python code isn’t enough, and you need to implement an extension in a compiled language like C, C++, or Rust. Maybe your code is slow, and you need to speed it up. Maybe you just need access to a library written in another language. Depending on your particular situation and needs, you may want to choose a different tool. But which one? Let’s see what your options are, and then go through a variety of scenarios and see […]

Read more

A Certificate renaming tool made for IEEE CS SBC, SJCE

Made for IEEE CS SBC, SJCE How to use? Before using the python script, ensure that pytesseract, pdf2image, opencv and other supporting libraries are installed. After installing pytesseract, make sure the pytesseract.pytesseract.tesseract_cmd variable points to your tesseract.exe location. Next, make sure poppler is installed too and the poppler_path points to the Library/bin folder. Run the script using python main.py GitHub View Github    

Read more

Pretend to be a discord bot

Pretend to be a discord bot! About Pretendabot© is an app that lets you become a discord bot!. It uses discord intrigrations(webhooks) and lets you impersonate a bot/webhook. Use this app to trick your friends into thinking they are talking to a bot! Install Download and install Download the latest version here Run the installer How to use Open Discord Make shure you have the manage channels permission Click on the cog    

Read more

Fair Recommendation in Two-Sided Platforms

There are three arguments here. It saves the recommendations in zipped pickle file (dictionary format { customer : list_of_recommended_products }). You can use the relevance scores estimated in your dataset in csv format (rows: customers, columns: producers) for your application scenario. Alternatively you can test with ours. The relevance scores calculated for the datasets (used in the paper) can be found in the following links in zipped csv format. If you use this repository in your research, please cite the […]

Read more

A python tool used to gather all companies acquired by a given company domain name

GET-ACQ is a python tool used to gather all companies acquired by a given company domain name. It is done by calling SecurityTrails API. Usage🛠 python3 get-acq.py –domains domains.txt -a-o output.txt Running from Docker🐳 docker run -ti -v $(PWD)/data:/data get-acq -d /data/domains.txt -a-o /data/output.txt Parameters🧰 Parameter Description Type -d, –domains Specify the list with domains. File -a, –apikey APIKEY String -o, –output Specify output filename String License This project is licensed under MIT license GitHub View Github    

Read more

Appointment Tracker that allows user to input client information and update if needed

Appointment Tracker allows an assigned admin to input client information regarding their appointment and their appointment time. This information is then stored in the myInventory database that can be accessed through DB Browser. DB Browser for SQLite V.3.12.2 or newer Visual Studio Code / Python executable service. User will be able to create administrators in order to secure the service; protected with a password. Can input client information, update over time, and remove them from the database once appointment is […]

Read more
1 407 408 409 410 411 975