Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
The GWDataFind data discovery client.
The GWDataFind service allows users to query for the location of Gravitational-Wave Frame (GWF) files containing data from the current gravitational-wave detectors.
The simplest installation is via pip
:
python -m pip install gwdatafind
This package is also available as a Conda package:
conda install -c conda-forge gwdatafind
To find the URLs of all H1_R
files for the LIGO-Hanford observatory in
a given GPS interval:
>>> from gwdatafind import find_urls
>>> find_urls('H', 'H1_R', 1198800018, 1198800618)
To utillise connection pooling, create a Session
:
>>> from gwdatafind import (find_urls, Session)
>>> with Session() as sess:
... for ifo in ("H", "L"):
... urls[ifo] = find_urls(
... ifo,
... f"{ifo}1_R",
... 1198800018,
... 1198800618,
... session=sess,
... )
## On the command-line
GWDataFind can also be executed via the command-line client, for full details
run
```bash
$ python -m gwdatafind --help
For more documentation, see https://gwdatafind.readthedocs.io/.
FAQs
The GWDataFind data discovery client
We found that gwdatafind 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.