Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/icij/datashare-network-client
Datashare network client python API
https://github.com/icij/datashare-network-client
Last synced: 13 days ago
JSON representation
Datashare network client python API
- Host: GitHub
- URL: https://github.com/icij/datashare-network-client
- Owner: ICIJ
- License: agpl-3.0
- Created: 2022-01-07T16:59:08.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-21T09:30:20.000Z (over 1 year ago)
- Last Synced: 2024-10-12T04:23:37.236Z (about 1 month ago)
- Language: Python
- Size: 1.26 MB
- Stars: 4
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# datashare network client library [![CircleCI](https://circleci.com/gh/ICIJ/datashare-network-client/tree/main.svg?style=svg&circle-token=f53a35915c04a1014e6a1f358904e54366af91a6)](https://circleci.com/gh/ICIJ/datashare-network-client/tree/main)
This is the client library for the protocol described in the EPFL paper:
[DATASHARENETWORK A Decentralized Privacy-Preserving Search Engine for Investigative Journalists](https://arxiv.org/pdf/2005.14645.pdf)
This is a work in progress.
## Testing
```shell
$ make test
```## Database
To run the migrations on `dsnet.db` :
```shell
$ /path/to/alembic upgrade head
```If you change the models, then please run :
```shell
$ alembic revision --autogenerate -m "migration description"
```It will generate a new migration step file in `migrations/versions` that you can add with your commit.