Remove all notes_tools occurency
This commit is contained in:
parent
06622aeacc
commit
b1da2c3acf
|
@ -10,7 +10,6 @@ steam_handler.setFormatter(formatter)
|
|||
|
||||
# création de l'objet logger qui va nous servir à écrire dans les logs
|
||||
logger = logging.getLogger()
|
||||
#logger = logging.getLogger("notes_tools")
|
||||
# on met le niveau du logger à DEBUG, comme ça il écrit tout
|
||||
logger.setLevel(logging.INFO)
|
||||
logger.addHandler(steam_handler)
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
Evaluation reports
|
||||
"""
|
||||
|
||||
from notes_tools.tools import (
|
||||
from repytex.tools import (
|
||||
extract_flat_marks,
|
||||
get_class_ws,
|
||||
digest_flat_df,
|
||||
|
|
|
@ -17,7 +17,7 @@ from .filters import includegraphics
|
|||
pytex.add_filter("includegraphics", includegraphics)
|
||||
# texenv.filters['includegraphics'] = includegraphics
|
||||
|
||||
pytex.add_pkg_loader("notes_tools.reports", "templates")
|
||||
pytex.add_pkg_loader("repytex.reports", "templates")
|
||||
|
||||
|
||||
def produce_compile(template, datas, target, force=1):
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env python
|
||||
# encoding: utf-8
|
||||
|
||||
from notes_tools.tools import extract_flat_marks, get_class_ws, list_classes
|
||||
from repytex.tools import extract_flat_marks, get_class_ws, list_classes
|
||||
import pandas as pd
|
||||
import numpy as np
|
||||
import xlrd
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
""" Making term reports """
|
||||
|
||||
import logging
|
||||
from notes_tools.tools import (
|
||||
from repytex.tools import (
|
||||
extract_flat_marks,
|
||||
get_class_ws,
|
||||
digest_flat_df,
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
import pandas as pd
|
||||
import numpy as np
|
||||
from notes_tools.tools.marks_plottings import (pie_pivot_table,
|
||||
from repytex.tools.marks_plottings import (pie_pivot_table,
|
||||
parallel_on,
|
||||
radar_on,
|
||||
hist_boxplot
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
import pandas as pd
|
||||
import numpy as np
|
||||
from notes_tools.tools.marks_plottings import (pie_pivot_table,
|
||||
from repytex.tools.marks_plottings import (pie_pivot_table,
|
||||
parallel_on,
|
||||
radar_on,
|
||||
)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
# encoding: utf-8
|
||||
|
||||
|
||||
from notes_tools.tools import df_marks_manip
|
||||
from repytex.tools import df_marks_manip
|
||||
import pandas
|
||||
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
# encoding: utf-8
|
||||
|
||||
|
||||
from notes_tools.tools import extract
|
||||
from repytex.tools import extract
|
||||
import pandas
|
||||
import pytest
|
||||
|
||||
|
|
Loading…
Reference in New Issue