Giter Club home page Giter Club logo

Comments (4)

GoogleCodeExporter avatar GoogleCodeExporter commented on August 22, 2024
wow, that's pretty cool. would you mind adding it to the main code body and 
test it, and we'll roll it into our next dev release. Would it be possible to 
add something for "p" as well? 

thanks!

Original comment by [email protected] on 19 Mar 2013 at 6:50

from pyp.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 22, 2024
Sorry I don't use SVN.

Add these imports:
import copy_reg
try:
    import cPickle as pickle
except ImportError:
    import pickle


Add this before the Pyp class:

copy_reg.pickle(PypStr, lambda self: (str, (str(self),)))
copy_reg.pickle(PowerPipeList, lambda self: (list, (list(self),)))
copy_reg.pickle(PypList, lambda self: (list, (list(self),)))

Add this method to PowerPipeList:

    def pickle(self):
        """Usage with bash redirections:
        $ python -i <(informative_command | pyp "w[0].isdigit() | pp.sort() | pp.pickle()")
        >>> pp
        ['1 a', '2 b', '3 c']

        Usage with files:
        $ informative_command | pyp "w[0].isdigit() | pp.sort() | pp.pickle()" > my_data.py
        $ python -i my_data.py
        >>> pp
        ['1 a', '2 b', '3 c']

        pp.pickle() must be the last command in the chain.
        """
        return "import cPickle; pp = cPickle.loads(%r)" % (pickle.dumps(self),)

What do you want p.pickle() to do? It would pickle each line seperately but 
then there is no way to manipulate that string using pyp nor is there a way to 
load it into python.

Original comment by [email protected] on 19 Mar 2013 at 9:07

from pyp.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 22, 2024
Actually would be better if it generated "import pickle" if the cPickle import 
failed, although this is quite rare.

Original comment by [email protected] on 19 Mar 2013 at 9:10

from pyp.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 22, 2024
pretty cool. we'll try to add this to the next dev version. You're right, using 
pp is best.

Original comment by [email protected] on 22 Mar 2013 at 11:29

from pyp.

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.