GithubHelp home page GithubHelp logo

Comments (11)

tmbo avatar tmbo commented on June 25, 2024 1

Yes that would be great, if you tag it with 1.1.0a1 (or whatever your next release is) "normal" people wont get it if they install from pip only if you specifically use the version number, that would be best 👍

from pyinquirer.

CITGuru avatar CITGuru commented on June 25, 2024

Currently, though I haven't figured out how to work around that without escaping the ascii codec. Though you can use unicode as below to get through it without error.

unicode('John’s Pizza').encode("unicode_escape")

which will give out what we dont really want

>>> John\u2019s Pizza

So its better to avoid it. In case you were able to fix it, do share how you are able to. I'll be working on it in my free time to get it fixed.

from pyinquirer.

thanosgn avatar thanosgn commented on June 25, 2024

I have not tested it thoroughly, but it seems that removing the str() call from PyInquirer/prompts/list.py in line 92 solves the issue for now. See diff below:

@@ -89,7 +89,7 @@ class InquirerControl(TokenListControl):
                 tokens.append((T.Selected if selected else T,
                                '- %s (%s)' % (choice[0], choice[2])))
             else:
-                tokens.append((T.Selected if selected else T, str(choice[0]),
+                tokens.append((T.Selected if selected else T, choice[0],
                                select_item))
             tokens.append((T, '\n'))
 

Maybe this will guide you in the right direction even if it won't solve the issue yet.

Thanos

from pyinquirer.

CITGuru avatar CITGuru commented on June 25, 2024

Oh lemme check that 👍 . Thanks

from pyinquirer.

tmbo avatar tmbo commented on June 25, 2024

Just ran into the same issue - would be great if we could merge that fix.

from pyinquirer.

CITGuru avatar CITGuru commented on June 25, 2024

I have added a fix to the dev branch. I'll push it up to the master with some other fix.

from pyinquirer.

CITGuru avatar CITGuru commented on June 25, 2024

So I am gonna close this issue. :+1

from pyinquirer.

tmbo avatar tmbo commented on June 25, 2024

Sounds great, we want to use it as part of https://github.com/rasahq/rasa_core and since we still need to support py2 & py3 that would make this a lot easier 🚀

from pyinquirer.

CITGuru avatar CITGuru commented on June 25, 2024

Nice one, 👍 . Thanks for your time

from pyinquirer.

tmbo avatar tmbo commented on June 25, 2024

Do you have any plans when the next release will happen?

from pyinquirer.

CITGuru avatar CITGuru commented on June 25, 2024

No, not anytime soon. Cos I am planning to add editor and some other fix. I need to carry out test against some environments. Just too busy these days in my company. Also I wanted to add some of the TODO feature. But, I can create a pre release version, so people can use most recent fix with no new feature. 👍

from pyinquirer.

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.