Skip to content

Commit

Permalink
Add Endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
Ombucha authored May 19, 2022
1 parent 61e72db commit 14198cf
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
project = "gocomics.py"
copyright = "2022, Omkaar"
author = "Mr.Brawler"
release = "1.1.0"
release = "1.1.1"

extensions = ["sphinx.ext.autodoc"]
2 changes: 1 addition & 1 deletion gocomics/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
__author__ = 'Omkaar'
__license__ = 'MIT'
__copyright__ = 'Copyright 2022 Omkaar'
__version__ = '1.1.0'
__version__ = '1.1.1'


from .comic import *
Expand Down
26 changes: 26 additions & 0 deletions gocomics/endpoints.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
"""
MIT License
Copyright (c) 2022 Omkaar
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:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""


BASE_URL = "https://gocomics.com/"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "gocomics.py"
version = "1.1.0"
version = "1.1.1"
description = "Fetch comics from GoComics."
authors = ["Mr.Brawler <omkaar.nerurkar@gmail.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name = "gocomics.py",
version = "1.1.0",
version = "1.1.1",
description = "Fetch comics from GoComics.",
long_description = README,
long_description_content_type = "text/x-rst",
Expand Down

0 comments on commit 14198cf

Please sign in to comment.