It is an online game where you create a virtual team of real cricket players and score points depending on how your chosen players perform in real-life matches.Graphic user Interface (GUI) of this online game application is developed by the use of PyQT, SQLite Database is used to make this Application more dynamic, Python Programming language as well as Concepts of OOPs, are extensively used to build Logic of this Application. Command-line Interface (CLI) is used to convert .ui and .db file to .py file.
- Visual Studio Code
- SQLite Studio
- QT Designer
- Python IDLE
-
On the GitHub page for this repository, click on the Button "Fork".
-
Clone your forked repository to your computer:
For example, run this command inside your terminal:
git clone git@github.com:<your-github-username>/Cricket_Fantasy_Game.git
Replace <your-github-username>!
-
Before you make any changes, keep your fork in sync to avoid merge conflicts:
git remote add upstream git@github.com:<your-github-username>/Cricket_Fantasy_Game.git git pull upstream master
-
Add the changes with
git add
,git commit
(write a good commit message, if possible):git add . git commit -m "Add good commit message"
Replace <your-github-username>!
-
Push your changes to your repository:
git push origin master
-
Go to the GitHub page of your fork, and make a pull request:
Read more about pull requests on the GitHub help pages.
Happy Learning 😄