Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/deeper-x/cfiscale
Genera e controlla il codice fiscale
https://github.com/deeper-x/cfiscale
codicefiscale golang
Last synced: 17 days ago
JSON representation
Genera e controlla il codice fiscale
- Host: GitHub
- URL: https://github.com/deeper-x/cfiscale
- Owner: deeper-x
- License: mit
- Created: 2020-06-19T21:27:45.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-25T16:08:40.000Z (over 2 years ago)
- Last Synced: 2024-06-21T17:09:51.980Z (6 months ago)
- Topics: codicefiscale, golang
- Language: Go
- Homepage:
- Size: 745 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Codice Fiscale
![Go](https://github.com/deeper-x/codice-fiscale/workflows/Go/badge.svg)Sistema di generazione codice fiscale, a partire da:
```
name string
surname string
birthCity string
birthDate string
gender string
```Metodi esposti:
#### Genera codice fiscale
```
p := NewPerson("Mario", "Rossi", "Roma", "29/09/1936", "M")
fc, err := p.DoRequest()
...
```#### Controlla codice fiscale
```
fc := "BRLSLV36P29F205X"
ok, err := p.Verify(fc)
...
```