Skip to content

Commit 9c49b25

Browse files
committed
Update author name
1 parent 2439dd1 commit 9c49b25

File tree

12 files changed

+18
-18
lines changed

12 files changed

+18
-18
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<p align="center">
66
<a href="https://pypi.org/project/apininjas.py/"><img alt="PyPi version" src="https://img.shields.io/pypi/v/apininjas.py?style=flat-square&color=016dad"></a>
77
<a href="https://pypi.org/project/apininjas.py/"><img alt="Python version" src="https://img.shields.io/pypi/pyversions/apininjas.py?style=flat-square&color=016dad"></a>
8-
<a href="https://github.com/Puncher1/apininjas.py/blob/main/LICENSE"><img alt="License" src="https://img.shields.io/github/license/puncher1/apininjas.py?style=flat-square"></a>
8+
<a href="https://github.com/codeofandrin/apininjas.py/blob/main/LICENSE"><img alt="License" src="https://img.shields.io/github/license/codeofandrin/apininjas.py?style=flat-square"></a>
99
</p>
1010

1111
## Key Features
@@ -27,7 +27,7 @@ pip install -U apininjas.py
2727

2828
To install the development version (**may be unstable**), use
2929
```cmd
30-
pip install -U git+https://github.com/puncher1/apininjas.py
30+
pip install -U git+https://github.com/codeofandrin/apininjas.py
3131
```
3232

3333

apininjas/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
=============
44
Python Wrapper for the API-Ninjas APIs.
55
6-
Copyright (c) 2024-present Puncher1
6+
Copyright (c) 2024-present codeofandrin
77
MIT License. See LICENSE for details
88
"""
99

1010
__version__ = "0.3.0a"
11-
__author__ = "Puncher1"
12-
__copyright__ = "Copyright (c) 2024-present Puncher1"
11+
__author__ = "codeofandrin"
12+
__copyright__ = "Copyright (c) 2024-present codeofandrin"
1313
__license__ = "MIT"
1414

1515
from typing import NamedTuple, Literal

apininjas/abc.py

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

apininjas/client.py

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

apininjas/enums.py

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

apininjas/errors.py

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

apininjas/finance.py

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

apininjas/http.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
MIT License
33
4-
Copyright (c) 2024-present Puncher1
4+
Copyright (c) 2024-present codeofandrin
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal
@@ -68,7 +68,7 @@ def __init__(self, api_key: str):
6868
sys_vers = f"Python/{sys.version_info[0]}.{sys.version_info[1]}"
6969
client_vers = f"aiohttp/{aiohttp.__version__}"
7070
self.user_agent: str = (
71-
f"apininjas.py (https://github.com/Puncher1/apininjas.py {__version__}) {sys_vers} {client_vers}"
71+
f"apininjas.py (https://github.com/codeofandrin/apininjas.py {__version__}) {sys_vers} {client_vers}"
7272
)
7373

7474
async def request(

apininjas/types/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
================
44
Types for the API-Ninjas APIs.
55
6-
Copyright (c) 2024-present Puncher1
6+
Copyright (c) 2024-present codeofandrin
77
MIT License. See LICENSE for details
88
"""

apininjas/types/finance.py

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

0 commit comments

Comments
 (0)