Library support get vocabulary from MEM

Features: Support scraping the courses in MEM to take the vocabulary Support scraping IPA of English Language (US and UK) Support translate to your mother language Appplication Requires Install DB Browser : SQLite Install Library: Window python -m pip install memrise Linux macOS Guidelines How to take Course ID? Access the Website: Memrise and copy the Course ID as the following picture: Import library and initialize database

Read more

Generate textual reports from the BibTeX files

Generate report for the given bibtex file. For use: python -m venv venv source venv/bin/activate pip install –upgrade pip pip install https://github.com/igordejanovic/textx-bibtex/archive/refs/heads/master.zip pip install https://github.com/igordejanovic/textx-gen-bibtex-report/archive/refs/heads/main.zip For development: git clone [email protected]:igordejanovic/textx-gen-bibtex-report.git cd textx-gen-bibtex-report python -m venv venv source venv/bin/activate pip install –upgrade pip pip install https://github.com/igordejanovic/textx-bibtex/archive/refs/heads/master.zip pip install -e .[dev,test] Note: for zsh escape [] -> pip install -e .[dev,test] To generate a report from file my.bib:

Read more

API to run FAIR evaluations of online resources (Findable, Accessible, Interoperable, Reusable)

An API to run evaluations to assess the FAIRness of a resource. Using FastAPI and MongoDB Requirements Docker Docker Compose Poetry if you need to install new Python packages. Node.js (with npm) if you need to do frontend development Edit the assessments Most of the Python code for the API is in https://github.com/MaastrichtU-IDS/fair-enough/tree/main/backend/app All assessments used to run evaluations are python scripts defined in the same folder: https://github.com/MaastrichtU-IDS/fair-enough/tree/main/backend/app/assessments Backend local development Start the stack for development locally with Docker Compose: […]

Read more

A Python package, that allows you to acquire your RecNet authorization bearer token with your account credentials

This is a Python package, that allows you to acquire your RecNet bearer token with your account credentials! Done via git: python -m pip install git+https://github.com/Jegarde/RecNet-Login.git#egg=recnetlogin The absolute basics. This is basically all you need to know to get started. from recnetlogin import login_to_recnet login = login_to_recnet(“username”, “password”) print(login) A simple example on how the module is used. Another example script is found here.

Read more

A simple backend app for inventory management system. User can Add, Remove, Update and View products

Getting Started You can start this app by activating the virtual environment located in venv of the main project directory and running following command in the terminal: python manage.py runserver Details The app is created with django and django rest-framework and it is designed for learning purpose only. It has all Create, Read, Update and Delete operations which arerequired in all big applications. It covers following concepts: Django Django RestFramework Authentication PostGreSQl integration Models and Views Permissions and Authorization The […]

Read more

FHEM Connector for FHT Heating devices

FHEM Connector for FHT Heating devices (connected via FHEM) Requires FHEM to work You can find FHEM here: https://fhem.de/ Requires manual setup via FHEM-WEBbapi Setup for the FHEM WEBapi here: https://github.com/Rsclub22/home-assistant-fht#fhem-webapi IMPORTANT: The WEBapi needs to be accesabile without a password The FHEM Connector needs to be cloned into the custom_components folderDownload the FHEM Connector here: https://github.com/Rsclub22/home-assistant-fht/releases/download/v0.2/fht_heating.zipand unzip it in your custom_components directory. If it doesn’t exist create the directory with mkdir custom_components and change the permissions with chmod 777 […]

Read more

Define your JSON schema as Python dataclasses

Define your JSON schema as Python dataclasses Installation pip install nvelope The problem it solves This is basically sommething like JSON-schema, but it workswith static type checking, since the classes you define are just regularpython dataclasses which can (and should) be type checked with mypy library. It also lets not to just define the structure of your JSON data in asingle place in yourpython code, but also to definecustom checks and conversions from/to JSON for any type you want. Original […]

Read more

Group imports from Windows binaries

This is a tool that I use to group imports from Windows binaries.Sometimes, you have a gigantic folder full of executables, and you want to figure out what you should look at first.importsort will iterate over all of the files in a directory, and create a list containing the DLL name, the function imported, and the file that imported that function.You can use it to analyze possible behavior, such as network functionality or registry key manipulation etc. It uses radare2’s […]

Read more
1 2