Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Improve README file with more details #40

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Fr-format

A collection of validators to check data against french formats.
The standard library `fr-format` has been developed for sharing validation functions between these two projects for now:

* [validata](https://gitlab.com/validata-table)
* [csv-detective](https://github.com/datagouv/csv-detective)

It provides a collection of validators to check data against typical French formats.
Sarrabah marked this conversation as resolved.
Show resolved Hide resolved

## Usage
Sarrabah marked this conversation as resolved.
Show resolved Hide resolved

## Installation

Expand All @@ -10,6 +17,11 @@ The package is published on PyPI. Install with :

## Usage
Sarrabah marked this conversation as resolved.
Show resolved Hide resolved

**User story**

As a fr-format user, you want to validate a value according to a given French format. This allows you to easily check if the data provided by your project users is valid or not .

Comment on lines +22 to +25
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
**User story**
As a fr-format user, you want to validate a value according to a given French format. This allows you to easily check if the data provided by your project users is valid or not .

Me semble redondant avec la phrase d'introduction.

Here's an example of how to use fr-format:
johanricher marked this conversation as resolved.
Show resolved Hide resolved
```python
from frformat import Departement, Options, Millesime

Expand Down
Loading