An asynchronous python API wrapper meant to replace discord.py

Discord API wrapper rebuild from scratch. Links Join the discord server: https://discord.gg/8WkYz3fNFm The pypi package: https://pypi.org/project/Pincer/ Our website: https://pincer.dev Installation Use The following command to install Pincer into your python environment: pip install pincerDidn’t work? Depending on your python installation, you might need to use one of the following. pip isn’t in the path but python ispython -m pip install pincer Unix system can use pip3/python3 commandpython3 -m pip install pincerpip3 install pincer python isn’t in the pathpath/to/python.exe -m pip […]

Read more

An easy-to-use wrapper for NTFS-3G on macOS

ezNTFS ezNTFS is an easy-to-use wrapper for NTFS-3G on macOS. Installation To use ezNTFS, you will need Python 3, FUSE for macOS (osxfuse), and NTFS-3G installed in your system. These can easily be installed using Homebrew, example: brew install ntfs-3g. To install ezNTFS, run: $ pip3 install ezntfs It should be accessible from the terminal afterwards. Usage Mount all NTFS volumes using ntfs-3g (root privileges are needed for mounting): $ sudo ezntfs all Mount a specific NTFS volume (run ezntfs […]

Read more

A lightweight wrapper for the IG Markets API written in Python

trading_ig A lightweight wrapper for the IG Markets API written in Python. Simplifies access to the IG REST and Streaming APIs with a live or demo account. What is it? IG Markets provides financial spread betting and CFD platforms for trading equities, forex, commodities, indices, cryptocurrencies, bonds, rates, options and more. IG provide APIs so that developers can access their platforms programmatically. Using the APIs you can get live and historical data, automate your trades, or create apps. For details […]

Read more

A simple request wrapper for the Pancake-Swap API

Python Pancakes A simple request wrapper for the Pancake-Swap API. Installation Install package # Using pip $ pip install pythonpancakes # Or from source $ git clone https://github.com/scottburlovich/pythonpancakes.git pythonpancakes $ cd pythonpancakes $ python3 setup.py install Import module into your project and initialize API class from pythonpancakes import PancakeSwapAPI ps = PancakeSwapAPI() Usage Please note, the API functionality currently exposed by PancakeSwap is quite basic. This package will be updated as they add new functionality. summary() Returns a dictionary containing […]

Read more

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

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 python package for managing terraform remote state for Google,AWS, and Azure

Terraform Remote State Manager tf is a python package for managing terraform remote state for: Google(Gcloud), AWS, and Azure. It sets a defined structure for all cloud providers by removing the overheard of configuring and managing the path in storage buckets. tf is a python package for managing terraform remote state for: Google(Gcloud), AWS, and Azure.It sets a defined structure for all cloud providers by removing the overheard of configuring and managing the path in storage buckets. It works with: […]

Read more

Wrapper for the undocumented CodinGame API

codingame API wrapper Pythonic wrapper for the undocumented CodinGame API. Installation Python 3.6 or higher is required. Install codingame with pip: pip install codingame Quickstart Create an application, in example.py: import codingame client = codingame.Client() # if you want to log in client.login(“[email protected]”, “password”) # get a codingamer codingamer = client.get_codingamer(“username”) print(codingamer.pseudo) # get the global leaderboard global_leaderboard = client.get_global_leaderboard() # print the pseudo of the top codingamer print(global_leaderboard.users[0].pseudo) GitHub https://github.com/takos22/codingame    

Read more

Python wrapper for WhatsApp web-based on selenium

alright Python wrapper for WhatsApp web made with selenium inspired by PyWhatsApp Getting started You need to do a little bit of work to get alright to running, but don’t worry I gotcha you, everything will work well if you just carefully follow through the documentation. Installation We need to have alright installed on our machine to start using which can either be done directly from GitHub or using pip. installing directly You first need to clone or download the […]

Read more
1 2 3