airbnb-python
airbnb-python copied to clipboard
A Python wrapper around the Airbnb API (unofficial)
I'm trying to scrape Airbnb reviews. But not of the accommodations, but my intention is to scratch the reviews of the experiences section. We can see how the accommodations and...
From @[lazyhummingbird](https://github.com/lazyhummingbird) [open issue](https://github.com/nderkach/airbnb-python/issues/21)
Broken?
I can’t get this to work anymore. Anyone still use it successfully?
``` import airbnb api = airbnb.Api("[email protected]", "password") Traceback (most recent call last): File "", line 1, in File "/Users/eladh/Development/yalarent/yalarent-airbnb-connector/.venv/lib/python3.9/site-packages/airbnb/api.py", line 142, in __init__ raise VerificationError airbnb.api.VerificationError ```
Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.25.3 to 1.25.8. Release notes Sourced from urllib3's releases. 1.25.8 Release: 1.25.8 1.25.7 No release notes provided. 1.25.6 Release: 1.25.6 1.25.5 Release: 1.25.5 1.25.4 Release: 1.25.4 Changelog...
Hello, Sorry for the remedial questions here but I'm new to git hub and new to python. Can anyone give me direction on the following: 1) Is there a way...
If someone is using the API for comparing what an apartment that can take up to 8 people charges, this feature would allow them to search for a more specific...
This may seem like a rookie question (because i'm a beginner) but I used: api.get_homes("Lebanon") and I got a messy code output (I think it's json, not sure) Tried converting...
I added functions for getting wishlists (saved lists) and their listings: ``` @require_auth def get_wishlist(self, wishlist_id): """ Get a wishlist's primary information """ r = self._session.get(API_URL + "/wishlists/" + wishlist_id)...