hltv-data icon indicating copy to clipboard operation
hltv-data copied to clipboard

Data from popular CS:GO website hltv.org

Results 6 hltv-data issues
Sort by recently updated
recently updated
newest added

added count to retrieve multiple pages of data at once, data now contains timestamp, maps (inferno, bo3, bo5, etc.), and url

### Feature request Hey, is there a way to get the star rating of upcoming matches within the package? I think it would be appropriate to return it within the...

Just an idea to receive some parameters in the functions to filter like "**today matches**" or the "**10 next matches**" etc

'NoneType' object has no attribute 'find_all' code: from hltv_data import HLTVClient hltv_client = HLTVClient() matches = hltv_client.get_matches() for match in matches: event = match["event"] date = match["date"] team_1 = match["team_1"]...

Without this change, the ranking that is pulled is always the one from March 5 2024. With this change, it will use the .../ranking/teams URL that automatically resolves into the...

"After downloading and using your package, I found that the data returned by 'hltv_client.get_ranking()' was always from March 5th. Therefore, I made a modification in the 'client.py' file of the...