namtacs
namtacs
> > hmm, perhaps the driver should be updated on the fly by the CI instead ? > > This method is not feasible Just check for the stable version?
InternetDB (#1824) does not require authentication, provides all the data that this API provides, and also gives open ports and CVEs. So, this is basically worse.
Basically useless if #1815 gets merged.
Still happens
This PR is pointless is #16 gets merged. It already does everything right.
@TimMcCool please review this approach and implementation
```python @client.request def searchTrending(): #called when client receives request response = "" projects = scratch3.search_projects(query="query", mode="trending", language="en", limit=40, offset=0) for p in projects: response += f"{p.title};{p.author};{p.id}:" return response ``` Basic...
This is a WIP, and i can't make sure to develop it until @TimMcCool gives some feedback
```python @client.request def searchTrending(): #called when client receives request response = "" projects = scratch3.search_projects(query="query", mode="trending", language="en", limit=40, offset=0) for p in projects: response += f"{p.title};{p.author};{p.id}:" response = response[:-1] return...