Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
RTD
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
esieabot
esieabot-docs
RTD
Commits
fe295e4f
Commit
fe295e4f
authored
2 years ago
by
Gauthier HEISS
Browse files
Options
Downloads
Patches
Plain Diff
First (real) commit
parent
2e06b4c8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
docs/source/conf.py
+3
-3
3 additions, 3 deletions
docs/source/conf.py
docs/source/index.rst
+4
-5
4 additions, 5 deletions
docs/source/index.rst
lumache.py
+0
-23
0 additions, 23 deletions
lumache.py
pyproject.toml
+0
-8
0 additions, 8 deletions
pyproject.toml
with
7 additions
and
39 deletions
docs/source/conf.py
+
3
−
3
View file @
fe295e4f
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
# -- Project information
# -- Project information
project
=
'
Lumache
'
project
=
'
esieabot
'
copyright
=
'
202
1
, Gr
aziella
'
copyright
=
'
202
3
, Gr
oupe ESIEA
'
author
=
'
G
raziella
'
author
=
'
G
authier HEISS
'
release
=
'
0.1
'
release
=
'
0.1
'
version
=
'
0.1.0
'
version
=
'
0.1.0
'
...
...
This diff is collapsed.
Click to expand it.
docs/source/index.rst
+
4
−
5
View file @
fe295e4f
Welcome to
Lumache
's documentation!
Welcome to
esieabot
's documentation!
===================================
===================================
**Lumache** (/lu'make/) is a Python library for cooks and food lovers
**esieabot** (/ezjabɔt/) is an opensource programmable educational robot made by ESIEA.
that creates recipes mixing random ingredients.
Fun but professional, it will help you quickly acquire or improve your digital skills:
It pulls data from the `Open Food Facts database <https://world.openfoodfacts.org/>`_
programming, electronics, artificial intelligence, cybersecurity, embedded systems, etc.
and offers a *simple* and *intuitive* API.
Check out the :doc:`usage` section for further information, including
Check out the :doc:`usage` section for further information, including
how to :ref:`installation` the project.
how to :ref:`installation` the project.
...
...
This diff is collapsed.
Click to expand it.
lumache.py
deleted
100644 → 0
+
0
−
23
View file @
2e06b4c8
"""
Lumache - Python library for cooks and food lovers.
"""
__version__
=
"
0.1.0
"
class
InvalidKindError
(
Exception
):
"""
Raised if the kind is invalid.
"""
pass
def
get_random_ingredients
(
kind
=
None
):
"""
Return a list of random ingredients as strings.
:param kind: Optional
"
kind
"
of ingredients.
:type kind: list[str] or None
:raise lumache.InvalidKindError: If the kind is invalid.
:return: The ingredients list.
:rtype: list[str]
"""
return
[
"
shells
"
,
"
gorgonzola
"
,
"
parsley
"
]
This diff is collapsed.
Click to expand it.
pyproject.toml
deleted
100644 → 0
+
0
−
8
View file @
2e06b4c8
[build-system]
requires
=
[
"flit_core >=3.2,<4"
]
build-backend
=
"flit_core.buildapi"
[project]
name
=
"lumache"
authors
=
[{name
=
"Graziella"
,
email
=
"graziella@lumache"
}]
dynamic
=
[
"version"
,
"description"
]
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment