Metadata-Version: 2.1
Name: nanoscipy
Version: 2.1.0
Summary: A package containing costum compiled functions, to make data-handling and -analysis easier.
Home-page: https://github.com/nicholas12392/nanoscipy
Author: Nicholas Hansen
Author-email: nicholas.2000@live.dk
License: MIT
Project-URL: Bug Tracker, https://github.com/nicholas12392/nanoscipy/issues
Platform: UNKNOWN
Description-Content-Type: text/markdown

# nanoscipy

nanoscipy has been made, to ease the more heavy data-handling, -processing, and - analysis. 
This package is being readily updated at the moment, so be sure to keep up, as new and useful additions and fixes are very likely to be included.

## Installation and updating
Use the package manager [pip](https://pip.pypa.io/en/stable/) to install nanoscipy like below. 
Rerun this command to check for and install  updates .
```bash
pip install nanoscipy
```
For package updates, use:
```bash
pip install --upgrade nanoscipy
```
Note that if you're using anaconda, you might have to install the module from the anaconda terminal instead: 
```bash
(base) C:\Users\'user'> pip install nanoscipy
```
The same scheme goes for updates:
```bash
(base) C:\Users\'user'> pip install --upgrade nanoscipy
```
## Usage
### Import
Do note that the module currently consists of two sub-modules, and so unless you are importing the entire module, you will need to specify either
```bash
import nanoscipy.functions
```
or
```bash
import nanoscipy.help
```
Note that the .functions sub-module contains all functions the module has, whilst the .help sub-module contains an additional help-function that can give you more informations of the functions, how they work, input type along with default input and output (this function is made to be run in the console.)

Currently being updated.


