Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
immobilienscout24-scraper
Advanced tools
Web scrapper for the immobilienscout24 apartment listing
Web scraper for the Immobilien Scout 24 apartment listing.
npm install immobilienscout24-scraper --save
const scraper = require('immobilienscout24-scraper');
You can get the available cities:
scraper.cities
Output:
[
'Berlin',
'Bonn',
'Bremen',
'Chemnitz',
'Dortmund',
'Dresden',
'Duisburg',
'Düsseldorf',
'Essen',
'Frankfurt',
'Gelsenkirchen',
'Hamburg',
'Hannover',
'Köln',
'Leipzig',
'München',
'Mönchengladbach',
'Nürnberg',
'Stuttgart',
'Wuppertal'
]
You can get all listed apartments for a specific city and a specific page (defaults to 1):
scraper.scrapCity('Berlin', 1)
This will return a Promise
that resolves in an object with two properties: an array of apartments
and an object with the pagination info.
Output:
{
items:[{
id:'93219445',
rentBase:1712,
rentTotal:2134,
area:132,
rooms:4,
availableFrom:null,
isAvailable:true,
address:'Saargemünder Straße 25',
postalCode:'14195',
city:'Berlin',
url:'https://www.immobilienscout24.de/expose/93219445'
}, {
id:'92650974',
rentBase:2499,
rentTotal:2769,
area:161,
rooms:4,
availableFrom:2017-01-01T00:00:00.000Z,
isAvailable:true,
address:'Kurfürstendamm 131',
postalCode:'10711',
city:'Berlin',
url:'https://www.immobilienscout24.de/expose/92650974'
}, {
id:'91212520',
rentBase:1449,
rentTotal:1776.25,
area:130.9,
rooms:5,
availableFrom:2017-01-15T00:00:00.000Z,
isAvailable:true,
address:'Hauffstraße 1A',
postalCode:'10317',
city:'Berlin',
url:'https://www.immobilienscout24.de/expose/91212520'
}],
pagination:{
page:1,
totalPages:352
}
}
FAQs
Web scrapper for the immobilienscout24 apartment listing
The npm package immobilienscout24-scraper receives a total of 6 weekly downloads. As such, immobilienscout24-scraper popularity was classified as not popular.
We found that immobilienscout24-scraper demonstrated a not healthy version release cadence and project activity because the last version was released 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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.