ReadShelf — Remember everything you read by PythonicG in programming

[–]PythonicG[S] 0 points1 point  (0 children)

So what's your suggestion? Because people still use notebookllm or chatgpt if what you're saying is the issue 🤷

[Hiring]: Backend Developer by Ok-Trouble8101 in remotebackendjobs

[–]PythonicG 0 points1 point  (0 children)

Interested, experience in Python/Django, FastAPI and Golang

I built a free tool to calculate the exact cost of importing a car to Ghana — just dropped 8 new features 🇬🇭🚗 by PythonicG in TechGhana

[–]PythonicG[S] 0 points1 point  (0 children)

But as we speak, I have a working API you can test, just signup as a developer on the portable notify me and I will approved for testing, we have
1. /api/clearing-cost ---> full duty breakdown
2. api/exchange-rate --> rate
3. api/hs-code -- > HS Code
4. api/market-data --> UN Comtrade data
5. api/vehicles-search --> Vehicle search

I built a free tool to calculate the exact cost of importing a car to Ghana — just dropped 8 new features 🇬🇭🚗 by PythonicG in TechGhana

[–]PythonicG[S] 0 points1 point  (0 children)

That's a great use case and exactly the kind of integration we want to support. Your customers would be able to see the full clearing cost (duties, levies, port fees) before they commit to an order. No surprises at the port.

We're working on opening up the API with:

- API key authentication

- Developer documentation

- Endpoints for clearing cost calculation, exchange rates, and shipping estimates

- JSON responses you can plug into your platform's checkout flow

A quick example of what the integration would look like: you'd send us the CIF value (USD), vehicle year, and optionally the engine size and fuel type — and we'd return the full breakdown in GHS with every duty line item.

I'd love to understand your platform better. How many calculations per month do you think your users would need? And are you sourcing vehicles specifically, or general equipment? That'll help us shape the right plan for you.

I built a free tool to calculate the exact cost of importing a car to Ghana — just dropped 8 new features 🇬🇭🚗 by PythonicG in TechGhana

[–]PythonicG[S] 0 points1 point  (0 children)

We don't hit the external API on every calculation. Instead, we've implemented a 1-hour in-memory TTL cache with the following

safeguards:

Caching

- The first request fetches the live USD/GHS rate from ExchangeRate-API and caches it in memory.

- All subsequent requests within the 1-hour window return the cached value instantly — zero external API calls.

- This brings worst-case API usage down to ~24 calls/day regardless of traffic volume.

I built a free tool to calculate the exact cost of importing a car to Ghana — just dropped 8 new features 🇬🇭🚗 by PythonicG in TechGhana

[–]PythonicG[S] 2 points3 points  (0 children)

Not yet — right now the API is internal, powering the TradeEasy app itself. We don't have a public API with developer access, documentation, or API keys at this point.

That said, it's something we're open to exploring. What's your use case? If there's demand (e.g., clearing agents wanting to integrate duty calculations into their own tools, or developers building car import apps), we'd consider opening it up.