lynxpresence 4.4.0__tar.gz → 4.4.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of lynxpresence might be problematic. Click here for more details.
- {lynxpresence-4.4.0 → lynxpresence-4.4.1}/PKG-INFO +13 -8
- {lynxpresence-4.4.0 → lynxpresence-4.4.1}/README.md +11 -6
- {lynxpresence-4.4.0/pypresence → lynxpresence-4.4.1/lynxpresence}/__init__.py +3 -5
- {lynxpresence-4.4.0 → lynxpresence-4.4.1}/lynxpresence.egg-info/PKG-INFO +13 -8
- lynxpresence-4.4.1/lynxpresence.egg-info/SOURCES.txt +18 -0
- lynxpresence-4.4.1/lynxpresence.egg-info/top_level.txt +1 -0
- {lynxpresence-4.4.0 → lynxpresence-4.4.1}/setup.py +4 -4
- lynxpresence-4.4.0/lynxpresence.egg-info/SOURCES.txt +0 -18
- lynxpresence-4.4.0/lynxpresence.egg-info/top_level.txt +0 -1
- {lynxpresence-4.4.0 → lynxpresence-4.4.1}/LICENSE +0 -0
- {lynxpresence-4.4.0/pypresence → lynxpresence-4.4.1/lynxpresence}/baseclient.py +0 -0
- {lynxpresence-4.4.0/pypresence → lynxpresence-4.4.1/lynxpresence}/client.py +0 -0
- {lynxpresence-4.4.0/pypresence → lynxpresence-4.4.1/lynxpresence}/exceptions.py +0 -0
- {lynxpresence-4.4.0/pypresence → lynxpresence-4.4.1/lynxpresence}/payloads.py +0 -0
- {lynxpresence-4.4.0/pypresence → lynxpresence-4.4.1/lynxpresence}/presence.py +0 -0
- {lynxpresence-4.4.0/pypresence → lynxpresence-4.4.1/lynxpresence}/py.typed +0 -0
- {lynxpresence-4.4.0/pypresence → lynxpresence-4.4.1/lynxpresence}/types.py +0 -0
- {lynxpresence-4.4.0/pypresence → lynxpresence-4.4.1/lynxpresence}/utils.py +0 -0
- {lynxpresence-4.4.0 → lynxpresence-4.4.1}/lynxpresence.egg-info/dependency_links.txt +0 -0
- {lynxpresence-4.4.0 → lynxpresence-4.4.1}/lynxpresence.egg-info/zip-safe +0 -0
- {lynxpresence-4.4.0 → lynxpresence-4.4.1}/setup.cfg +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lynxpresence
|
|
3
|
-
Version: 4.4.
|
|
3
|
+
Version: 4.4.1
|
|
4
4
|
Summary: Discord RPC client written in Python
|
|
5
|
-
Home-page: https://github.com/C0rn3j/
|
|
5
|
+
Home-page: https://github.com/C0rn3j/lynxpresence
|
|
6
6
|
Author: C0rn3j
|
|
7
7
|
License: MIT
|
|
8
8
|
Keywords: discord rich presence pypresence rpc api wrapper gamers chat irc
|
|
@@ -45,22 +45,27 @@ Dynamic: summary
|
|
|
45
45
|
|
|
46
46
|
Forked as upstream did not make a release in quite a while, I hope to kill this fork off in the future.
|
|
47
47
|
|
|
48
|
+
I recommend doing `import lynxpresence as pypresence` to keep compatibility and allow easy switching in case upstream picks up again.
|
|
49
|
+
|
|
48
50
|
> A Discord Rich Presence Client in Python? Looks like you've come to the right place.
|
|
51
|
+
|
|
49
52
|

