Skip to content

Commit f9930d3

Browse files
committed
Update files for new ownership
1 parent a912882 commit f9930d3

File tree

11 files changed

+19
-19
lines changed

11 files changed

+19
-19
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2020-Present AbstractUmbra
1+
Copyright 2020-Present PythonistaGuild
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
44

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
<a href='https://mystbinpy.readthedocs.io/en/latest/?badge=latest'>
44
<img src='https://readthedocs.org/projects/mystbinpy/badge/?version=latest' alt='Documentation Status' />
55
</a>
6-
<a href='https://github.com/AbstractUmbra/mystbin.py/workflows/Code%20Linting'>
7-
<img src='https://github.com/AbstractUmbra/mystbin.py/workflows/Code%20Linting/badge.svg?branch=main' alt='Linting status' />
6+
<a href='https://github.com/PythonistaGuild/mystbin.py/workflows/Code%20Linting'>
7+
<img src='https://github.com/PythonistaGuild/mystbin.py/workflows/Code%20Linting/badge.svg?branch=main' alt='Linting status' />
88
</a>
9-
<a href='https://github.com/AbstractUmbra/mystbin.py/workflows/Build'>
10-
<img src='https://github.com/AbstractUmbra/mystbin.py/workflows/Build/badge.svg' alt='Build status' />
9+
<a href='https://github.com/PythonistaGuild/mystbin.py/workflows/Build'>
10+
<img src='https://github.com/PythonistaGuild/mystbin.py/workflows/Build/badge.svg' alt='Build status' />
1111
</a>
1212
</div>
1313
<br>
@@ -37,7 +37,7 @@ python -m pip install -U mystbin.py[requests]
3737

3838
Installing from source:
3939
```shell
40-
python -m pip install git+https://github.com/AbstractUmbra/mystbin-py.git #[requests] for sync addon
40+
python -m pip install git+https://github.com/PythonistaGuild/mystbin-py.git #[requests] for sync addon
4141
```
4242

4343
### Usage examples

mystbin/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
The MIT License (MIT)
33
4-
Copyright (c) 2020-Present AbstractUmbra
4+
Copyright (c) 2020-Present PythonistaGuild
55
66
Permission is hereby granted, free of charge, to any person obtaining a
77
copy of this software and associated documentation files (the "Software"),

mystbin/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
The MIT License (MIT)
33
4-
Copyright (c) 2020 - Present, AbstractUmbra
4+
Copyright (c) 2020 - Present, PythonistaGuild
55
66
Permission is hereby granted, free of charge, to any person obtaining a
77
copy of this software and associated documentation files (the "Software"),

mystbin/errors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
The MIT License (MIT)
33
4-
Copyright (c) 2020 - Present, AbstractUmbra
4+
Copyright (c) 2020 - Present, PythonistaGuild
55
66
Permission is hereby granted, free of charge, to any person obtaining a
77
copy of this software and associated documentation files (the "Software"),

mystbin/http.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
The MIT License (MIT)
33
4-
Copyright (c) 2020 - Present, AbstractUmbra
4+
Copyright (c) 2020 - Present, PythonistaGuild
55
66
Permission is hereby granted, free of charge, to any person obtaining a
77
copy of this software and associated documentation files (the "Software"),
@@ -139,7 +139,7 @@ def __init__(self, *, token: Optional[str], session: Optional[aiohttp.ClientSess
139139
self._token: Optional[str] = token
140140
self.__session: Optional[aiohttp.ClientSession] = session
141141
self._locks: weakref.WeakValueDictionary = weakref.WeakValueDictionary()
142-
user_agent = "Hondana (https://github.com/AbstractUmbra/mystbin.py {0}) Python/{1[0]}.{1[1]} aiohttp/{2}"
142+
user_agent = "mystbin.py (https://github.com/PythonistaGuild/mystbin.py {0}) Python/{1[0]}.{1[1]} aiohttp/{2}"
143143
self.user_agent: str = user_agent.format(__version__, sys.version_info, aiohttp.__version__)
144144

145145
async def _generate_session(self) -> aiohttp.ClientSession:

mystbin/paste.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
The MIT License (MIT)
33
4-
Copyright (c) 2020 - Present, AbstractUmbra
4+
Copyright (c) 2020 - Present, PythonistaGuild
55
66
Permission is hereby granted, free of charge, to any person obtaining a
77
copy of this software and associated documentation files (the "Software"),

mystbin/types/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
The MIT License (MIT)
33
4-
Copyright (c) 2020 - Present, AbstractUmbra
4+
Copyright (c) 2020 - Present, PythonistaGuild
55
66
Permission is hereby granted, free of charge, to any person obtaining a
77
copy of this software and associated documentation files (the "Software"),

mystbin/types/responses.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
The MIT License (MIT)
33
4-
Copyright (c) 2020 - Present, AbstractUmbra
4+
Copyright (c) 2020 - Present, PythonistaGuild
55
66
Permission is hereby granted, free of charge, to any person obtaining a
77
copy of this software and associated documentation files (the "Software"),

mystbin/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
The MIT License (MIT)
33
4-
Copyright (c) 2020 - Present, AbstractUmbra
4+
Copyright (c) 2020 - Present, PythonistaGuild
55
66
Permission is hereby granted, free of charge, to any person obtaining a
77
copy of this software and associated documentation files (the "Software"),

0 commit comments

Comments
 (0)