diff --git a/docs/.buildinfo b/docs/.buildinfo index 8a84de936..9a40443a3 100644 --- a/docs/.buildinfo +++ b/docs/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file records the configuration used when building these files. When it is not found, a full rebuild will be done. -config: e55aec0a10fd8b0a26d91f4bdc22cb74 +config: c12cc937d2b151a0de5b87a41c15cb46 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/.doctrees/developing/modules/core.version.doctree b/docs/.doctrees/developing/modules/core.version.doctree index 93881b1d9..8de086b66 100644 Binary files a/docs/.doctrees/developing/modules/core.version.doctree and b/docs/.doctrees/developing/modules/core.version.doctree differ diff --git a/docs/.doctrees/environment.pickle b/docs/.doctrees/environment.pickle index 42e122dbd..626012861 100644 Binary files a/docs/.doctrees/environment.pickle and b/docs/.doctrees/environment.pickle differ diff --git a/docs/.doctrees/general/installation.doctree b/docs/.doctrees/general/installation.doctree index 548ef4625..b4c36339e 100644 Binary files a/docs/.doctrees/general/installation.doctree and b/docs/.doctrees/general/installation.doctree differ diff --git a/docs/.doctrees/index.doctree b/docs/.doctrees/index.doctree index f7e5cb254..53e21820e 100644 Binary files a/docs/.doctrees/index.doctree and b/docs/.doctrees/index.doctree differ diff --git a/docs/_modules/__init__.html b/docs/_modules/__init__.html index 2b7145462..9a3234986 100644 --- a/docs/_modules/__init__.html +++ b/docs/_modules/__init__.html @@ -4,11 +4,11 @@
-
setup_core_settings()
setup_logging()
setup_exception_hooks()
- setup_data_update()
+ #setup_data_update()
setup_translations()
setup_data()
setup_global_pointers()
@@ -656,7 +656,7 @@ Navigation
"""Update Source.Python to the latest version. A restart of the server is
required.
"""
+
if not is_unversioned() and VERSION >= get_last_successful_build_number():
core_command_logger.log_message('No new version available.')
return
@@ -260,7 +261,7 @@ Navigation
DATA_URL = f'{BASE_DATA_URL}/source-python-data.zip'
BASE_DOWNLOAD_URL = 'http://downloads.sourcepython.com'
-ARTIFACTS_URL = f'{BASE_DOWNLOAD_URL}/artifacts.txt'
+
+LATEST_RELEASE_URL = "https://api.github.com/repos/Source-Python-Dev-Team/Source.Python/releases/latest"
DEFAULT_TIMEOUT = 3
@@ -189,8 +190,10 @@ Source code for core.update
Number of seconds that need to pass until a timeout occurs.
"""
update_logger.log_debug('Getting artifacts...')
- with urlopen(ARTIFACTS_URL, timeout=timeout) as url:
- return url.read().decode('utf-8').split('\n')
+ with urlopen(LATEST_RELEASE_URL, timeout=timeout) as url:
+ data = json.load(url)
+
+ return [asset['browser_download_url'] for asset in data.get('assets', [])]
:raise ValueError:
Raised if the game wasn't found.
"""
- for relative_path in get_build_artifacts(timeout):
- if f'-{game}-' in relative_path:
- return f'{BASE_DOWNLOAD_URL}/{relative_path}'
+ for download_url in get_build_artifacts(timeout):
+ if f'-{game}-' in download_url:
+ return download_url
raise ValueError(f'Unable to find a download URL for game "{game}".')
# >> IMPORTS
# =============================================================================
# Python Imports
+import json
from urllib.request import urlopen
# Source.Python Imports
# Cvars
@@ -66,14 +67,13 @@ Source code for core.version
# >> CONSTANTS
# =============================================================================
#: Version of the Source.Python intallation.
-VERSION = 742
+VERSION = 743
#: The Github commit this Source.Python version was built with.
-GIT_COMMIT = '3e5dd5de0323db803d0e3499a229ba2529fc463a'
+GIT_COMMIT = '4cad55d4145ff7bf24aea6df9a53a9683df81700'
LAST_SUCCESSFUL_BUILD_NUMBER_URL = (
- 'http://downloads.sourcepython.com/version.txt')
-
+ 'https://api.github.com/repos/Source-Python-Dev-Team/Source.Python/releases/latest')
# =============================================================================
# >> GLOBAL VARIABLES
@@ -94,7 +94,9 @@ Source code for core.version
:rtype: int
"""
with urlopen(LAST_SUCCESSFUL_BUILD_NUMBER_URL, timeout=timeout) as url:
- return int(url.read().decode('utf-8'))
+ data = json.load(url)
+ tag_name = data['tag_name']
+ return int(tag_name[1:])
@@ -145,7 +147,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
core »
core.version
diff --git a/docs/_modules/cvars/flags.html b/docs/_modules/cvars/flags.html
index b971f8eb8..9f88b5848 100644
--- a/docs/_modules/cvars/flags.html
+++ b/docs/_modules/cvars/flags.html
@@ -4,11 +4,11 @@
- cvars.flags — Source.Python v742 documentation
+ cvars.flags — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
cvars.flags
@@ -152,7 +152,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
cvars.flags
diff --git a/docs/_modules/cvars/public.html b/docs/_modules/cvars/public.html
index 3afe8e5f4..511aa3273 100644
--- a/docs/_modules/cvars/public.html
+++ b/docs/_modules/cvars/public.html
@@ -4,11 +4,11 @@
- cvars.public — Source.Python v742 documentation
+ cvars.public — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
cvars.public
@@ -131,7 +131,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
cvars.public
diff --git a/docs/_modules/effects.html b/docs/_modules/effects.html
index 6797f6e79..e43dccc3d 100644
--- a/docs/_modules/effects.html
+++ b/docs/_modules/effects.html
@@ -4,11 +4,11 @@
- effects — Source.Python v742 documentation
+ effects — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
effects
@@ -367,7 +367,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
effects
diff --git a/docs/_modules/effects/base.html b/docs/_modules/effects/base.html
index 991cc2c79..f1e2e8e4a 100644
--- a/docs/_modules/effects/base.html
+++ b/docs/_modules/effects/base.html
@@ -4,11 +4,11 @@
- effects.base — Source.Python v742 documentation
+ effects.base — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
effects »
effects.base
@@ -727,7 +727,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
effects »
effects.base
diff --git a/docs/_modules/effects/hooks.html b/docs/_modules/effects/hooks.html
index b147f07f3..3f167b14f 100644
--- a/docs/_modules/effects/hooks.html
+++ b/docs/_modules/effects/hooks.html
@@ -4,11 +4,11 @@
- effects.hooks — Source.Python v742 documentation
+ effects.hooks — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
effects »
effects.hooks
@@ -181,7 +181,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
effects »
effects.hooks
diff --git a/docs/_modules/effects/templates.html b/docs/_modules/effects/templates.html
index a589580ee..759719533 100644
--- a/docs/_modules/effects/templates.html
+++ b/docs/_modules/effects/templates.html
@@ -4,11 +4,11 @@
- effects.templates — Source.Python v742 documentation
+ effects.templates — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
effects »
effects.templates
@@ -395,7 +395,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
effects »
effects.templates
diff --git a/docs/_modules/engines/precache.html b/docs/_modules/engines/precache.html
index 7d947da21..8ca8b03da 100644
--- a/docs/_modules/engines/precache.html
+++ b/docs/_modules/engines/precache.html
@@ -4,11 +4,11 @@
- engines.precache — Source.Python v742 documentation
+ engines.precache — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
engines.precache
@@ -236,7 +236,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
engines.precache
diff --git a/docs/_modules/engines/sound.html b/docs/_modules/engines/sound.html
index b1f5154d4..233c201e1 100644
--- a/docs/_modules/engines/sound.html
+++ b/docs/_modules/engines/sound.html
@@ -4,11 +4,11 @@
- engines.sound — Source.Python v742 documentation
+ engines.sound — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
engines.sound
@@ -454,7 +454,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
engines.sound
diff --git a/docs/_modules/engines/trace.html b/docs/_modules/engines/trace.html
index 009a96ecb..0dd8eada7 100644
--- a/docs/_modules/engines/trace.html
+++ b/docs/_modules/engines/trace.html
@@ -4,11 +4,11 @@
- engines.trace — Source.Python v742 documentation
+ engines.trace — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
engines.trace
@@ -314,7 +314,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
engines.trace
diff --git a/docs/_modules/entities/_base.html b/docs/_modules/entities/_base.html
index 6bae85732..7dfaba7f7 100644
--- a/docs/_modules/entities/_base.html
+++ b/docs/_modules/entities/_base.html
@@ -4,11 +4,11 @@
- entities._base — Source.Python v742 documentation
+ entities._base — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
entities._base
@@ -988,7 +988,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
entities._base
diff --git a/docs/_modules/entities/collisions.html b/docs/_modules/entities/collisions.html
index 7fd0067b0..1a0f11370 100644
--- a/docs/_modules/entities/collisions.html
+++ b/docs/_modules/entities/collisions.html
@@ -4,11 +4,11 @@
- entities.collisions — Source.Python v742 documentation
+ entities.collisions — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
entities.collisions
@@ -164,7 +164,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
entities.collisions
diff --git a/docs/_modules/entities/constants.html b/docs/_modules/entities/constants.html
index 818df8a19..71d4e3871 100644
--- a/docs/_modules/entities/constants.html
+++ b/docs/_modules/entities/constants.html
@@ -4,11 +4,11 @@
- entities.constants — Source.Python v742 documentation
+ entities.constants — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
entities.constants
@@ -388,7 +388,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
entities.constants
diff --git a/docs/_modules/entities/datamaps.html b/docs/_modules/entities/datamaps.html
index 58847bc1e..ac151c036 100644
--- a/docs/_modules/entities/datamaps.html
+++ b/docs/_modules/entities/datamaps.html
@@ -4,11 +4,11 @@
- entities.datamaps — Source.Python v742 documentation
+ entities.datamaps — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
entities.datamaps
@@ -212,7 +212,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
entities.datamaps
diff --git a/docs/_modules/entities/dictionary.html b/docs/_modules/entities/dictionary.html
index 3fcc5ab79..2e8376390 100644
--- a/docs/_modules/entities/dictionary.html
+++ b/docs/_modules/entities/dictionary.html
@@ -4,11 +4,11 @@
- entities.dictionary — Source.Python v742 documentation
+ entities.dictionary — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
entities.dictionary
@@ -327,7 +327,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
entities.dictionary
diff --git a/docs/_modules/entities/engines/csgo.html b/docs/_modules/entities/engines/csgo.html
index 31468bb83..45b8cc844 100644
--- a/docs/_modules/entities/engines/csgo.html
+++ b/docs/_modules/entities/engines/csgo.html
@@ -4,11 +4,11 @@
- entities.engines.csgo — Source.Python v742 documentation
+ entities.engines.csgo — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
entities.engines.csgo
@@ -90,7 +90,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
entities.engines.csgo
diff --git a/docs/_modules/entities/engines/csgo/csgo.html b/docs/_modules/entities/engines/csgo/csgo.html
index fb68866c9..06ba1f297 100644
--- a/docs/_modules/entities/engines/csgo/csgo.html
+++ b/docs/_modules/entities/engines/csgo/csgo.html
@@ -4,11 +4,11 @@
- entities.engines.csgo.csgo — Source.Python v742 documentation
+ entities.engines.csgo.csgo — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
entities.engines.csgo »
entities.engines.csgo.csgo
@@ -170,7 +170,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
entities.engines.csgo »
entities.engines.csgo.csgo
diff --git a/docs/_modules/entities/helpers.html b/docs/_modules/entities/helpers.html
index 9d05f416b..4da9c52fa 100644
--- a/docs/_modules/entities/helpers.html
+++ b/docs/_modules/entities/helpers.html
@@ -4,11 +4,11 @@
- entities.helpers — Source.Python v742 documentation
+ entities.helpers — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
entities.helpers
@@ -210,7 +210,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
entities.helpers
diff --git a/docs/_modules/entities/hooks.html b/docs/_modules/entities/hooks.html
index f4d08bd94..589db3150 100644
--- a/docs/_modules/entities/hooks.html
+++ b/docs/_modules/entities/hooks.html
@@ -4,11 +4,11 @@
- entities.hooks — Source.Python v742 documentation
+ entities.hooks — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
entities.hooks
@@ -323,7 +323,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
entities.hooks
diff --git a/docs/_modules/entities/props.html b/docs/_modules/entities/props.html
index ba516cab0..ce4208ee4 100644
--- a/docs/_modules/entities/props.html
+++ b/docs/_modules/entities/props.html
@@ -4,11 +4,11 @@
- entities.props — Source.Python v742 documentation
+ entities.props — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
entities.props
@@ -150,7 +150,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
entities.props
diff --git a/docs/_modules/entities/transmit.html b/docs/_modules/entities/transmit.html
index 787241e1a..ba63b0541 100644
--- a/docs/_modules/entities/transmit.html
+++ b/docs/_modules/entities/transmit.html
@@ -4,11 +4,11 @@
- entities.transmit — Source.Python v742 documentation
+ entities.transmit — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
entities.transmit
@@ -167,7 +167,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
entities.transmit
diff --git a/docs/_modules/events.html b/docs/_modules/events.html
index 0209a620d..aa2524e39 100644
--- a/docs/_modules/events.html
+++ b/docs/_modules/events.html
@@ -4,11 +4,11 @@
- events — Source.Python v742 documentation
+ events — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
events
@@ -163,7 +163,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
events
diff --git a/docs/_modules/events/custom.html b/docs/_modules/events/custom.html
index 748e0a73d..162215ea9 100644
--- a/docs/_modules/events/custom.html
+++ b/docs/_modules/events/custom.html
@@ -4,11 +4,11 @@
- events.custom — Source.Python v742 documentation
+ events.custom — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
events »
events.custom
@@ -254,7 +254,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
events »
events.custom
diff --git a/docs/_modules/events/hooks.html b/docs/_modules/events/hooks.html
index 5750068ad..62951d8c5 100644
--- a/docs/_modules/events/hooks.html
+++ b/docs/_modules/events/hooks.html
@@ -4,11 +4,11 @@
- events.hooks — Source.Python v742 documentation
+ events.hooks — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
events »
events.hooks
@@ -339,7 +339,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
events »
events.hooks
diff --git a/docs/_modules/events/resource.html b/docs/_modules/events/resource.html
index eeb3fdd21..29955625a 100644
--- a/docs/_modules/events/resource.html
+++ b/docs/_modules/events/resource.html
@@ -4,11 +4,11 @@
- events.resource — Source.Python v742 documentation
+ events.resource — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
events »
events.resource
@@ -213,7 +213,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
events »
events.resource
diff --git a/docs/_modules/events/variable.html b/docs/_modules/events/variable.html
index 9f7aa4ead..1caaeec6a 100644
--- a/docs/_modules/events/variable.html
+++ b/docs/_modules/events/variable.html
@@ -4,11 +4,11 @@
- events.variable — Source.Python v742 documentation
+ events.variable — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
events »
events.variable
@@ -193,7 +193,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
events »
events.variable
diff --git a/docs/_modules/filesystem.html b/docs/_modules/filesystem.html
index d6dfe884d..54cb435eb 100644
--- a/docs/_modules/filesystem.html
+++ b/docs/_modules/filesystem.html
@@ -4,11 +4,11 @@
- filesystem — Source.Python v742 documentation
+ filesystem — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
filesystem
@@ -158,7 +158,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
filesystem
diff --git a/docs/_modules/filters/entities.html b/docs/_modules/filters/entities.html
index d0c41e2d3..d2292aa6a 100644
--- a/docs/_modules/filters/entities.html
+++ b/docs/_modules/filters/entities.html
@@ -4,11 +4,11 @@
- filters.entities — Source.Python v742 documentation
+ filters.entities — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
filters.entities
@@ -165,7 +165,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
filters.entities
diff --git a/docs/_modules/filters/players.html b/docs/_modules/filters/players.html
index 306c3b290..12cfb2725 100644
--- a/docs/_modules/filters/players.html
+++ b/docs/_modules/filters/players.html
@@ -4,11 +4,11 @@
- filters.players — Source.Python v742 documentation
+ filters.players — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
filters.players
@@ -258,7 +258,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
filters.players
diff --git a/docs/_modules/filters/recipients.html b/docs/_modules/filters/recipients.html
index ae5892f76..3b8000acc 100644
--- a/docs/_modules/filters/recipients.html
+++ b/docs/_modules/filters/recipients.html
@@ -4,11 +4,11 @@
- filters.recipients — Source.Python v742 documentation
+ filters.recipients — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
filters.recipients
@@ -205,7 +205,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
filters.recipients
diff --git a/docs/_modules/filters/weapons.html b/docs/_modules/filters/weapons.html
index 449e7ffc0..254fcbe3d 100644
--- a/docs/_modules/filters/weapons.html
+++ b/docs/_modules/filters/weapons.html
@@ -4,11 +4,11 @@
- filters.weapons — Source.Python v742 documentation
+ filters.weapons — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
filters.weapons
@@ -198,7 +198,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
filters.weapons
diff --git a/docs/_modules/hooks/exceptions.html b/docs/_modules/hooks/exceptions.html
index 60cd31a3c..aeacb60f4 100644
--- a/docs/_modules/hooks/exceptions.html
+++ b/docs/_modules/hooks/exceptions.html
@@ -4,11 +4,11 @@
- hooks.exceptions — Source.Python v742 documentation
+ hooks.exceptions — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
hooks.exceptions
@@ -196,7 +196,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
hooks.exceptions
diff --git a/docs/_modules/hooks/warnings.html b/docs/_modules/hooks/warnings.html
index c6292c8ff..cc1561adf 100644
--- a/docs/_modules/hooks/warnings.html
+++ b/docs/_modules/hooks/warnings.html
@@ -4,11 +4,11 @@
- hooks.warnings — Source.Python v742 documentation
+ hooks.warnings — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
hooks.warnings
@@ -170,7 +170,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Module code »
hooks.warnings
diff --git a/docs/_modules/index.html b/docs/_modules/index.html
index 6ffe6ff82..358269364 100644
--- a/docs/_modules/index.html
+++ b/docs/_modules/index.html
@@ -4,11 +4,11 @@
- Overview: module code — Source.Python v742 documentation
+ Overview: module code — Source.Python v743 documentation
-
+
@@ -25,7 +25,7 @@ Navigation
modules |
- Source.Python v742 documentation »
+ Source.Python v743 documentation »
Overview: module code
@@ -207,7 +207,7 @@ Navigation
The Github commit this Source.Python version was built with.
Version of the Source.Python intallation.
Download the latest Source.Python version from our download page.
Download the latest Source.Python version from our download page.
Extract the archive in your server’s game folder. E.g. ../my_servers/css/cstrike/
Start/restart your server and validate the installation by typing sp info into the server console (use rcon if you are not working directly on your server). It should print something like this:
If you are having problems installing Source.Python (e. g. Unknown command "sp"), please let us know on our forums!
If you are having problems installing Source.Python (e. g. Unknown command "sp"), please let us know on GitHub!
Source.Python is currently embedding Python 3.13 and will be upgraded from time to time.
Source.Python