Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
.. badges
.. image:: https://img.shields.io/pypi/v/topopy.svg :target: https://pypi.python.org/pypi/topopy :alt: Latest Version on PyPI .. image:: https://img.shields.io/pypi/dm/topopy.svg?label=PyPI%20downloads :target: https://pypi.org/project/topopy/ :alt: PyPI downloads
.. image:: https://github.com/maljovec/topopy/actions/workflows/quality.yaml/badge.svg?branch=main :target: https://github.com/maljovec/topopy/actions :alt: Code Quality Test Results .. image:: https://github.com/maljovec/topopy/actions/workflows/test.yaml/badge.svg?branch=main :target: https://github.com/maljovec/topopy/actions :alt: Test Suite Results
.. image:: https://www.codefactor.io/repository/github/maljovec/topopy/badge :target: https://www.codefactor.io/repository/github/maljovec/topopy :alt: CodeFactor .. image:: https://coveralls.io/repos/github/maljovec/topopy/badge.svg?branch=main :target: https://coveralls.io/github/maljovec/topopy?branch=main :alt: Coveralls .. image:: https://readthedocs.org/projects/topopy/badge/?version=latest :target: https://topopy.readthedocs.io/en/latest/?badge=latest :alt: ReadTheDocs .. image:: https://pyup.io/repos/github/maljovec/topopy/shield.svg :target: https://pyup.io/repos/github/maljovec/topopy/ :alt: Pyup
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg :target: https://github.com/psf/black :alt: This code is formatted in black .. image:: https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336 :target: https://pycqa.github.io/isort/ :alt: This code has its imports sorted with isort .. image:: https://img.shields.io/badge/License-BSD_3--Clause-blue.svg :target: https://opensource.org/licenses/BSD-3-Clause :alt: BSD 3-Clause License
.. end_badges
.. logo
.. image:: docs/_static/topopy.png :align: center :alt: topopy
.. end_logo
.. introduction
A library for computing topological data structures stemming from Morse Theory. Given a set of arbitrarily arranged points in any dimension, this library is able to construct approximate topological structures using a neighborhood graph to simulate manifold structures.
.. end_introduction
.. installation
Installation
Currently, you can use pip_ to install this package
and all of its prerequisite libraries::
pip install topopy
.. _pip: https://pip.pypa.io/en/stable/
Or to install from source, install all of the prerequiste libraries:
* scipy_
* numpy_
* scikit-learn_
* networkx_
* nglpy_
.. _scipy: https://www.scipy.org/
.. _numpy: http://www.numpy.org/
.. _scikit-learn: http://scikit-learn.org/)
.. _networkx: https://networkx.github.io/
.. _nglpy: https://github.com/maljovec/nglpy
And then clone and build the source repository::
git clone https://github.com/maljovec/topopy.git
cd topopy
make
python setup.py [develop|install]
.. end_installation
.. usage
Example Usage
::
import nglpy as ngl
import numpy as np
import topopy
def hill(_x):
_x = np.atleast_2d(_x)
x = _x[:, 0]
y = _x[:, 1]
return np.exp(- ((x - .55)**2 + (y-.75)**2)/.125) + 0.01*(x+y)
X = np.random.rand(100,2)
Y = hill(X)
graph = ngl.EmptyRegionGraph(beta=1.0, relaxed=False, p=2.0)
msc = topopy.MorseSmaleComplex(graph=graph,
gradient='steepest',
normalization='feature')
msc.build(X, Y)
msc.get_partitions()
.. end_usage
FAQs
A library for computing topological data structures
We found that topopy demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.