diff --git a/README.md b/README.md index c479c98f..1c750ad8 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,8 @@ cd Best11-Fantasycricket ## How do I contribute to this project???? +:warning: Warning! Existing contributors and/or future contributors , re-fork the repo as the commit-history has been rewritten to reduce size of the repo while cloning which makes cloning much faster than before!. + Refer to the [Contributing.md](https://github.com/HackerSpace-PESU/Best11-Fantasycricket/blob/master/.github/CONTRIBUTING.md) file of our repository

If you have any suggestions for our project , do raise a issue and we will look into it and if we think it helps our project we will keep it open until its implemented by us or by anyone else diff --git a/app/fantasy_cricket/static/bat.png b/app/fantasy_cricket/static/bat.png new file mode 100644 index 00000000..4a495fb6 Binary files /dev/null and b/app/fantasy_cricket/static/bat.png differ diff --git a/app/fantasy_cricket/static/bat.png.REMOVED.git-id b/app/fantasy_cricket/static/bat.png.REMOVED.git-id deleted file mode 100644 index 6b8ddaeb..00000000 --- a/app/fantasy_cricket/static/bat.png.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -4a495fb6bbfea7f8ab7fbb3db78684d390955b47 \ No newline at end of file diff --git a/app/fantasy_cricket/static/fonts/hackerspace.ttf b/app/fantasy_cricket/static/fonts/hackerspace.ttf new file mode 100644 index 00000000..53fe1c22 Binary files /dev/null and b/app/fantasy_cricket/static/fonts/hackerspace.ttf differ diff --git a/app/fantasy_cricket/static/fonts/hackerspace.ttf.REMOVED.git-id b/app/fantasy_cricket/static/fonts/hackerspace.ttf.REMOVED.git-id deleted file mode 100644 index 3f8da77c..00000000 --- a/app/fantasy_cricket/static/fonts/hackerspace.ttf.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -53fe1c229697eae81ec113266d66ec19b704b6f1 \ No newline at end of file diff --git a/app/fantasy_cricket/static/loading.gif b/app/fantasy_cricket/static/loading.gif new file mode 100644 index 00000000..05e1f570 Binary files /dev/null and b/app/fantasy_cricket/static/loading.gif differ diff --git a/app/fantasy_cricket/static/loading.gif.REMOVED.git-id b/app/fantasy_cricket/static/loading.gif.REMOVED.git-id deleted file mode 100644 index 34fcc065..00000000 --- a/app/fantasy_cricket/static/loading.gif.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -05e1f570d726620ac9def64d66266d6aaebaed91 \ No newline at end of file diff --git a/app/fantasy_cricket/static/result1.jpg b/app/fantasy_cricket/static/result1.jpg new file mode 100644 index 00000000..98f91ca3 Binary files /dev/null and b/app/fantasy_cricket/static/result1.jpg differ diff --git a/app/fantasy_cricket/static/result1.jpg.REMOVED.git-id b/app/fantasy_cricket/static/result1.jpg.REMOVED.git-id deleted file mode 100644 index ee9f9e61..00000000 --- a/app/fantasy_cricket/static/result1.jpg.REMOVED.git-id +++ /dev/null @@ -1 +0,0 @@ -98f91ca33ccee6dab723fedc80a0d18f375654a4 \ No newline at end of file diff --git a/app/fantasy_cricket/utils.py b/app/fantasy_cricket/utils.py index 1fc22f82..207bf642 100644 --- a/app/fantasy_cricket/utils.py +++ b/app/fantasy_cricket/utils.py @@ -32,7 +32,7 @@ def __init__(self): flags: flags json with links """ - self.cricket = Cricbuzz().matches() + self.cricket = Cricbuzz() self.supported_teams = [ "India", @@ -54,7 +54,7 @@ def get_match(self): Gets current matches dict """ matches = [] - for match in self.cricket: + for match in self.cricket.matches(): if ( match["team1"]["name"] in self.supported_teams @@ -76,7 +76,7 @@ def get_squad_file_match_type(self, teams): Gets squad file based on teams """ - for match in self.cricket: + for match in self.cricket.matches(): if ( match["team1"]["name"] == teams[0]