Skip to content

Commit 09a3f39

Browse files
Cleanup
1 parent c7c7f96 commit 09a3f39

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 azazelm3dj3d
3+
Copyright (c) 2022-2024 battleoverflow
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<img src="https://raw.githubusercontent.com/azazelm3dj3d/RediSea/main/assets/redisea_banner_v3.png">
1+
<img src="https://raw.githubusercontent.com/battleoverflow/RediSea/main/assets/redisea_banner_v3.png">
22

33
RediSea is a Redis (in-memory database) communication framework used for viewing Redis keys, dumping Redis keys, dumping key information about the Redis server, real-time Redis database analysis, and much more!
44

@@ -23,4 +23,4 @@ pip3 install -r requirements.txt
2323
```
2424
```bash
2525
python3 redisea/main.py
26-
```
26+
```

redisea/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Owner: azazelm3dj3d (https://github.com/azazelm3dj3d)
2+
Owner: battleoverflow (https://github.com/battleoverflow)
33
Project: RediSea
44
License: MIT
5-
"""
5+
"""

redisea/redisea.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
"""
4-
Owner: azazelm3dj3d (https://github.com/azazelm3dj3d)
4+
Owner: battleoverflow (https://github.com/battleoverflow)
55
Project: RediSea
66
License: MIT
77
"""
@@ -12,8 +12,8 @@
1212
from prettytable import PrettyTable
1313

1414
r = redis.Redis()
15-
author = 'azazelm3dj3d'
16-
version = '1.2.32'
15+
author = 'battleoverflow'
16+
version = '1.2.34'
1717

1818
class RediSea:
1919

@@ -185,7 +185,7 @@ def redis_comms(self):
185185

186186
except KeyboardInterrupt:
187187
print("\n\nThank you for using RediSea!\n")
188-
print(f"Author: {author} (https://github.com/azazelm3dj3d)")
188+
print(f"Author: {author} (https://github.com/battleoverflow)")
189189
print(f"Version: {version}")
190190
time.sleep(0.2)
191191
sys.exit(0)
@@ -196,4 +196,4 @@ def main():
196196
rs.redis_comms()
197197

198198
if __name__ == '__main__':
199-
RediSea.main()
199+
RediSea.main()

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Owner: azazelm3dj3d (https://github.com/azazelm3dj3d)
2+
Owner: battleoverflow (https://github.com/battleoverflow)
33
Project: RediSea
44
License: MIT
55
"""
@@ -11,12 +11,12 @@
1111

1212
setuptools.setup(
1313
name = "redisea",
14-
version = "1.2.33",
15-
author = "azazelm3dj3d",
14+
version = "1.2.34",
15+
author = "battleoverflow",
1616
description = "RediSea is a Redis (in-memory database) communication framework used for dumping key/value information within the Redis server, real-time Redis database analysis, and much more.",
1717
long_description = long_description,
1818
long_description_content_type = "text/markdown",
19-
url = "https://github.com/azazelm3dj3d/RediSea",
19+
url = "https://github.com/battleoverflow/RediSea",
2020
classifiers = [
2121
"Programming Language :: Python :: 3",
2222
"License :: OSI Approved :: MIT License",
@@ -35,4 +35,4 @@
3535
'console_scripts': ["redisea=redisea.redisea:RediSea.main"]
3636
},
3737
python_requires = ">=3.6"
38-
)
38+
)

0 commit comments

Comments
 (0)