New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

backstabbr-api

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

backstabbr-api - pypi Package Compare versions

Comparing version
1.0.1
to
1.0.2
+21
LICENSE
MIT License
Copyright (c) 2021 afkhurana
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.
Metadata-Version: 2.1
Name: backstabbr-api
Version: 1.0.2
Summary: Web-scraper API and Discord Bot for the online diplomacy program Backstabbr
Home-page: https://github.com/afkhurana/backstabbr_api
Author: Arjun Khurana
Author-email: afkhurana@gmail.com
License: MIT
Platform: UNKNOWN
Requires-Dist: discord.py
Requires-Dist: html5print
Requires-Dist: requests
UNKNOWN
backstabbr_api/__init__.py,sha256=6Wl80jzafxd0zZDFcf1suFS66_JrOQDFhxEqLNrl4rE,49
backstabbr_api/backstabbr_api.py,sha256=kAGpi1tPgmBHkvuCsQaHg1ex48yJbwINQr5vtjwU_sE,8524
backstabbr_bot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
backstabbr_bot/backstabbr_bot.py,sha256=0Ov44Kc1crIjhSDdXZP94yUsOYT3OlCst1PekKtzoHo,3557
backstabbr_api-1.0.2.dist-info/LICENSE,sha256=m34IhoIzBnhQz3oS0AVRbH9CP0w8IczlnYS-lOPhKTU,1066
backstabbr_api-1.0.2.dist-info/METADATA,sha256=2RMQ8LXIHxbpA-aFCYXbXKBBf7cpliZsV_5lsD9rxl4,372
backstabbr_api-1.0.2.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
backstabbr_api-1.0.2.dist-info/top_level.txt,sha256=sK4sif9t5I1wUsbfoeU-onC6R0daPNy46-2lGOgJBCA,30
backstabbr_api-1.0.2.dist-info/RECORD,,
backstabbr_api
backstabbr_bot
Wheel-Version: 1.0
Generator: bdist_wheel (0.36.2)
Root-Is-Purelib: true
Tag: py3-none-any
+1
-0

@@ -126,2 +126,3 @@ import sys

@tasks.loop()
@server_correct()
async def on_press_change(self):

@@ -128,0 +129,0 @@ new_thread = await backstabbr_api.wait_for_thread_updates() # Models.Thread

-1
Metadata-Version: 1.0
Name: backstabbr-api
Version: 1.0.1
Summary: Web-scraper API and Discord Bot for the online diplomacy program Backstabbr
Home-page: https://github.com/afkhurana/backstabbr_api
Author: Arjun Khurana
Author-email: afkhurana@gmail.com
License: MIT
Description: UNKNOWN
Platform: UNKNOWN
discord.py
html5print
requests
README.md
setup.py
backstabbr_api/__init__.py
backstabbr_api/backstabbr_api.py
backstabbr_api.egg-info/PKG-INFO
backstabbr_api.egg-info/SOURCES.txt
backstabbr_api.egg-info/dependency_links.txt
backstabbr_api.egg-info/requires.txt
backstabbr_api.egg-info/top_level.txt
backstabbr_bot/__init__.py
backstabbr_bot/backstabbr_bot.py
backstabbr_api
backstabbr_bot
Metadata-Version: 1.0
Name: backstabbr_api
Version: 1.0.1
Summary: Web-scraper API and Discord Bot for the online diplomacy program Backstabbr
Home-page: https://github.com/afkhurana/backstabbr_api
Author: Arjun Khurana
Author-email: afkhurana@gmail.com
License: MIT
Description: UNKNOWN
Platform: UNKNOWN
# backstabbr_api
DIY API using urllib.request for Backstabbr
[egg_info]
tag_build =
tag_date = 0
from setuptools import setup, find_packages
setup(name='backstabbr_api',
version='1.0.1',
description='Web-scraper API and Discord Bot for the online diplomacy program Backstabbr',
url='https://github.com/afkhurana/backstabbr_api',
author='Arjun Khurana',
author_email='afkhurana@gmail.com',
license='MIT',
packages=['backstabbr_api', 'backstabbr_bot'],
install_requires=["discord.py", "html5print", "requests"])