A python wrapper over OpenGL 3.3+ core that simplifies the creation of simple graphics

ModernGL ModernGL is a python wrapper over OpenGL 3.3+ core that simplifies the creation of simple graphics applications like scientific simulations, games or user interfaces. Usually, acquiring in-depth knowledge of OpenGL requires a steep learning curve. In contrast, ModernGL is easy to learn and use, moreover it is capable of rendering with high performance and quality, with less code written. The majority of the moderngl code base is also written in C++ for high performance. pip install moderngl Features GPU […]

Read more

A markdown extension for converting Leiden+ epigraphic text to TEI XML/HTML

$ pip install leidenmark A Python Markdown extension for converting Leiden+ epigraphic text to TEI XML/HTML. Inspired by the Brill plain text (BPT) format that aims to incorporate Leiden+ into a Markdown-based syntax. >>> from leidenmark import leiden_plus >>> content = “”” “”” >>> leiden_plus(content, indent=True) The output of the above lines is the following XML snippet: Lorem ipsum dolor sit amet, conc etur adipiscing ut labore et dol ore magna    

Read more

Virt Test Provider for qemu and other related virtualization backends

QEMU test provider for virt-test This is the official [1] test provider for the following subtest types: QEMU Generic (Virtualization backend agnostic) OpenVSwitch Really quick start guide Fork this repo on github Create a new topic branch for your work Create a new test provider file in your virt test repo, like: cp io-github-autotest-qemu.ini myprovider.ini [provider]uri: file:///home/foo/Code/tp-qemu[generic]subdir: generic/[qemu]subdir: qemu/[openvswitch]subdir: openvswitch/ You can optionally delete temporarily the io-github-autotest-qemu.ini file, just so you don’t have test conflicts. Then you can develop your […]

Read more

FTP Anonymous Login in python

FTPAnon FTP Anonymous Login Install git clone https://github.com/SiThuTuntimehacker/FTPAnon cd FTPAnon bash install.sh access ftp sever ” ftpaccess.txt “ Usage , ./ftpanon.py (ip or host) #Happy Hacking #Page! #https://www.facebook.com/termux.myanmar.user/ GitHub https://github.com/SiThuTuntimehacker/FTPAnon    

Read more

A Bot to Track Kernel Upstreams from kernel.org and Post it on Telegram Channel

Channel Kernel Tracker is the channel where the bot will be sending the updates in. This is a Telegram Bot to Track Kernel Upstreams kernel.org and send it to a telegram channel specified. I used BeautifulSoup to scrape the data from the kernel.org website and telegram http api to send the message to the channel. Configuration Get Bot API Key from @BotFather Fill the values in vars_sample.env and rename it into vars.env. And run the bot by running:- python3 -m […]

Read more

Text to Image Generation with Semantic-Spatial Aware GAN in python

text2image This repository includes the implementation for Text to Image Generation with Semantic-Spatial Aware GAN This repo is not completely. Network Structure The structure of the spatial-semantic aware convolutional network (SSACN) is shown as below Requirements python 3.6+ pytorch 1.0+ numpy matplotlib opencv Or install full requirements by running: pip install -r requirements.txt TODO [x] instruction to prepare dataset [ ] remove all unnecessary files [x] add link to download our pre-trained model [ ] clean code including comments [ […]

Read more

Unofficial Python API Wrapper of 1337x

1337x This is the unofficial API of 1337x. It supports all proxies of 1337x and almost all functions of 1337x. You can search, get trending, top and popular torrents. Furthermore, you can browse torrents of a certain category. It also supports filtering on result by category, supports sorting and caching. Installation Start guide Quick Examples 1. Searching torrents >>> from py1337x import py1337x # Using 1337x.tw and saving the cache in Desktop which expires after 500 seconds >>> torrents = […]

Read more

A telegram bot that allows you to copy folder/team drive to team drives

Clonebot – Heroku version CloneBot is a telegram bot that allows you to copy folder/team drive to team drives. One of the main advantage of this bot is that you can host it to Heroku for free. ✅ Advantages Use server side copy Bypass the 750Gb a day limit thanks to Service accounts Duplicate team drive Copy public folders & files to team drives Host it to heroku ❌ Drawbacks Does not support files upload (only copy) You cannot copy […]

Read more

Data pipeline architecture for onboarding public datasets to Datasets for Google Cloud

Public Datasets Pipelines Cloud-native, data pipeline architecture for onboarding public datasets to Datasets for Google Cloud. We use Pipenv to make environment setup more deterministic and uniform across different machines. If you haven’t done so, install Pipenv using the instructions found here. Now with Pipenv installed, run the following command: pipenv install –ignore-pipfile –dev This uses the Pipfile.lock found in the project root and installs all the development dependencies. Finally, initialize the Airflow database: pipenv run airflow initdb Configuring, generating, […]

Read more
1 540 541 542 543 544 927