@@ -6,7 +6,7 @@ Introduction
66
77Prerequisites
88=============
9- Tibia.py requires Python 3.5 or higher.
9+ Tibia.py requires Python 3.6 or higher.
1010Dependencies are installed automatically when installing the package.
1111
1212However, since it uses ``lxml `` for parsing, on Linux you may require to install libxml on your system.
@@ -39,8 +39,8 @@ The asynchronous client (:class:`tibiapy.Client`) contains methods to obtain inf
3939
4040The parsing methods allow you to get Python objects given the html content of a page.
4141
42- The main models have a ``get_url ``/`` get_url_tibiadata `` method that can be used to get their Tibia.com/TibiaData .com page.
43- With the url, the html/json content can be fetched and then passed to their ``from_content ``/`` from_tibiadata `` methods.
42+ The main models have a ``get_url `` method that can be used to get their Tibia.com page.
43+ With the url, the html/json content can be fetched and then passed to their ``from_content `` methods.
4444
4545This allows you to use any networking module to obtain the data, and use the library to parse it.
4646
@@ -67,10 +67,29 @@ Supported Sections
6767+============================+============================================+=============================================+
6868| Characters _ | :meth: `Character.from_content ` | :meth: `Client.fetch_character ` |
6969+----------------------------+--------------------------------------------+---------------------------------------------+
70+ | `CM Post Archive `_ | :meth: `CMPostArchive.from_content ` | :meth: `Client.fetch_cm_post_archive ` |
71+ +----------------------------+--------------------------------------------+---------------------------------------------+
72+ | `Event Schedule `_ | :meth: `EventSchedule.from_content ` | :meth: `Client.fetch_event_schedule ` |
73+ +----------------------------+--------------------------------------------+---------------------------------------------+
7074| Guilds _ (Individual) | :meth: `Guild.from_content ` | :meth: `Client.fetch_guild ` |
7175+----------------------------+--------------------------------------------+---------------------------------------------+
7276| Guilds _ (List) | :meth: `ListedGuild.list_from_content ` | :meth: `Client.fetch_world_guilds ` |
7377+----------------------------+--------------------------------------------+---------------------------------------------+
78+ | Guilds _ (Wars) | :meth: `GuildWars.from_content ` | :meth: `Client.fetch_guild_wars ` |
79+ +----------------------------+--------------------------------------------+---------------------------------------------+
80+ | Forums _ (Section) | :meth: `ListedBoard.list_from_content ` | :meth: `Client.fetch_forum_world_boards ` |
81+ | | | :meth: `Client.fetch_forum_trade_boards ` |
82+ | | | :meth: `Client.fetch_forum_community_boards ` |
83+ | | | :meth: `Client.fetch_forum_support_boards ` |
84+ +----------------------------+--------------------------------------------+---------------------------------------------+
85+ | Forums _ (Board) | :meth: `ForumBoard.from_content ` | :meth: `Client.fetch_forum_board ` |
86+ +----------------------------+--------------------------------------------+---------------------------------------------+
87+ | Forums _ (Announcement) | :meth: `ForumAnnouncement.from_content ` | :meth: `Client.fetch_forum_announcement ` |
88+ +----------------------------+--------------------------------------------+---------------------------------------------+
89+ | Forums _ (Thread) | :meth: `ForumThread.from_content ` | :meth: `Client.fetch_forum_thread ` |
90+ +----------------------------+--------------------------------------------+---------------------------------------------+
91+ | Highscores _ | :meth: `Highscores.from_content ` | :meth: `Client.fetch_highscores_page ` |
92+ +----------------------------+--------------------------------------------+---------------------------------------------+
7493| Highscores _ | :meth: `Highscores.from_content ` | :meth: `Client.fetch_highscores_page ` |
7594+----------------------------+--------------------------------------------+---------------------------------------------+
7695| Houses _ (Individual) | :meth: `House.from_content ` | :meth: `Client.fetch_house ` |
@@ -95,7 +114,10 @@ Supported Sections
95114
96115
97116.. _Characters : https://www.tibia.com/community/?subtopic=characters
117+ .. _CM Post Archive : https://www.tibia.com/forum/?subtopic=forum&action=cm_post_archive
118+ .. _Event Schedule : https://www.tibia.com/news/?subtopic=eventcalendar
98119.. _Guilds : https://www.tibia.com/community/?subtopic=guilds
120+ .. _Forums : https://www.tibia.com/community/?subtopic=forum
99121.. _Highscores : https://www.tibia.com/community/?subtopic=highscores
100122.. _Houses : https://www.tibia.com/community/?subtopic=houses
101123.. _Kill Statistics : https://www.tibia.com/community/?subtopic=killstatistics
0 commit comments