Library for Russian imprecise rhymes generation

Library for Russian imprecise rhymes generation. Quick Start Generate rhymes by any given rhyme scheme (aabb, abab, aaccbb, etc …): from tom_rhymer.rhymer import Rhymer rhymer = Rhymer.load() for rhyme in rhymer.get_rhymes_by_scheme(‘abab’): print(str(rhyme)) # предоставленными # отличите # доставлена # ограничительных Generate rhymes word by word:

Read more

A simple script for generating screenshots with Vapoursynth

A simple script for generating screenshots with Vapoursynth. About I’m lazy, and hate changing variables for each batch of screenshots I create. This script accepts input from the command line and generates screenshots using ScreenGen from the awsmfunc Vapoursynth script. Included is a PowerShell wrapper script (all platforms) to make entering CLI arguments easier. Vapoursynth parses arguments from the global dictionary (so no argparse), which is pretty tedious to type. The PowerShell script gives you tab complete functionality and more […]

Read more

A secure password generator written in python

The secure password generator Built with the rich python library NOTE: This is a WIP, its not finished and needs lots of work Installation With git git clone https://github.com/Mattio-cmd/spg cd spg/src chmod +x spg.py ./spg.py If you want to use this program anywhere on your system just type the following command (with root priviledges):cp spg.py /usr/bin With pip pip3 install passgpypip3 install rich For clipboard support (optional)pip3 install pyperclip Dependencies xclip (optional) It is needed for copying the password automatically. […]

Read more

Archive of the image generator stuff from my API

Archive of the image generator stuff from my API Q: Why?A: Because I am removing these components from the API Q: How do I run it?A: You use quart (Flask, but with async) and blueprints. I won’t copy-paste the entire API for people to instantly steal it, if that’s what you thought you could do. Q: Can I use it for my API?A: Yes, but give credits in some way GitHub View Github    

Read more

Hopefully the the next-generation backend server of bgm.tv

基于 python 的新 api server 开发环境 python 版本: 3.8 依赖管理: poetry web 框架: fastapi quick start: git clone https://github.com/bangumi/server bangumi-server cd bangumi-server python -m venv .venv # MUST use python 3.8 source .venv/bin/activate poetry install –remove-untracked pre-commit install 设置 可设置的环境变量 MYSQL_HOST 默认 127.0.0.1 MYSQL_PORT 默认 3306 MYSQL_DB 默认 bangumi MYSQL_USER 无默认值 MYSQL_PASS 无默认值 启动服务器 uvicorn pol.server:app –reload –port 3000 后端环境

Read more
1 2 3 4 5 6