Metadata-Version: 2.5
Name: autoauctions
Version: 0.1.0
Summary: Auto auction API for Python -- live European and Asian auction inventory in one client.
Project-URL: Homepage, https://thecarapi.com
Project-URL: Documentation, https://thecarapi.com/docs
Project-URL: Source, https://github.com/mnenkov/carauctions-python
Project-URL: Get an API key, https://thecarapi.com/contact
Author-email: TheCarApi <info@thecarapi.com>
License: MIT License
        
        Copyright (c) 2026 TheCarApi
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: auction api,auto auctions,car data,vehicle auctions
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Requires-Dist: carauctions>=0.1.0
Description-Content-Type: text/markdown

# autoauctions

**Auto auction API for Python.** Live European and Asian auction inventory — OpenLane,
Auto1, Copart, eCarsTrade, Schadeautos, Encar and CarVector — in a single client.

```bash
pip install autoauctions
```

```python
from autoauctions import CarAuctionsClient

client = CarAuctionsClient(api_key="YOUR_KEY")

for car in client.top_offers(min_savings_pct=20, limit=10):
    print(car["car_name_en"], f"-{car['top_offer_savings_pct']}%")
```

Filter across every source at once, page through results automatically, and get vehicle
detail, photos, bid history, VIN history and import cost estimates from the same client.

**[→ Request a free trial key](https://thecarapi.com/contact)**

## Note

This package is an alias. It installs and re-exports
[`carauctions`](https://pypi.org/project/carauctions/), which is where the code, the full
README and the changelog live. Use whichever name you prefer — they are the same client.

- **Documentation:** [thecarapi.com/docs](https://thecarapi.com/docs)
- **Source:** [github.com/mnenkov/carauctions-python](https://github.com/mnenkov/carauctions-python)

MIT licensed.
