Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/richecr/pyhltv
Repository to extract information from the HLTV website.
https://github.com/richecr/pyhltv
crawler csgo hacktoberfest hltv hltv-api python3
Last synced: about 4 hours ago
JSON representation
Repository to extract information from the HLTV website.
- Host: GitHub
- URL: https://github.com/richecr/pyhltv
- Owner: richecr
- Created: 2020-07-27T00:17:46.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-10-29T23:12:57.000Z (21 days ago)
- Last Synced: 2024-10-30T01:48:44.282Z (21 days ago)
- Topics: crawler, csgo, hacktoberfest, hltv, hltv-api, python3
- Language: Python
- Homepage:
- Size: 59.6 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PyHltv
Repository to extract information from the HLTV website
### Table of contents
- [Installation](#Installation)
- [How to use](#how-to-use)
- [Functions](#functions):
- [getMatches](###getMatches)# Installation
It has not yet been published.
# How to use
```python3
# Import Matches features from the library
from py_hltv import Matches# Return the List of Matches.
Matches.get_matches()
```# Functions
### getMatches
> Gets all defined matches(https://www.hltv.org/matches). (1 request)
| Param | Type | Default | Description |
| ----- | ---- | ------- | ----------- |
| - | - | - | - |```python3
# Import Matches features from the library
from py_hltv import Matches# Return the List of Matches.
matches = Matches.get_matches()
print(matches)
```See model [Matches](https://github.com/richecr/PyHltv/blob/master/py_hltv/models/Match.py)