Skip to content

Commit 893e85d

Browse files
committed
update repo urls
1 parent 61e5dbd commit 893e85d

File tree

2 files changed

+20
-19
lines changed

2 files changed

+20
-19
lines changed

CONTRIBUTING.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ involved. The community looks forward to your contributions.
2222
> answered your question.
2323
2424
Before you ask a question, it is best to search for existing
25-
[Issues](https://github.com/mslmio/oxylabs-sdk-python/issues) that might help
26-
you. In case you have found a suitable issue and still need clarification, you
27-
can write your question in this issue. It is also advisable to search the
25+
[Issues](https://github.com/oxylabs/oxylabs-sdk-python/issues) that might help
26+
you. In case you have found a suitable issue and still need clarification, you
27+
can write your question in this issue. It is also advisable to search the
2828
internet for answers first.
2929

3030
If you then still feel the need to ask a question and need clarification, we
3131
recommend the following:
3232

33-
- Open an [Issue](https://github.com/mslmio/oxylabs-sdk-python/issues/new).
33+
- Open an [Issue](https://github.com/oxylabs/oxylabs-sdk-python/issues/new).
3434
- Provide as much context as you can about what you're running into.
3535
- Provide project and platform versions (nodejs, npm, etc), depending on what
3636
seems relevant.
@@ -47,9 +47,9 @@ We will then take care of the issue as soon as possible.
4747
4848
## Code Formatting
4949

50-
This project uses [Black](https://black.readthedocs.io/en/stable/) and
51-
[isort](https://pycqa.github.io/isort/) for code formatting. Before you submit
52-
your contribution, please make sure your code is formatted according to these
50+
This project uses [Black](https://black.readthedocs.io/en/stable/) and
51+
[isort](https://pycqa.github.io/isort/) for code formatting. Before you submit
52+
your contribution, please make sure your code is formatted according to these
5353
style guides.
5454

5555
First, you will need to install the required tools if you haven't already:
@@ -58,8 +58,8 @@ First, you will need to install the required tools if you haven't already:
5858
pip install black isort
5959
```
6060

61-
You can use the provided `fmt.sh` script to automatically format your code.
62-
This script runs `isort` and `black` on the `src` directory. Here's how you can
61+
You can use the provided `fmt.sh` script to automatically format your code.
62+
This script runs `isort` and `black` on the `src` directory. Here's how you can
6363
run it:
6464

6565
```bash
@@ -68,8 +68,8 @@ scripts/fmt.sh
6868

6969
## Running Tests
7070

71-
To ensure the quality of the code, we encourage you to run tests after making
72-
any changes and before submitting a contribution. We have a script that
71+
To ensure the quality of the code, we encourage you to run tests after making
72+
any changes and before submitting a contribution. We have a script that
7373
facilitates running the unit tests for the project.
7474

7575
To run the tests, use the `tests.sh` script located in the `scripts` directory.
@@ -101,7 +101,7 @@ possible.
101101
- To see if other users have experienced (and potentially already solved) the
102102
same issue you are having, check if there is not already a bug report
103103
existing for your bug or error in the [bug
104-
tracker](https://github.com/mslmio/oxylabs-sdk-python/issues?q=label%3Abug).
104+
tracker](https://github.com/oxylabs/oxylabs-sdk-python/issues?q=label%3Abug).
105105
- Also make sure to search the internet (including Stack Overflow) to see if
106106
users outside of the GitHub community have discussed the issue.
107107
- Collect information about the bug:
@@ -122,8 +122,8 @@ possible.
122122
We use GitHub issues to track bugs and errors. If you run into an issue with the
123123
project:
124124

125-
- Open an [Issue](https://github.com/mslmio/oxylabs-sdk-python/issues/new).
126-
(Since we can't be sure at this point whether it is a bug or not, we ask you
125+
- Open an [Issue](https://github.com/oxylabs/oxylabs-sdk-python/issues/new).
126+
(Since we can't be sure at this point whether it is a bug or not, we ask you
127127
not to talk about a bug yet and not to label the issue.)
128128
- Explain the behavior you would expect and the actual behavior.
129129
- Please provide as much context as possible and describe the *reproduction
@@ -156,7 +156,7 @@ community to understand your suggestion and find related suggestions.
156156
- Read the [documentation](https://developers.oxylabs.io/) carefully and
157157
find out if the functionality is already covered, maybe by an individual
158158
configuration.
159-
- Perform a [search](https://github.com/mslmio/oxylabs-sdk-python/issues) to see
159+
- Perform a [search](https://github.com/oxylabs/oxylabs-sdk-python/issues) to see
160160
if the enhancement has already been suggested. If it has, add a comment to the
161161
existing issue instead of opening a new one.
162162
- Find out whether your idea fits with the scope and aims of the project. It's
@@ -169,7 +169,7 @@ community to understand your suggestion and find related suggestions.
169169
#### How Do I Submit a Good Enhancement Suggestion?
170170

171171
Enhancement suggestions are tracked as
172-
[GitHub issues](https://github.com/mslmio/oxylabs-sdk-python/issues).
172+
[GitHub issues](https://github.com/oxylabs/oxylabs-sdk-python/issues).
173173

174174
- Use a **clear and descriptive title** for the issue to identify the
175175
suggestion.

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from setuptools import find_packages, setup
22

3+
34
def get_version(rel_path):
45
with open(rel_path, "r") as file:
56
for line in file.read().splitlines():
@@ -14,7 +15,7 @@ def get_version(rel_path):
1415
The official Python library for the Oxylabs Scraper APIs.
1516
1617
Collect public data at scale with industry-leading web scraping solutions and the world's largest ethical proxy network.
17-
Documentation can be found at https://github.com/mslmio/oxylabs-sdk-python.
18+
Documentation can be found at https://github.com/oxylabs/oxylabs-sdk-python.
1819
"""
1920

2021
setup(
@@ -26,7 +27,7 @@ def get_version(rel_path):
2627
author="Oxylabs",
2728
author_email="[email protected]",
2829
license="MIT",
29-
package_dir={'': 'src'},
30-
packages=find_packages(where='src'),
30+
package_dir={"": "src"},
31+
packages=find_packages(where="src"),
3132
install_requires=["aiohttp", "requests"],
3233
)

0 commit comments

Comments
 (0)