An open API service indexing awesome lists of open source software.

https://github.com/hellerve/a_bad_idea

Code for my Lightning Talk at EuroPython2016 (the one I didn’t give)
https://github.com/hellerve/a_bad_idea

Last synced: 12 months ago
JSON representation

Code for my Lightning Talk at EuroPython2016 (the one I didn’t give)

Awesome Lists containing this project

README

          

# a\_bad\_idea

\#langs for Python. Check out [my blog post](https://blog.veitheller.de/A_Bad_Idea.html)!

## Installation

No.

## Usage

You want to add a custom parser to Python?
Sure you can.

```python
from a_bad_idea import add_implementation

add_implementation("mylanguage", my_language_fun)
```

The loaded module will then have a `value` property that
you can read out. Because that is not hacky at all.

For an example, look at [the JSON example](https://github.com/hellerve/a_bad_idea/blob/master/examples/json_lang.py).


Have fun!