https://github.com/manimozaffar/aiocloudscraper
https://github.com/manimozaffar/aiocloudscraper
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/manimozaffar/aiocloudscraper
- Owner: ManiMozaffar
- License: mit
- Created: 2023-10-22T16:32:53.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-23T01:47:45.000Z (over 1 year ago)
- Last Synced: 2025-01-27T04:01:52.029Z (3 months ago)
- Language: Python
- Size: 62.5 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
# aiocloudscraper
[](https://img.shields.io/github/v/release/manimozaffar/aiocloudscraper)
[](https://github.com/manimozaffar/aiocloudscraper/actions/workflows/main.yml?query=branch%3Amain)
[](https://codecov.io/gh/manimozaffar/aiocloudscraper)
[](https://img.shields.io/github/commit-activity/m/manimozaffar/aiocloudscraper)
[](https://img.shields.io/github/license/manimozaffar/aiocloudscraper)Async Python module to bypass Cloudflare's anti-bot page.
- **Github repository**:
- **Documentation**## Getting started with your project
First, create a repository on GitHub with the same name as this project, and then run the following commands:
``` bash
git init -b main
git add .
git commit -m "init commit"
git remote add origin [email protected]:manimozaffar/aiocloudscraper.git
git push -u origin main
```Finally, install the environment and the pre-commit hooks with
```bash
make install
```You are now ready to start development on your project! The CI/CD
pipeline will be triggered when you open a pull request, merge to main,
or when you create a new release.To finalize the set-up for publishing to PyPi or Artifactory, see
[here](https://fpgmaas.github.io/cookiecutter-poetry/features/publishing/#set-up-for-pypi).
For activating the automatic documentation with MkDocs, see
[here](https://fpgmaas.github.io/cookiecutter-poetry/features/mkdocs/#enabling-the-documentation-on-github).
To enable the code coverage reports, see [here](https://fpgmaas.github.io/cookiecutter-poetry/features/codecov/).## Releasing a new version
- Create an API Token on [Pypi](https://pypi.org/).
- Add the API Token to your projects secrets with the name `PYPI_TOKEN` by visiting
[this page](https://github.com/manimozaffar/aiocloudscraper/settings/secrets/actions/new).
- Create a [new release](https://github.com/manimozaffar/aiocloudscraper/releases/new) on Github.
Create a new tag in the form ``*.*.*``.For more details, see [here](https://fpgmaas.github.io/cookiecutter-poetry/features/cicd/#how-to-trigger-a-release).
---
Repository initiated with [fpgmaas/cookiecutter-poetry](https://github.com/fpgmaas/cookiecutter-poetry).