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.
This package was build for my own use, please feel free to use it but it may have bugs
This package loads data from the UK Hydrology API. The API provides:
This package currently only provides access to the River Level, Flow, and Rainfall. Data is returned as a polars DataFrame. After the first request of a given dataset, the data is cached for up to a week.
>>> from hydrology import HydrologyApi, Measure
>>> from datetime import datetime
>>> api = HydrologyApi()
>>>
>>> # Get all stations that record the water level along the River Wear in Durham
>>> stations = api.get_stations(Measure.MeasureType.LEVEL, river="River Wear")
>>>
>>> df = api.get_measures(
>>> [
>>> Measure(station_id, Measure.MeasureType.LEVEL) for station_id in stations["station_id"]
>>> ],
>>> stations,
>>> start_date=datetime(2020, 1, 1),
>>> )
>>>
>>> df.head()
shape: (5, 6)
┌────────────────┬────────────────┬────────────────┬───────────────┬───────────────┬───────────────┐
│ timestamp ┆ Durham New ┆ Sunderland ┆ Chester Le ┆ Witton Park ┆ Stanhope │
│ --- ┆ Elvet Bridge ┆ Bridge ┆ Street ┆ level-i-900-m ┆ level-i-900-m │
│ datetime[μs] ┆ level-… ┆ level-i-900-… ┆ level-i-900-… ┆ --- ┆ --- │
│ ┆ --- ┆ --- ┆ --- ┆ f32 ┆ f32 │
│ ┆ f32 ┆ f32 ┆ f32 ┆ ┆ │
╞════════════════╪════════════════╪════════════════╪═══════════════╪═══════════════╪═══════════════╡
│ 2020-01-01 ┆ 0.372 ┆ 0.417 ┆ 0.465 ┆ 0.465 ┆ 0.344 │
│ 00:00:00 ┆ ┆ ┆ ┆ ┆ │
│ 2020-01-01 ┆ 0.379 ┆ 0.418 ┆ 0.465 ┆ 0.465 ┆ 0.344 │
│ 00:15:00 ┆ ┆ ┆ ┆ ┆ │
│ 2020-01-01 ┆ 0.378 ┆ 0.417 ┆ 0.464 ┆ 0.465 ┆ 0.344 │
│ 00:30:00 ┆ ┆ ┆ ┆ ┆ │
│ 2020-01-01 ┆ 0.371 ┆ 0.417 ┆ 0.464 ┆ 0.465 ┆ 0.344 │
│ 00:45:00 ┆ ┆ ┆ ┆ ┆ │
│ 2020-01-01 ┆ 0.367 ┆ 0.417 ┆ 0.467 ┆ 0.465 ┆ 0.344 │
│ 01:00:00 ┆ ┆ ┆ ┆ ┆ │
└────────────────┴────────────────┴────────────────┴───────────────┴───────────────┴───────────────┘
FAQs
Load data from the UK Hydology API
We found that hydrology 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.