
Research
/Security News
DuckDB npm Account Compromised in Continuing Supply Chain Attack
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
A free and asynchronous weather Python API wrapper made in Python, for Python.
Run the following command in your terminal:
$ pip install python-weather
For more information, please read the documentation.
# Import the module.
import python_weather
import asyncio
import os
async def main() -> None:
# Declare the client. The measuring unit used defaults to the metric system (celcius, km/h, etc.)
async with python_weather.Client(unit=python_weather.IMPERIAL) as client:
# Fetch a weather forecast from a city.
weather = await client.get('New York')
# Fetch the temperature for today.
print(weather.temperature)
# Fetch weather forecast for upcoming days.
for daily in weather:
print(daily)
# Each daily forecast has their own hourly forecasts.
for hourly in daily:
print(f' --> {hourly!r}')
if __name__ == '__main__':
# See https://stackoverflow.com/questions/45600579/asyncio-event-loop-is-closed-when-getting-loop
# for more details.
if os.name == 'nt':
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
asyncio.run(main())
This library depends on wttr.in
, which uses data from the World Weather Online API.
If you want to support this project, consider donating! ❤
FAQs
A free and asynchronous weather API wrapper made in Python, for Python.
We found that python-weather 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
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.