https://github.com/ooni/datk
OONI Data Analysis ToolKit
https://github.com/ooni/datk
Last synced: 3 months ago
JSON representation
OONI Data Analysis ToolKit
- Host: GitHub
- URL: https://github.com/ooni/datk
- Owner: ooni
- Created: 2019-01-24T03:34:50.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-27T18:04:43.000Z (almost 7 years ago)
- Last Synced: 2024-04-14T09:04:43.357Z (over 2 years ago)
- Language: Python
- Size: 9.77 KB
- Stars: 3
- Watchers: 13
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# OONI DATK
The OONI Data Analysis ToolKit is a set of python tools that will make your
life easier when analyzing OONI data.
**WARNING** This is still under heavy development and the API may (and WILL) change unexpectedly without any prior notice.
Do not depend on this in your own software, just yet!
If you do have feedback, even about the API, do not hesitate to open an issue!
```
pip install oonidatk
```
## Downloading Data
```
dc = DataCache()
msmt_ids = download_measurements(dc,
query={
'test_name': 'web_connectivity',
'probe_cc': 'ZW',
'since': '2019-01-20'
}
)
```