Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# -*- coding: utf-8 -*- 

2""" 

3@file 

4@brief Fonctions retournant des jeux de données. 

5""" 

6import os 

7 

8 

9def get_data_folder(): 

10 """ 

11 Retourne le répertoire de données inclus dans ce module. 

12 """ 

13 this = os.path.dirname(__file__) 

14 data = os.path.join(this, "data") 

15 return os.path.abspath(data)