Skip to content

Commit

Permalink
Added documentation for FIDE module
Browse files Browse the repository at this point in the history
  • Loading branch information
Arnav17Sharma committed May 17, 2024
1 parent cdf0b28 commit 32b96a3
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
21 changes: 21 additions & 0 deletions dev-documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -1415,6 +1415,27 @@ obj = espncricinfo.Espncricinfo()
| `.get_news()` | Returns a latest news from ESPNCricinfo. |
| `.get_livescores()` | Returns a list of live matches from ESPNCricinfo. |

### FIDE

```python
from scrape_up import fide
```

Create an instance of `FIDE` class.

```python
obj = fide.FIDE()
```

| Methods | Details |
| ------------------------- | -------------------------------------------------- |
| `.get_events()` | Returns all the major chess events of 2024. |
| `.get_open_ratings()` | Returns a list of top 100 open category players. |
| `.get_women_ratings()` | Returns a list of top 100 women category players. |
| `.get_juniors_ratings()` | Returns a list of top 100 juniors category players.|
| `.get_girls_ratings()` | Returns a list of top 100 girls category players. |
| `.get_news()` | Returns a list of top chess/fide news. |

# Magic Bricks

Create an instance of `MagicBricks` class
Expand Down
23 changes: 23 additions & 0 deletions documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -528,6 +528,29 @@ espn = espn.ESPN()

---

### FIDE

```python
from scrape_up import fide
```

Create an instance of `FIDE` class.

```python
obj = fide.FIDE()
```

| Methods | Details |
| ------------------------- | -------------------------------------------------- |
| `.get_events()` | Returns all the major chess events of 2024. |
| `.get_open_ratings()` | Returns a list of top 100 open category players. |
| `.get_women_ratings()` | Returns a list of top 100 women category players. |
| `.get_juniors_ratings()` | Returns a list of top 100 juniors category players.|
| `.get_girls_ratings()` | Returns a list of top 100 girls category players. |
| `.get_news()` | Returns a list of top chess/fide news. |

---

### eBay

```py
Expand Down

0 comments on commit 32b96a3

Please sign in to comment.