Develop and deploy applications with the Ionburst Cloud Python SDK

Ionburst SDK for Python The Ionburst SDK for Python enables developers to easily integrate with Ionburst Cloud, building in ultra-secure and private object storage to their applications. Getting Started Installation pip3 install ionburst-sdk-python # OR pip3 install ionburst-sdk-python –user Configuration The Ionburst SDK can get its configuration (ionburst_id, ionburst_key, ionburst_uri) from the following three files. If ionburst_id and ionburst_key are not specified by environment variable, they are obtained from the credentials file with information from the config.json file. If ionburst_uri […]

Read more

Python Interactive Graphical System made during Computer Graphics classes

PY-IGS – The PYthon Interactive Graphical System Python Interactive Graphical System made during Computer Graphics classes (INE5420-2021.1) Installation To install this software you will need these dependencies (with their thevelopment libraries): Gtk 3.20+ PyGOBject Dependencies (libgirepository1.0-dev gcc libcairo2-dev pkg-config python3-dev gir1.2-gtk-3.0) Python 3.8+ Poetry (To install it, please visit the official install instructions) After install them, install python dependencieswith: poetry install How to Use Executing In order to execute this program, run the following command: poetry run python3 py_igs Navigation […]

Read more

Open-source linguistic ethnography tool for framing public opinion in mediatized groups

qualichat Open-source linguistic ethnography tool for framing public opinion in mediatized groups. Installing Python 3.7.1 or higher is required. To install the library, you can just run the following command: $ pip install -U qualichat To install a development version, follow these steps: $ git clone https://github.com/qualichat/qualichat $ cd qualichat # Linux/MacOS $ python3 -m pip install -U . # Windows $ py -3 -m pip install -U . Quickstart To use this library, you need a plain chat text […]

Read more

Python interface to web-socket based interface to ALICE Grid Services

alien.py Python interface to web-socket based interface to ALICE Grid Services. Basic usage Can be used as command mode and interactive mode : Command mode :alien.py e.g :alien.py pwdN.B. command/arguments must be quoted to avoid being interpreted by the shell:alien.py ‘rm my_alien_dir/*’ Interactive/shell mode e.g : alien.py Welcome to the ALICE GRID support mail: [email protected] AliEn[asevcenc]:/alice/cern.ch/user/a/asevcenc/ >pwd /alice/cern.ch/user/a/asevcenc/ AliEn[asevcenc]:/alice/cern.ch/user/a/asevcenc/ >whoami asevcenc AliEn[asevcenc]:/alice/cern.ch/user/a/asevcenc/ > For both command and shell mode multiple commands can be issued separated by ; The interactive mode […]

Read more

A multiplayer websocket backend for real-time communication in Tetri5

Tetri5 – Multiplayer Websocket Backend This repository is the backend of the multiplayer portion of the Tetri5 game client. It uses the python websockets library to allow game clients to connect and communicate in real time. Run Locally Use pip package manager to install the required dependencies: pip install -r requirements.txt From your terminal move to the root of the project and run the following line: python main.py In some systems you may need to run this instead: python3 main.py […]

Read more

A collection analysis tool that assists libraries in analyzing their journal subscriptions

unsub unsub is a collection analysis tool that assists libraries in analyzing their journal subscriptions. The tool provides rich data and a summary graph, but more detailed analysis tends to take place off the site in an exported .csv file that allows for filtering, notes, and additional visualization. This project, unsub extender, is a Python script that takes an unsub data export file and automates useful plots and visualizations for a collection analysis team to explore. The graphs are interactive […]

Read more

Simulate dynamic systems expressed in block diagram form using Python

Block diagram simulation This Python package enables modelling and simulation of dynamic systems conceptualized in block diagram form, but represented in terms of Python class and method calls. Unlike Simulink or LabView we write Python code rather than drawing boxes and wires. Wires can communicate any Python type such as scalars, lists, numpy arrays, other objects, and even functions. We first sketch the dynamic system we want to simulate as a block diagram, for example this simple first-order system which […]

Read more

Python bindings for Podman’s RESTful API

podman-py This python package is a library of bindings to use the RESTful API of Podman. It is currently under development and contributors are welcome! Dependencies Example usage “””Demonstrate PodmanClient.””” import json from podman import PodmanClient # Provide a URI path for the libpod service. In libpod, the URI can be a unix # domain socket(UDS) or TCP. The TCP connection has not been implemented in this # package yet. uri = “unix:///run/user/1000/podman/podman.sock” with PodmanClient(base_url=uri) as client: version = client.version() […]

Read more

Discord.py Gaming Bot for fun & engaging discord minigames

Discord.py-Gaming-Bot Discord.py Gaming Bot for fun & engaging discord minigames. Description 📝: An open source discord-py bot, made in python, which includes various minigames!🎮 (Scroll down for images!) Game List 📜: -Battleships(Completed) 🚢 -TicTacToe(WIP) ❌ -Uno(Planned) 🎴 -More ➕ Requirements🖥️: aiohttp==3.7.4.post0 async-timeout==3.0.1 attrs==21.2.0 chardet==4.0.0 discord==1.7.3 discord.py==1.7.3 idna==3.2 multidict==5.1.0 typing-extensions==3.10.0.0 yarl==1.6.3 Pip🐍: pip install discord Installation📥: git clone https://github.com/Wordsetter0/Discord.py-Gaming-Bot Usage⚙️: Type in your token in TOKEN.txt and you should be good to go Default bot image is provided in bot/boticon.png Images: […]

Read more

Msgpack serialization/deserialization library for Python

ormsgpack ormsgpack is a fast msgpack library for Python. It is a fork/reboot of orjson It serializes faster than msgpack-python and deserializes a bit slower (right now). It supports serialization of: dataclass, datetime, numpy, pydantic and UUID instances natively. Its features and drawbacks compared to other Python msgpack libraries: serializes dataclass instances natively. serializes datetime, date, and time instances to RFC 3339 format, e.g., “1970-01-01T00:00:00+00:00” serializes numpy.ndarray instances natively and faster. serializes pydantic.BaseModel instances natively (disregards the configuration ATM). serializes […]

Read more
1 561 562 563 564 565 927