![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Crawler is a Django app to help connect to a website and gather as much links as you want.
Add "gatherlinks" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = [ ... 'gatherlinks', ]
Import the "main" module like this::
from gatherlinks.crawler import main
Initialize the StartPoint class like this::
crawler = main.StartPoint(https://example.com, max_crawl=50, number_of_threads=10)
The StartPoint class can be initialized with three arguments. a. homepage (a positional argument of the website to gather it's link.)
b. max_crawl (maximum number of links to gather from the website. Default is 50)
c. number_of_threads (Number of threads to be doing the work simultaneously. Default is 10)
After initialising the class, you can then call the "start" method like this::
crawler.start()
When the crawler must have finished gathering the link, you can access the gathered links like this::
crawler.result
That result attribute is a "set" datatype that holds all the links that the crawler could gather. You can then loop through the "crawler.result" and do whatever you want with it (write to file or save to database).
FAQs
A Django app to gather the links of a website.
We found that django-web-crawler demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.