Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Python client with HTTP & UDP & TCP/IP transports for GottWall statistics aggregator
stati-python-net is a python client with HTTP & UDP & TCP/IP transports for GottWall metrics aggregation platform <http://github.com/GottWall/GottWall>
_
.. image:: https://secure.travis-ci.org/GottWall/stati-python-net.png :target: https://secure.travis-ci.org/GottWall/stati-python-net
To use gottwall use pip
or easy_install
::
pip install stati-net
or::
easy_install stati-net
HTTPClient ^^^^^^^^^^
.. sourcecode:: python
from stati_net import HTTPClient
private_key = "gottwall_privatekey" public_key = "project_public_key" project = "test_gottwall_project"
host = "http://127.0.0.1:8890"
cli = HTTPClient(private_key=private_key, public_key=public_key, project=project, host=host, prefix=None)
cli.incr(name="orders", value=2, filters={"status": ["Completed", "Waiting"]})
TCP/IP Client ^^^^^^^^^^^^^
.. sourcecode:: python
from stati_net import TCPIPClient
private_key = "gottwall_privatekey" public_key = "project_public_key" project = "test_gottwall_project" host = "127.0.0.1" port = 8097 client = TCPIPClient(project=project, private_key=private_key, public_key=public_key, host=host, port=port, auth_delimiter="--stream-auth--", #optional chunk_delimiter="--chunk--") #optional
cli.incr(name="orders", value=2, filters={"status": ["Completed", "Waiting"]})
UDP Client ^^^^^^^^^^
.. sourcecode:: python
from stati_net import UDPClient
private_key = "gottwall_privatekey" public_key = "project_public_key" project = "test_gottwall_project" host = "127.0.0.1" port = 8097 client = UDPClient(project=project, private_key=private_key, public_key=public_key, host=host, port=port, auth_delimiter="--stream-auth--", #optional chunk_delimiter="--chunk--", #optional max_packet_size=1024) #optional
cli.incr(name="orders", value=2, filters={"status": ["Completed", "Waiting"]})
We need you help.
#. Check for open issues or open a fresh issue to start a discussion around a feature idea or a bug.
There is a Contributor Friendly tag for issues that should be ideal for people who are not very familiar with the codebase yet.
#. Fork the repository
_ on Github to start making your changes to the develop branch (or branch off of it).
#. Write a test which shows that the bug was fixed or that the feature works as expected.
#. Send a pull request and bug the maintainer until it gets merged and published.
.. _the repository
: https://github.com/GottWall/stati-python-net/
FAQs
Python client with HTTP & UDP & TCP/IP transports for GottWall statistics aggregator
We found that stati-net 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.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
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.