Giter Club home page Giter Club logo

Comments (6)

zakariassen avatar zakariassen commented on June 25, 2024 1

@zakariassen do you know if getfullargspec also existed in older versions of python (ie: is that backwards compatible fix?)

AFAIK, It is present in all versions of Python 3, from v3.0 forwards.

https://docs.python.org/3.0/library/inspect.html#inspect.getfullargspec

Just dumb luck on my account, testing if it would function as a drop-in replacement :)

from ntfy.

karlicoss avatar karlicoss commented on June 25, 2024

Until this is fixed in master, you can try this workaround (if you're calling ntfy from python)

def hack(*args, **kwargs):
    raise RuntimeError("TODO")

import inspect
inspect.getargspec = hack

from ntfy.cli import main as ntfy_main
ntfy_main([
    '-b', 'some_backend',
    '-t', 'TITLE',
    'send', 'BODY',
])

The error hander isn't used on the "happy path" so doesn't matter much what exactly you put into hack function.

from ntfy.

mgerasimchuk avatar mgerasimchuk commented on June 25, 2024

Hotfix with the additional version of python for your mac:

brew install [email protected]
pip3.9 install ntfy
sed -I '' -E 's/[0-9]+.[0-9]+/3.9/g' /opt/homebrew/bin/ntfy

from ntfy.

zakariassen avatar zakariassen commented on June 25, 2024

At least on my machine, changing getargspec to getfullargspec in init.py got ntfy working again on python 3.11.2.

from ntfy.

dschep avatar dschep commented on June 25, 2024

@zakariassen do you know if getfullargspec also existed in older versions of python (ie: is that backwards compatible fix?)

from ntfy.

nwgat avatar nwgat commented on June 25, 2024

simple fix on ubutnu 23.10 with python 3.11
sed -i 's/getargspec/getfullargspec/' /usr/local/lib/python3.11/dist-packages/ntfy/__init__.py

from ntfy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.