A Python package that takes in GPS observations of formation flying satellites

LEOGPS LEOGPS is an open-source Python package that takes in GPS observations of formation flying satellites in pairs, to perform single point positioning (SPP) and precise relative positioning via carrier phase double-differential GPS (CDGPS). It currently supports only observations from the GPS constellation (L1/L2 frequency), with observation files in RINEX v2.XX format. LEOGPS gives credit to the University of Bern, for their kind sharing of CODE precise GPS ephemeris and clock files. Note that for formation flying applications, the purely […]

Read more

Plugin for using Python in an Nx Workspace

NxPy: Nx Python plugin This project was generated using Nx. The nx-python plugin allows users to create a basic python application using nx commands. To add the plugin to your project, just follow these steps: Getting started Create a Nx Workspace Before installing the nx-python plugin, it is required to have a pre-configured Nx Workspace . If you don’t, then proceed to create a new one executing the following command: npx create-nx-workspace python-workspace –preset=empty –cli=nx –nx-cloud true cd python-workspace Install […]

Read more

Download YouTube videos/music and images in MP4, JPG

BashTube Download YouTube videos, music and images in MP4, JPG with this tool, with an easy to understand interface. This tool works with both, the rooted device and the non-rooted. INSTALLATION (TERMUX) $ pkg install -y git $ git clone https://github.com/TrollSkull/BashTube $ cd BashTube $ bash installer.sh USAGE $ bash bashtube.sh YOU CAN UPDATE THE TOOL FROM IT Using >> update and >> y REQUIREMENTS Storage access allowed. (For downloaded videos & images) Storage 10 MB. Internet. GitHub https://github.com/TrollSkull/BashTube   […]

Read more

N-D labeled arrays and datasets in Python

xarray xarray (formerly xray) is an open source project and Python package that makes working with labelled multi-dimensional arrays simple, efficient, and fun! Xarray introduces labels in the form of dimensions, coordinates and attributes on top of raw NumPy-like arrays, which allows for a more intuitive, more concise, and less error-prone developer experience. The package includes a large and growing library of domain-agnostic functions for advanced analytics and visualization with these data structures. Xarray was inspired by and borrows heavily […]

Read more

A free online text designed to introduce key topics in Bioinformatics with python

Full Spectrum Bioinformatics Full Spectrum Bioinformatics is a free online text designed to introduce key topics in Bioinformatics using the Python programming language. The text is currently in prototype status. Chapters with content you can preview are linked below: The text is currently in prototype status. Chapters with content you can preview are linked below: Chapter 1. Foreword Chapter 2. Introduction Exercise: Spot the Difference Chapter 3. The Command Line Chapter 4. Exploring Python Chapter 5. Project Design Chapter 6. […]

Read more

OrderedDict vs dict in Python: The Right Tool for the Job

Sometimes you need a Python dictionary that remembers the order of its items. In the past, you had only one tool for solving this specific problem: Python’s OrderedDict. It’s a dictionary subclass specially designed to remember the order of items, which is defined by the insertion order of keys. This changed in Python 3.6. The built-in dict class now keeps its items ordered as well. Because of that, many in the Python community now wonder if OrderedDict is still useful. […]

Read more

Simple pure function representations of popular time series packages

timemachines State machines for time-series. (Use popular packages with one line of code) What’s different: Simple canoncial use of some functionality from packages like fbprophet, pmdarima, tsa and their ilk. Simple k-step ahead forecasts in functional style involving one line of code.Time series “models” are synomymous with functions that have a “skater” signature, facilitating “skating“.One might say that skater functions suggest state machines for sequential assimilation of observations (as a data point arrives,forecasts for 1,2,…,k steps ahead, with corresponding standard […]

Read more

The ctypes-based simple ImageMagick binding for Python

Wand Wand is a ctypes-based simple ImageMagick binding for Python, supporting 2.7, 3.3+, and PyPy. All functionalities of MagickWand API are implemented in Wand. You can install the package from PyPI by using pip: $ pip install Wand Or would you like to enjoy the bleeding edge? Check out the head revision of the source code from the GitHub repository: $ git clone git://github.com/emcconville/wand.git $ cd wand/ $ python setup.py install GitHub https://github.com/emcconville/wand    

Read more

A fan-made, text-adventure Pokémon game in Python

PythonRed Version A fan-made, text-adventure Pokémon game in Python! Based on Pokémon Red, but with elements from most of the official and spin-off Pokémon games. Important Notes: This is not a perfect recreation of Pokémon Red; it’s a fan-made game that, like Pokémon Red, takes place in the Kanto region. Prior in-depth knowledge of the Pokémon franchise, especially the video game series, is recommended and may be required to fully enjoy this game. Windows OS only!! This game makes use […]

Read more

Simple to use and deploy state-of-the-art ML models

Backprop Backprop makes it simple to use, finetune, and deploy state-of-the-art ML models. Solve a variety of tasks with pre-trained models or finetune them in one line for your own tasks. Out of the box tasks you can solve with Backprop: Conversational question answering in English Text Classification in 100+ languages Image Classification Text Vectorisation in 50+ languages Image Vectorisation Summarisation in English Emotion detection in English Text Generation For more specific use cases, you can adapt a task with […]

Read more
1 664 665 666 667 668 912