11 lines
210 B
Python
11 lines
210 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: UTF-8 -*-
|
|
|
|
|
|
from ...params import con
|
|
from ...tools import _get_table
|
|
schema = 'ref_territoire'
|
|
|
|
|
|
def get_districtNat():
|
|
return _get_table(con,schema,'districts_naturels') |