IG Trading Algos and Scripts in Python

IG Trading Algos and Scripts in Python This project is a collection of my work over 2 years building IG Trading Algorithms + Scripts, and Donations would be much appreciated. The Data Folder holds instrument data, raw and cleaned: .csv files are intended to be used for pandas dataframes The algorithms follow a mvc format each controller calls a algorithm to run (some have been commented out) Create a file holding your API keys and state its path in predefined_functions […]

Read more

Pass arguments by reference in Python

Pass arguments by reference—in Python! byrefis a decorator that allows Python functions to declare reference parameters, with similar semantics to C++’s T& or C#’s ref T. Any modifications made within the function to these parameters will be picked up by the caller. Usage from byref import byref @byref(“x”) def add(x, y, /): x += y a = 60 add(a, 40) print(f”{a}!”) # this prints 100! Motivation I thought it would be funny.

Read more

A PyTorch-based toolkit for Math Word Problem (MWP) solving

Doc|Model|Dataset|Paper MWPToolkit is a PyTorch-based toolkit for Math Word Problem (MWP) solving. It is a comprehensive framework for research purpose that integrates popular MWP benchmark datasets and typical deep learning-based MWP algorithms. Our framework has the following architecture. You could utilize our toolkit to evaluate the build-in datasets, apply it to process your raw data copies or develop your own models. Figure: The Overall Framework of MWP Toolkit News Characteristics Unification and Modularization. We decouple solvers    

Read more

XKNX – An Asynchronous KNX Library Written in Python

Documentation See documentation at: https://xknx.io/ Help We need your help for testing and improving XKNX. For questions, feature requests, bug reports either join the XKNX chat on Discord or write an email. Development You will need at least Python 3.8 in order to use XKNX. Setting up your local environment: Install requirements: pip install -r requirements/testing.txt Install pre-commit hook: pre-commit install Home-Assistant Plugin XKNX contains a plugin for the Home Assistant automation platform Example “””Example for switching a light on […]

Read more

A simple console manager for OverDrive audiobook loans in python

A simple console manager for OverDrive audiobook loans. A python port of overdrive. Requires Python >=3.5. Features Downloads the cover and audio files for an audiobook loan Supports the return of a loan Install # Install / Update to specific versionpip3 install git+https://[email protected]/ping/[email protected] –upgrade # Install / Update from latest sourcepip3 install git+https://[email protected]/ping/odmpy.git –upgrade –force-reinstall # Uninstallpip3 uninstall odmpy Usage usage: odmpy [-h] [-v] [-t TIMEOUT] {info,dl,ret} … Download/return an Overdrive loan audiobook optional arguments: -h, –help show this help […]

Read more

The ibet-Prime security token management system for ibet network

The ibet-Prime security token management system for ibet network. Features ibet-Prime is an API service that enables the issuance and management of security tokens on the ibet network. It supports tokens developed by the ibet-SmartContract project and various smart contracts. As a security token ledger management system, ibet-Prime provides a variety of functions required under Japanese regulations. By calling the ibet-Prime API from your own front-end application, you can easily build a security token management service. Dependencies Supported ibet smart […]

Read more

A system for managing CI data for Mozilla projects

Treeherder is a reporting dashboard for Mozilla checkins. It allows users to see the results of automatic builds and their respective tests. The Treeherder service manages the etl layer for data ingestion, web services, and the data model behind Treeherder. Instances Treeherder exists on two instances: staging for pre-deployment validation, and production for actual use. Installation The steps to run Treeherder are provided here. The steps to run only the UI are provided here. Links Visit our project tracking Wiki […]

Read more

Python SDK generated against the Yapily API can be used to connect to Open Banking entities

This SDK was generated using Swagger Code Generator. The SDK can be used as a module in your code and the examples demonstrate how to connect to financial institutions integrated with Yapily. Requirements To connect to the Yapily API, you will need to register yourapplication at https://dashboard.yapily.com. These application credentials can then be used to authorise allyour API requests. Installation The SDK is currently available in the Yapily github repository andcan be included in your projectby adding it to your […]

Read more

A CLI application to generate subtitle file for any video using Mozilla DeepSpeech

AutoSub is a CLI application to generate subtitle file (.srt) for any video file using Mozilla DeepSpeech. I use the DeepSpeech Python API to run inference on audio segments and pyAudioAnalysis to split the initial audio on silent segments, producing multiple small files. ⭐ Featured in DeepSpeech Examples by Mozilla Motivation In the age of OTT platforms, there are still some who prefer to download movies/videos from YouTube/Facebook or even torrents rather than stream. I am one of them and […]

Read more
1 509 510 511 512 513 973