
Research
SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.
adnpy
Advanced tools
.. image:: https://badge.fury.io/py/adnpy.png :target: http://badge.fury.io/py/adnpy
.. image:: https://travis-ci.org/appdotnet/ADNpy.png?branch=master :target: https://travis-ci.org/appdotnet/ADNpy
ADNpy aims to be an easy-to-use Python library for interacting with the App.net API <https://developers.app.net>_.
To install Requests, simply:
.. code-block:: bash
$ pip install adnpy
Documentation is available at http://adnpy.readthedocs.org/.
In order to use ADNpy, You'll to need an access token. If you don't already have one, first create an app_, and then generate an access token for your app.
.. code-block:: python
import adnpy
adnpy.api.add_authorization_token(<Access Token Here>)
# Create a post
post, meta = adnpy.api.create_post(data={'text':'Hello App.net from adnpy!'})
# Take a look at recent checkins
posts, meta = adnpy.api.get_explore_stream('checkins')
for post in posts:
print post
# You can even paginate through checkins using the cursor method.
# Cursors will obey rate limits (by blocking until retries are
# permitted), and will allow you to page through the entire stream.
for post in adnpy.cursor(adnpy.api.get_explore_stream, 'checkins'):
print post
.. _create an app: https://account.app.net/developer/apps/
FAQs
App.net API library for python
We found that adnpy 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
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.

Company News
Socket is proud to join the OpenJS Foundation as a Silver Member, deepening our commitment to the long-term health and security of the JavaScript ecosystem.

Security News
npm now links to Socket's security analysis on every package page. Here's what you'll find when you click through.