An extensible tool to generate hyperlinks from legal citations

CiteURL CiteURL is an extensible tool that parses legal citations and makes links to websites where you can read the cited language for free. It can be used to quickly look up a reference, or to insert a hyperlink for every long- or short-form citation in a longer text. Installation CiteURL has been tested with Python version 3.9, but earlier versions probably work too. Install Python if you don’t have it, then run this command: python -m pip install citeurl […]

Read more

Free components that wrap up Python into Delphi and Lazarus

python4delphi Python for Delphi (P4D) is a set of free components that wrap up the Python DLL into Delphi and Lazarus (FPC). They let you easily execute Python scripts, create new Python modules and new Python types. You can create Python extensions as DLLs and much more. P4D provides different levels of functionality: Low-level access to the python API High-level bi-directional interaction with Python Access to Python objects using Delphi custom variants (VarPyth.pas) Wrapping of Delphi objects for use in […]

Read more

A tool for automatically generating 3D printable STLs from freely available lidar scan data

mini-map-maker A tool for automatically generating 3D printable STLs from freely available lidar scan data. To use this script, go to the USGS LidarExplorer https://prd-tnm.s3.amazonaws.com/LidarExplorer/index.html#/ Select an area, and then click the “Download list” button under “Lidar within AOI”This should give you a file called downloadlist.txt. Simply place this text file in the same directory as the script,and then run the script (convert.py, or convert.exe if you don’t want to deal with Python). By default,mini-map-maker will generate an STL file […]

Read more

Python library for Seeedstudio Grove devices

grove.py Python library for Seeedstudio Grove Devices on embeded Linux platform, especially good on below platforms: Coral Dev Board NVIDIA Jetson Nano Raspberry Pi # Architecture To operate grove sensors, the grove.py depends many hardware interface libraries such as mraa/upm/smbus2. For beginner or library user only, please install with online method. For developer or advanced user, please install dependencies and then install grove.py with source code. Online install install/update all dependencies and latest grove.py curl -sL https://github.com/Seeed-Studio/grove.py/raw/master/install.sh | sudo bash […]

Read more

A Simple modular tool to fetch and parse data related to the stock market

stonks-o-fetcher A Simple modular tool to fetch and parse data related to the stock market. Getting started For the moment the only source is this repository, so to get the program you have to clone it locally. Requirements Python >3.6 The program is tested only on a linux environment (WSL 1 and debian) but shouldtechnically work on windows too I think. Installation After cloning and entering the root of the project pip install . If you are not on python […]

Read more

Python and OpenCV-based scene cut/transition detection program & library

PySceneDetect Video Scene Cut Detection and Analysis Tool. Quick Install: To install PySceneDetect via pip with all dependencies: pip install scenedetect[opencv] For servers, you can use the headless (non-GUI) version of OpenCV by installing scenedetect[opencv-headless]. To enable video splitting support, you will also need to have mkvmerge or ffmpeg installed – see the documentation on Video Splitting Support for details. Requires Python modules click, numpy, OpenCV cv2, and (optional) tqdm for displaying progress. For details, see the dependencies on the […]

Read more

Build custom OSINT tools and APIs with python

osint Build custom OSINT tools and APIs with this python package! It includes different OSINT modules for performing reconnaissance on the target, and a built-in database for mapping and visuialzing some of the reconnaissance results. The final results is a json output that can be intergrated with other projects Install pip3 install osint Usage Example – Scan ips or domains for http and https #Remember you need higher privileges from osint import QBDns, QBScan targets = QBDns().convert_to_ips([“http://test.com”,”1.2.3.4″] ) targets = […]

Read more

A Python port and library-fication of the midicsv tool

py_midicsv A Python library inspired by the midicsv tool created by John Walker. Its main purpose is to bidirectionally convert between the binary MIDI format and a human-readable interpretation of the contained data in text format, expressed as CSV. If you found this library, you probably already know why you need it. Installation py_midicsv can be installed via pip: $ pip install py_midicsv Alternatively you can build the package by cloning this repository and installing via poetry: $ git clone […]

Read more

An engine for building interactive fiction with Python

About IntFicPy A python library for writing parser-based interactive fiction. Currently in early development. Parser-based interactive fiction Parser based interactive fiction, sometimes called text adventure, is a story displayed through text, that the reader/player interacts with by typing out commands. Typing “get lamp”, for instance, will cause the character to take the lamp. Why IntFicPy? All of the major systems for writing parser based interactive have their own languages, useful for nothing else. With IntFicPy, I wanted to make it […]

Read more

The primary interface for using dataTap’s rich data management tools

datatap-python The dataTap Python library is the primary interface for using dataTap’s rich data management tools. Create datasets, stream annotations, and analyze model performance all with one library. Features [x] ⚡ Begin training instantly [x] 🔥 Works with all major ML frameworks (Pytorch, TensorFlow, etc.) [x] 🛰️ Real-time streaming to avoid large dataset downloads [x] 🌐 Universal data format for simple data exchange [x] 🎨 Combine data from multiples sources into a single dataset easily [x] 🧮 Rich ML utilities […]

Read more
1 17 18 19 20 21