Remove all notes_tools occurency

This commit is contained in:
Benjamin Bertrand 2017-04-17 15:10:14 +03:00
parent 06622aeacc
commit b1da2c3acf
9 changed files with 8 additions and 9 deletions

View File

@ -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)

View File

@ -5,7 +5,7 @@
Evaluation reports
"""
from notes_tools.tools import (
from repytex.tools import (
extract_flat_marks,
get_class_ws,
digest_flat_df,

View File

@ -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):

View File

@ -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

View File

@ -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,

View File

@ -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

View File

@ -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,
)

View File

@ -2,7 +2,7 @@
# encoding: utf-8
from notes_tools.tools import df_marks_manip
from repytex.tools import df_marks_manip
import pandas

View File

@ -2,7 +2,7 @@
# encoding: utf-8
from notes_tools.tools import extract
from repytex.tools import extract
import pandas
import pytest