https://github.com/tejado/ebk-client
eBay Kleinanzeigen/Classifieds API client
https://github.com/tejado/ebk-client
Last synced: 10 months ago
JSON representation
eBay Kleinanzeigen/Classifieds API client
- Host: GitHub
- URL: https://github.com/tejado/ebk-client
- Owner: tejado
- License: mit
- Created: 2016-08-22T12:55:31.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-12-22T14:48:41.000Z (about 3 years ago)
- Last Synced: 2025-03-24T10:22:08.455Z (10 months ago)
- Language: Python
- Size: 117 KB
- Stars: 102
- Watchers: 16
- Forks: 18
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ebk-client - an eBay Kleinanzeigen API client
ebk-client is a small library to use the eBay Kleinanzeigen/Classifieds API.
## Usage
Besides the normal user account which can be registered at [ebay-kleinanzeigen.de](https://www.ebay-kleinanzeigen.de), a special partner eBay partner account is required to use the eBay Kleinanzeigen/Classifieds API.
The smartphone apps (e.g. for Android) must include also some static/hardcoded partner account as it is using the same API (further information on this can be found [here](https://euer.krebsco.de/finding-the-ebay-kleinanzeigen-application-password.html)).
### Code example:
```python
api = EbkClient('app-username', 'app-password', 'ebay-user-name', 'ebay-user-password')
my_ads = api.get_my_ads()
```
## Documentation
No ebk-client doc available yet.
The official documentation of the eBay Kleinanzeigen/Classifieds API is unfortunately not anymore available. An older copy - retrieved over the [Internet Archive](https://web.archive.org/) - can be found in the [docs folder](docs): entry point is docs/pages/home.html.
## Requirements
* Python 3.6+
* dateutil (example.py only)