Fast, Simple API for fetching Apple Firmwares

Fast, Simple API for fetching Apple Firmwares. The API server is closed due to some reasons. Wait for v2 releases. Features Fetching Signed IPSWs Fetching Signed OTAs Fetching not only iDevices but also AirPods, Beats, and Keyboard Accessories Example Request curl -X GET “loyalapi.ml/v1/restore?device=iPhone12,1” [ { “build_id”: “18D61”, “docs_url”: “http://updates-http.cdn-apple.com/2021WinterFCS/documentation/071-15446/2D646674-5AE5-454D-94C9-EBA3E76437D7/iPhoneiTunesUpdateReadMe.ipd”, “sha1”: “45186bb240128a11a26a2342a6efeb87cfd1c029”, “url”: “http://updates-http.cdn-apple.com/2021WinterFCS/fullrestores/071-12530/598B4392-EF03-4F6C-962A-3A8CC9BA9DAC/iPhone11,8,iPhone12,1_14.4.1_18D61_Restore.ipsw”, “version”: “14.4.1” }, { “build_id”: “18D61”, “docs_url”: “http://updates-http.cdn-apple.com/2021WinterFCS/documentation/071-15446/2D646674-5AE5-454D-94C9-EBA3E76437D7/iPhoneiTunesUpdateReadMe.ipd”, “sha1”: “45186bb240128a11a26a2342a6efeb87cfd1c029”, “url”: “http://updates-http.cdn-apple.com/2021WinterFCS/fullrestores/071-12530/598B4392-EF03-4F6C-962A-3A8CC9BA9DAC/iPhone11,8,iPhone12,1_14.4.1_18D61_Restore.ipsw”, “version”: “14.4.1” } ] Documentation You can read documentation on here. Build and run […]

Read more

Mitum-currency / mitum-data-blocksign python SDK

‘mitum-py-util’ will introduce the usage of mitum-currency and mitum-data-blocksign for python. This project is being totally copied to ProtoconNet/mitum-py-util. Installation Recommended requirements for ‘mitum-py-util’ is, $ python –version Python 3.9.2 $ git clone https://github.com/ProtoconNet/mitum-py-util.git $ cd mitum-py-util $ python setup.py install If setup.py doesn’t work properly, please just install necessary packages with requirements.txt before running setup.py. $ cd mitum-py-util $ pip install -r requirements.txt Generate New Operation Operations ‘mitum-py-util’ provides three operations of ‘mitum-currency’, ‘Create-Accounts’ creates an account corresponding to […]

Read more

Simulation module for PyGran: a DEM toolkit for rapid quantitative analysis of granular/powder systems

PyGranSim is part of the PyGran project, an open-source toolkit primarily designed for DEM simulation & analysis. In addition to performing basic and custom post-processing, PyGran enables running DEM simulation with the PyGranSim module. For more info on PyGran, see here. If your find PyGran useful in your research, please consider citing the following paper: @article{aam2019pygran, title={PyGran: An object-oriented library for DEM simulation and analysis}, author={Abi-Mansour, Andrew}, journal={SoftwareX}, volume={9}, pages={168–174}, year={2019}, publisher={Elsevier}, doi={10.1016/j.softx.2019.01.016} } Quick Installation PyGranSim is typically installed […]

Read more

A data science tool that captures and stores model training and execution information

Purpose Rubicon is a data science tool that captures and stores model training and execution information, like parameters and outcomes, in a repeatable and searchable way. Rubicon’s git integration associates these inputs and outputs directly with the model code that produced them to ensure full auditability and reproducibility for both developers and stakeholders alike. While experimenting, the Rubicon dashboard makes it easy to explore, filter, visualize, and share recorded work. Components Rubicon is composed of three parts: A Python library […]

Read more

A Discord bot to control your PC using your Discord Channel or using Reco: Discord PC Remote Controller App

GitHub – Arvinth-Krishna/Reco-PC-Server: It’s a Discord bot to control your PC using your Discord Channel or using Reco: Discord PC Remote Controller App. It's a Discord bot to control your PC using your Discord Channel or using Reco: Discord PC Remote Controller App. – GitHub – Arvinth-Krishna/Reco-PC-Server: It's a Discord bot to control yo…    

Read more

An AI constraint solver for Python to optimize the Vehicle Routing Problem

OptaPy is an AI constraint solver for Python to optimize the Vehicle Routing Problem, Employee Rostering, Maintenance Scheduling, Task Assignment, School Timetabling, Cloud Optimization, Conference Scheduling, Job Shop Scheduling, Bin Packing and many more planning problems. OptaPy wraps the OptaPlanner engine internally, but using OptaPy in Python is significantly slower than using OptaPlanner in Java or Kotlin. Get started Prerequisites Install Python 3.9 or later Install JDK 11 or later with JAVA_HOME configured appropriately. Build Install the python build module […]

Read more

Markov-chain based chatbot which uses Slack messages as its corpus

Friendbot is a Markov-chain based chatbot which uses Slack messages as its corpus. It reads in messages from a Slack data export, generates a corpus from them, and feeds this to a markov chain generator to naively simulate a conversation. It is built with Flask, served by Gunicorn, cached by Redis, and run in Docker. The sentences which it generates can be accessed via an API which is designed to connect to the existing Slack API. Installation Download the docker-compose.yaml […]

Read more

My notes on Data structure and Algos in golang implementation and python

My notes on Data structure and Algos in golang implementation and python Arrays Advantages of array Reading and writing is O(1) Disadvantages of array Insertion and deletion is O(n) Arrays are not dynamic If you need to store an extra element, you would have to create a new array and copy all the elements over. O(n) List Slicing in python [start:stop:step] Reverse a list list[::-1] LinkedList Linked lists are great for problems that require arbitrary insertion. Dynamic arrays allow inserting […]

Read more

A package that assists in creating Voice Applications for Magenta Voice Platform

Magenta Voice Skill SDK for Python is a package that assists in creating Voice Applications for Magenta Voice Platform. About This is a reworked stack with explicit async/await concurrency and based on FastAPI ASGI framework. Old stable (Bottle/Gevent) 0.xx branch Installation Runtime Runtime installation: python -m pip install skill-sdk. Runtime (full) Runtime installation with Prometheus metrics exporter and distributed tracing adapter: python -m pip install skill-sdk[all]. Development Development installation: python -m pip install skill-sdk[dev]. Quickstart To bootstrap a new project, […]

Read more
1 25 26 27 28 29 48