Metadata-Version: 2.1
Name: nanoscipy
Version: 2.1.2
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 one sub-module, and so unless you are importing the entire module, you will need to specify either
```bash
import nanoscipy.functions
```
#### Upcoming 
In the upcoming patch, a new module will be added, which will contain new classes.
```bash
import nanoscipy.classes
```
Note that the .functions sub-module contains all functions the module has, whilst the .classes sub-module contains all python classes of the package.



