Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update indent
  • Loading branch information
CaidevOficial committed Feb 16, 2022
commit 4cdb033a05eb8fcd18c4b3c605beacbb8fe4a30d
4 changes: 2 additions & 2 deletions GithubCloner2022.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@
# ?#########? End DataManager Configuration ##########

# ?#########? Start DataFrame Configuration ##########
#* Reads the 'csv' File to get the dataframe
# *# Reads the 'csv' File to get the dataframe
df = pd.read_csv(filename)

#* Sets the Main DF to the class to handle it
# *# Sets the Main DF to the class to handle it
Handler.MainDataFrame = df
Handler.ConfigsJsonValues = JsonDFConfigs
Handler.ConfigurateDataFrame(Handler.ConfigsJsonValues['Course'])
Expand Down
4 changes: 2 additions & 2 deletions Github_Repositories.csv
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"Marca temporal","Nombre/s","Apellido/s","División","DNI / Legajo","E-Mail","Link al repositorio"
"2022/02/13 10:26:52 p. m. GMT-3","Neptune","Romane God","1G - Professor 1 - Helper 1","222222","neptune@notplanet.com","https://github.com/caidevOficial/SPD2022_TPS.git"
"2022/02/13 10:26:52 p. m. GMT-3","Poseidon","Grecian God","1F - Professor 2 - Helper 2","333333","poseidon@sea.com","https://github.com/caidevOficial/Python_ITBA_IEEE.git"
"2022/02/13 10:26:52 p. m. GMT-3","Neptune","Romane God","1G - Professor 1 - Helper 1","222222","neptune@notplanet.com","https://github.com/caidevOficial/SPD2022_TPS"
"2022/02/13 10:26:52 p. m. GMT-3","Poseidon","Grecian God","1F - Professor 2 - Helper 2","333333","poseidon@sea.com","https://github.com/caidevOficial/Python_ITBA_IEEE"
"2022/02/13 10:26:52 p. m. GMT-3","Hades","Grecian God","1F - Professor 2 - Helper 2","111111","Hades@underworld.com","https://github.com/caidevOficial/CaidevOficial.git"
"2022/02/13 10:26:52 p. m. GMT-3","Zeus","Grecian God","1G - Professor 1 - Helper 1","444444","zeus@ray.com","https://github.com/caidevOficial/Python_IEEE_Team14293.git"
"2022/02/13 10:26:52 p. m. GMT-3","Mercury","Romane God","1G - Professor 1 - Helper 1","222222","neptune@notplanet.com","https://github.com/caidevOficial/SPD2022_TPS.git"
Expand Down
8 changes: 4 additions & 4 deletions Modules/DataFrameHandler_Mod/__init__.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# GNU General Public License V3
#
#
# Copyright (c) 2022 [FacuFalcone]
#
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
10 changes: 5 additions & 5 deletions Modules/GetData_Mod/DataManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,9 +274,9 @@ def NormalizeURL(self, url: str) -> str:
str: [The normalized url]. \n
"""
if not ".git" in url:
url = url.replace(' \n', '')
url = f'{url}.git'
return url.replace("\ \n", "")
url = url.replace('\n', '.git')
#url = f'{url}.git'
return url.replace("\n", "")

def NormalizeCourse(self, course: str) -> str:
"""[summary] \n
Expand Down Expand Up @@ -364,10 +364,10 @@ def CloneRepositories(self, DfH: DFH, ) -> None:
self.Messenger.PrintMessage()

try:
#? Create git Clone commands
# ?## Create git Clone commands
self.MakeCloneCommands(DfH)

#? Execute the commands
# ?## Execute the commands
self.ExecuteCommands(self.Messenger)

self.Messenger.SetMessage('All Repositories have been cloned!')
Expand Down
8 changes: 4 additions & 4 deletions Modules/GetData_Mod/__init__.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# GNU General Public License V3
#
#
# Copyright (c) 2022 [FacuFalcone]
#
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
8 changes: 4 additions & 4 deletions Modules/PrintMessage_Mod/__init__.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# GNU General Public License V3
#
#
# Copyright (c) 2022 [FacuFalcone]
#
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.