|
|
50
53
|
|
|
51
54
|
----------
|
|
52
55
|
|
|
53
56
|
# Installation
|
|
54
57
|
|
|
55
|
-
Install pypresence with
|
|
56
|
-
|
|
57
|
-
For the latest development version:
|
|
58
|
+
Install pypresence with `pip`, for the latest development version:
|
|
58
59
|
|
|
59
|
-
|
|
60
|
+
```shell
|
|
61
|
+
pip install https://github.com/C0rn3j/lynxpresence/archive/master.zip
|
|
62
|
+
```
|
|
60
63
|
|
|
61
64
|
For the latest stable version:
|
|
62
65
|
|
|
63
|
-
|
|
66
|
+
```shell
|
|
67
|
+
pip install lynxpresence
|
|
68
|
+
```
|
|
64
69
|
|
|
65
70
|
----------
|
|
66
71
|
|
|
@@ -79,4 +84,4 @@ For the latest stable version:
|
|
|
79
84
|
|
|
80
85
|
# Examples
|
|
81
86
|
|
|
82
|
-
Examples can be found in the [examples](https://github.com/C0rn3j/
|
|
87
|
+
Examples can be found in the [examples](https://github.com/C0rn3j/lynxpresence/tree/master/examples) directory, and you can contribute your own examples if you wish, just read [examples.md](https://github.com/C0rn3j/lynxpresence/blob/master/examples/examples.md)!
|
|
@@ -1,21 +1,26 @@
|
|
|
1
1
|
Forked as upstream did not make a release in quite a while, I hope to kill this fork off in the future.
|
|
2
2
|
|
|
3
|
+
I recommend doing `import lynxpresence as pypresence` to keep compatibility and allow easy switching in case upstream picks up again.
|
|
4
|
+
|
|
3
5
|
> A Discord Rich Presence Client in Python? Looks like you've come to the right place.
|
|
6
|
+
|
|
4
7
|

|
|
5
8
|
|
|
6
9
|
----------
|
|
7
10
|
|
|
8
11
|
# Installation
|
|
9
12
|
|
|
10
|
-
Install pypresence with
|
|
11
|
-
|
|
12
|
-
For the latest development version:
|
|
13
|
+
Install pypresence with `pip`, for the latest development version:
|
|
13
14
|
|
|
14
|
-
|
|
15
|
+
```shell
|
|
16
|
+
pip install https://github.com/C0rn3j/lynxpresence/archive/master.zip
|
|
17
|
+
```
|
|
15
18
|
|
|
16
19
|
For the latest stable version:
|
|
17
20
|
|
|
18
|
-
|
|
21
|
+
```shell
|
|
22
|
+
pip install lynxpresence
|
|
23
|
+
```
|
|
19
24
|
|
|
20
25
|
----------
|
|
21
26
|
|
|
@@ -34,4 +39,4 @@ For the latest stable version:
|
|
|
34
39
|
|
|
35
40
|
# Examples
|
|
36
41
|
|
|
37
|
-
Examples can be found in the [examples](https://github.com/C0rn3j/
|
|
42
|
+
Examples can be found in the [examples](https://github.com/C0rn3j/lynxpresence/tree/master/examples) directory, and you can contribute your own examples if you wish, just read [examples.md](https://github.com/C0rn3j/lynxpresence/blob/master/examples/examples.md)!
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Python RPC Client for Discord
|
|
3
|
-
-----------------------------
|
|
4
|
-
By: qwertyquerty and LewdNeko
|
|
5
3
|
"""
|
|
6
4
|
|
|
7
5
|
from .baseclient import BaseClient
|
|
@@ -11,8 +9,8 @@ from .types import ActivityType
|
|
|
11
9
|
from .presence import Presence, AioPresence
|
|
12
10
|
|
|
13
11
|
|
|
14
|
-
__title__ = '
|
|
12
|
+
__title__ = 'lynxpresence'
|
|
15
13
|
__author__ = 'C0rn3j'
|
|
16
|
-
__copyright__ = 'Copyright 2018 -
|
|
14
|
+
__copyright__ = 'Copyright 2018 - 2025'
|
|
17
15
|
__license__ = 'MIT'
|
|
18
|
-
__version__ = '4.4.
|
|
16
|
+
__version__ = '4.4.1'
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lynxpresence
|
|
3
|
-
Version: 4.4.
|
|
3
|
+
Version: 4.4.1
|
|
4
4
|
Summary: Discord RPC client written in Python
|
|
5
|
-
Home-page: https://github.com/C0rn3j/
|
|
5
|
+
Home-page: https://github.com/C0rn3j/lynxpresence
|
|
6
6
|
Author: C0rn3j
|
|
7
7
|
License: MIT
|
|
8
8
|
Keywords: discord rich presence pypresence rpc api wrapper gamers chat irc
|
|
@@ -45,22 +45,27 @@ Dynamic: summary
|
|
|
45
45
|
|
|
46
46
|
Forked as upstream did not make a release in quite a while, I hope to kill this fork off in the future.
|
|
47
47
|
|
|
48
|
+
I recommend doing `import lynxpresence as pypresence` to keep compatibility and allow easy switching in case upstream picks up again.
|
|
49
|
+
|
|
48
50
|
> A Discord Rich Presence Client in Python? Looks like you've come to the right place.
|
|
51
|
+
|
|
49
52
|

|
|
50
53
|
|
|
51
54
|
----------
|
|
52
55
|
|
|
53
56
|
# Installation
|
|
54
57
|
|
|
55
|
-
Install pypresence with
|
|
56
|
-
|
|
57
|
-
For the latest development version:
|
|
58
|
+
Install pypresence with `pip`, for the latest development version:
|
|
58
59
|
|
|
59
|
-
|
|
60
|
+
```shell
|
|
61
|
+
pip install https://github.com/C0rn3j/lynxpresence/archive/master.zip
|
|
62
|
+
```
|
|
60
63
|
|
|
61
64
|
For the latest stable version:
|
|
62
65
|
|
|
63
|
-
|
|
66
|
+
```shell
|
|
67
|
+
pip install lynxpresence
|
|
68
|
+
```
|
|
64
69
|
|
|
65
70
|
----------
|
|
66
71
|
|
|
@@ -79,4 +84,4 @@ For the latest stable version:
|
|
|
79
84
|
|
|
80
85
|
# Examples
|
|
81
86
|
|
|
82
|
-
Examples can be found in the [examples](https://github.com/C0rn3j/
|
|
87
|
+
Examples can be found in the [examples](https://github.com/C0rn3j/lynxpresence/tree/master/examples) directory, and you can contribute your own examples if you wish, just read [examples.md](https://github.com/C0rn3j/lynxpresence/blob/master/examples/examples.md)!
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
setup.cfg
|
|
4
|
+
setup.py
|
|
5
|
+
lynxpresence/__init__.py
|
|
6
|
+
lynxpresence/baseclient.py
|
|
7
|
+
lynxpresence/client.py
|
|
8
|
+
lynxpresence/exceptions.py
|
|
9
|
+
lynxpresence/payloads.py
|
|
10
|
+
lynxpresence/presence.py
|
|
11
|
+
lynxpresence/py.typed
|
|
12
|
+
lynxpresence/types.py
|
|
13
|
+
lynxpresence/utils.py
|
|
14
|
+
lynxpresence.egg-info/PKG-INFO
|
|
15
|
+
lynxpresence.egg-info/SOURCES.txt
|
|
16
|
+
lynxpresence.egg-info/dependency_links.txt
|
|
17
|
+
lynxpresence.egg-info/top_level.txt
|
|
18
|
+
lynxpresence.egg-info/zip-safe
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lynxpresence
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
from setuptools import setup
|
|
2
|
-
import
|
|
2
|
+
import lynxpresence
|
|
3
3
|
|
|
4
4
|
# Use README for the PyPI page
|
|
5
5
|
with open('README.md') as f:
|
|
@@ -8,9 +8,9 @@ with open('README.md') as f:
|
|
|
8
8
|
# https://setuptools.readthedocs.io/en/latest/setuptools.html
|
|
9
9
|
setup(name='lynxpresence',
|
|
10
10
|
author='C0rn3j',
|
|
11
|
-
url='https://github.com/C0rn3j/
|
|
12
|
-
version=
|
|
13
|
-
packages=['
|
|
11
|
+
url='https://github.com/C0rn3j/lynxpresence',
|
|
12
|
+
version=lynxpresence.__version__,
|
|
13
|
+
packages=['lynxpresence'],
|
|
14
14
|
python_requires='>=3.9',
|
|
15
15
|
platforms=['Windows', 'Linux', 'OSX'],
|
|
16
16
|
zip_safe=True,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
LICENSE
|
|
2
|
-
README.md
|
|
3
|
-
setup.cfg
|
|
4
|
-
setup.py
|
|
5
|
-
lynxpresence.egg-info/PKG-INFO
|
|
6
|
-
lynxpresence.egg-info/SOURCES.txt
|
|
7
|
-
lynxpresence.egg-info/dependency_links.txt
|
|
8
|
-
lynxpresence.egg-info/top_level.txt
|
|
9
|
-
lynxpresence.egg-info/zip-safe
|
|
10
|
-
pypresence/__init__.py
|
|
11
|
-
pypresence/baseclient.py
|
|
12
|
-
pypresence/client.py
|
|
13
|
-
pypresence/exceptions.py
|
|
14
|
-
pypresence/payloads.py
|
|
15
|
-
pypresence/presence.py
|
|
16
|
-
pypresence/py.typed
|
|
17
|
-
pypresence/types.py
|
|
18
|
-
pypresence/utils.py
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
pypresence
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|