
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
CLI & Python API for searching Israeli bus stops and realtime line arrival info (unofficial, uses public Web endpoints).
pip install israel-bus-cli
Search address and list nearby stops (JSON):
israel-bus --address "יהודה הנשיא 36 תל אביב" --list-stops --json
Get lines for the first (nearest) stop, filter line 12:
israel-bus --address "יהודה הנשיא 36 תל אביב" --first-stop --line 12
Direct by stop id:
israel-bus --stop-id 26629 --line 12 --json
Interactive mode (no flags):
israel-bus
from israel_bus_cli import search_address, get_stops_near_location, get_lines_by_stop
addr = search_address("יהודה הנשיא 36 תל אביב")[0]
lat, lon = float(addr['lat']), float(addr['lon'])
stops = get_stops_near_location(lat, lon)
lines = get_lines_by_stop('26629')
Not affiliated with official transit authorities. API structure may change.
MIT
FAQs
CLI + Python API to search Israeli bus stops and realtime line arrivals
We found that israel-bus-cli 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.