https://github.com/edualb/godmitri
This project provides utilities for chemistry. The name of the project was inspired by periodic table creator Dmitri Ivanovic Mendeleev name.
https://github.com/edualb/godmitri
bioinformatics cheminformatics chemistry code4lib golang library scientific
Last synced: 2 months ago
JSON representation
This project provides utilities for chemistry. The name of the project was inspired by periodic table creator Dmitri Ivanovic Mendeleev name.
- Host: GitHub
- URL: https://github.com/edualb/godmitri
- Owner: edualb
- License: mit
- Created: 2020-08-03T20:57:26.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-24T18:14:35.000Z (over 5 years ago)
- Last Synced: 2024-05-01T18:21:07.489Z (almost 2 years ago)
- Topics: bioinformatics, cheminformatics, chemistry, code4lib, golang, library, scientific
- Language: Go
- Homepage:
- Size: 151 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
[](https://travis-ci.com/edualb/godmitri)
#### Table Of Contents:
[Introduction](#introduction)
[Installation](#installation)
[Getting start](#getting-start)
## **Introduction**
This project provides utilities for general chemistry. The name of the project was inspired by periodic table creator Dmitri Ivanovic Mendeleev.
Key features:
* Get all elements properties from the periodic table :heavy_check_mark:
If you want to contribute with a new feature or found out some bug which you can solve, check our [contributing guideline](https://github.com/edualb/godmitri/blob/master/CONTRIBUTING.md)
## **Installation**
* init the go module in your project
```
$ go mod init example.com/myProject
```
* Just import the `godmitri` library in your project
```go
import "github.com/edualb/godmitri/element"
```
## **Getting start**
```go
package main
import (
"fmt"
"github.com/edualb/godmitri/element"
)
func main() {
// Creates an instance of Aluminium
a := element.Aluminium{}
// Prints the atomic weight from aluminium
fmt.Printf("%f\n", a.GetAtomicWeight())
}
```