Skip to content

Latest commit

 

History

History
49 lines (28 loc) · 2.04 KB

README.md

File metadata and controls

49 lines (28 loc) · 2.04 KB

WebHistoPy

Experimental reconceptualisation of Webhistorian as an application written in Python.

It can be adapted and build with the Beeware framework. Take their tutorial, which requires only basic Python skills, and you should be able to work on and with this project.

At the moment, the app has no localisation and labels and dialogues are in German as it was UX-tested with German participants. Feel free to contribute localisations.

The app enables participants of a study to provide a researcher with a retracted version of their browsing history across several browsers.

Participants can:

  1. provide a pseudonym (e.g. to link data with a survey)
  2. choose their typical working times to filter down results
  3. hide remaining domains that they want to stay private
  4. inspect the data before upload
  5. receive a copy of their data on upload

Researchers receive the data in form of a CSV and a YAML file in a Nextcloud drop folder of their choice.

Screenshots

For impression purposes only. Might be outdated.

macOS

Screenshot 2021-09-02 at 16 44 53

Windows

Screenshot (1) (1) copy

Development

All relevant code is in https://github.com/Leibniz-HBI/webhistopy/tree/main/webhistopy/src/webhistopy. The app can be configured to suit your needs in https://github.com/Leibniz-HBI/webhistopy/blob/main/webhistopy/src/webhistopy/config.yaml.

Environment Setup

This project uses pipenv to manage dependencies. To install pipenv, follow the instructions at https://pipenv.pypa.io/en/latest/installation.html

Then run pipenv shell to activate the virtual environment and install the dependencies:

pipenv shell
pipenv install --dev

This should reproduce the environment used to develop this project. To add or update/upgrade dependencies, follow pipenv's documentation.