Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 928 Bytes

README.md

File metadata and controls

46 lines (32 loc) · 928 Bytes

Software for Science - Python

This repository is used to get started with Python in the Software for Science minor. Authors: Mats Otten & ...

Installation

First set-up a Python environment for yourself. This project requires Python3.

When you are done, install the requirements with pip3:

pip3 install -r requirements.txt

Usage

python3 main.py

Run tests

go to tests directory and run

python3 test_api.py 

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

Updating requirements:

When you use a library, you can install it by:

pip3 install [name-library]

To add this library to the requirements list, run the following:

pip freeze > requirements.txt