Skip to content
This repository was archived by the owner on Dec 22, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<!-- Please include a summary of the issue.-->

## Type of issue
- NOTE: *These boxes can be checked using **`[X]`***

- [ ] Feature (New Script)
- [ ] Bug
Expand Down
3 changes: 2 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Replace `issue_no` in the above line, with the issue related to this PR.
## Type of change

Choosing one or more options from the following as per the nature of your Pull request.
- NOTE: *These boxes can be checked using **`[X]`***

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
Expand All @@ -21,7 +22,7 @@ Please tick all the boxes that are fulfilled by your Pull Request.
- [ ] My code follows the style guidelines of this project.
- [ ] My Pull Request has a descriptive title. (not a vague title like `Update index.md`)
- [ ] I have commented on my code, particularly in hard-to-understand areas.
- [ ] I have created a helpful and easy to understand `README.md`, according to the given [`README_TEMPLATE.`](https://github.com/AdityaJ7/Python_and_the_Web/blob/master/README_TEMPLATE.md)
- [ ] I have created a helpful and easy to understand `README.md`, according to the given [`README_TEMPLATE.`](https://github.com/Python-World/Python_and_the_Web/blob/master/README_TEMPLATE.md)
- [ ] I have included a requirements.txt file (if external libraries are required.)
- [ ] My changes do not produce any warnings.
- [ ] I have added a working sample/screenshot of the script.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ Scripts in python that scrape the web, create a bot or use an API to solve a pro
## Steps To Follow

- Select an issue and ask to be *assigned* to it.
- Check existing scripts [project here.](https://github.com/AdityaJ7/Python_and_the_Web/tree/master/projects)
- Check existing scripts [project here.](https://github.com/Python-World/Python_and_the_Web)
- **Star** the repository.
- On the [GitHub page for this repository](https://github.com/AdityaJ7/Python_and_the_Web), click on the Button "**Fork**".
- On the [GitHub page for this repository](https://github.com/Python-World/Python_and_the_Web), click on the Button "**Fork**".
![fork image](https://help.github.com/assets/images/help/repository/fork_button.jpg)
- Create clone ***your forked repository*** on your local machine.
![code ui](https://docs.github.com/assets/images/help/repository/code-button.png)
Expand All @@ -36,7 +36,7 @@ Scripts in python that scrape the web, create a bot or use an API to solve a pro
- Before you make any changes, [keep your fork in sync](https://www.freecodecamp.org/news/how-to-sync-your-fork-with-the-original-git-repository/) to avoid merge conflicts:

```bash
git remote add upstream https://github.com/AdityaJ7/Python_and_the_Web.git
git remote add upstream https://github.com/Python-World/Python_and_the_Web.git
git fetch upstream
git pull upstream master
git push
Expand All @@ -46,11 +46,11 @@ Scripts in python that scrape the web, create a bot or use an API to solve a pro

- Checkout to development branch (*name your branch according to the issue name*).

```basg
```bash
git checkout -b <branch-name>
```

- Create a folder in [projects directory](https://github.com/chavarera/python-mini-projects/tree/master/projects) according to issue name.
- Create a folder in one of the folders in the [Scripts' directory](https://github.com/Python-World/Python_and_the_Web/tree/master/Scripts) according to issue name.
- Write your code and add to the respective folder in the projects directory, locally.
- Don't forget to add a `README.md` in your folder, according to the [README_TEMPLATE.](https://github.com/chavarera/python-mini-projects/blob/master/README_TEMPLATE.md)
- Add the changes with `git add`, `git commit` ([write a good commit message](https://chris.beams.io/posts/git-commit/), if possible):
Expand All @@ -75,7 +75,7 @@ Scripts in python that scrape the web, create a bot or use an API to solve a pro

## README Template for scripts

[README Template](https://github.com/AdityaJ/Python_and_the_Web/blob/master/README_TEMPLATE.md)
[README Template](https://github.com/Python-World/Python_and_the_Web/blob/master/README_TEMPLATE.md)

## Connect On Social media

Expand Down