Compare commits

..

2 Commits

Author SHA1 Message Date
8441eb98e5 add: requirements.txt 2023-11-03 22:25:35 +01:00
519a405baf add: readme 2023-11-03 22:25:27 +01:00
2 changed files with 28 additions and 0 deletions

23
README.md Normal file
View File

@ -0,0 +1,23 @@
# Python lib
A python lib to interract with the api more easly
## Installation
- Clone the project:
``` bash
git clone https://git.chauvet.pro/michel/ft_transcendence
cd ft_transcendence
git switch python-api
```
- Create python virtual environnement.
``` bash
python3 -m venv .env
```
- Source the environnement.
``` bash
source .env/bin/activate
```
- Install the requirements
``` bash
pip install -r requirements.txt
```

5
requirements.txt Normal file
View File

@ -0,0 +1,5 @@
certifi==2023.7.22
charset-normalizer==3.3.2
idna==3.4
requests==2.31.0
urllib3==2.0.7