Online Version: http://sdiehl.github.com/gevent-tutorial/

Want to add an example. Its uber simple.

  1. Fork the repo.

  2. pip install -r requirements.txt

  3. Edit tutorial.md.

Add your text as Markdown.

Add your code as Cog:

 [[[cog

 print("Hello World!")
 for i in xrange(25):
     print(i)

 ]]]
 [[[end]]]

Will output this as html:


    

    print("Hello World!")
    for i in xrange(5):
        print(i)

    
  1. Run ./build

  2. Issue pull request.

  3. Get good gevent karma.

Released under MIT License.

Last updated

Was this helpful?