GithubHelp home page GithubHelp logo

carbono's Introduction

carbono

A Python package to generate snippet images via Carbon programmatically.

Usage

import asyncio

from carbono.image import from_code

code = """import asyncio

async def func():
    return "Hello, World!"

if __name__ == '__main__':
    asyncio.run(func())"""

loop = asyncio.get_event_loop()
loop.run_until_complete(from_code(code))

Development

  • poetry install.
  • poetry shell.
  • pytest -vv.

To obtain the language map from the Carbon codebase, clone the Carbon repo and follow the steps below:

  1. yarn install.
  2. yarn dev.
  3. Add the following snippet at the end of the lib/constants.js file and copy the generated string from the Console panel (Chrome DevTools), for example.
// lib/constants.js

function searchLanguage(l) {
  return (
    LANGUAGE_NAME_HASH[l] || LANGUAGE_MODE_HASH[l] || LANGUAGE_MIME_HASH[l]
  );
}

function getValue(language) {
  const languageMode = searchLanguage(language);

  if (languageMode) {
    return languageMode.mime || languageMode.mode;
  }

  return language;
}

function upperCase(str) {
  return str.toUpperCase();
}

function slugify(str) {
  str = str
    .replace(/#/g, "_sharp")
    .replace(/\+/g, "_plus")
    .replace(/-/g, "_")
    .replace(/\//g, "_")
    .replace(/\./g, "_")
    .replace(/ +/g, "_"); // Replace spaces

  return str;
}

const langMap = Object.fromEntries(
  LANGUAGES.map((l) => [
    upperCase(slugify(l.name)),
    getValue(l.short || l.mode),
  ])
);

console.log(JSON.stringify(langMap, 0, 2));

References

Notes

carbono's People

Contributors

joaopalmeiro avatar

Watchers

 avatar

carbono's Issues

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.