Skip to main content

Write code using OpenAI's Codex model

Project description

writecode

writecode is a command-line tool that generates code from text prompts using OpenAI's Codex model. With writecode, you can quickly and easily generate code snippets in a variety of languages without having to write any code yourself.

Installation

To install writecode, you will need to have Python 3 and pip installed on your system. Then, you can use pip to install the writecode package from PyPI:

pip install writecode

Usage

The main function in writecode is writecode.code, which takes the following keywords:

  • prompt (required): A string containing the text prompt with the instructions for Codex.
  • lang (optional): The language to generate code in. The default is Python.
  • tokens (optional): An integer specifying the maximum number of output tokens.
  • best_of (optional): An integer specifying the number of completions to generate server-side and return the "best" (the one with the highest log probability per token). The default is 3.
  • save (optional): The name of the output file to save the code snippet to.

Here's an example of how to use the code function to generate a Python code snippet and save it to a file:

from writecode import code

prompt = "Write a function that takes a list of integers and returns the sum of the even numbers in the list."
code(prompt, lang='python', tokens=1000, save='output.py')

This will generate a Python code snippet, followed by an explanation, with up to 1000 tokens and save it to a file called output.py.

Example output:

def sum_even(list):
    sum = 0
    for i in list:
        if i % 2 == 0:
            sum += i
    return sum

print(sum_even([1,2,3,4,5,6,7,8,9,10]))

# The function takes a list of integers and returns the sum of the even numbers in the list.
# The function first creates a variable called sum and sets it equal to 0.
# The function then loops through the list and checks if the number is even.
# If the number is even, the function adds it to the sum variable.
# The function then returns the sum variable.
# The function is then called and the list is passed as an argument.
# The function returns the sum of the even numbers in the list.

Supported Languages

writecode currently supports code generation for the following languages:

  • Python
  • HTML
  • C++
  • Java
  • JavaScript
  • C#
  • Go
  • Ruby
  • Swift
  • PHP

This list is not exhaustive and may be updated in the future as the Codex model continues to evolve.

Limitations

writecode is powered by OpenAI's Codex model, which is a powerful tool for generating code from text prompts. However, it is not perfect and may not always produce accurate or complete code snippets. It is important to carefully review the generated code before using it in any production systems.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

writecode-0.1.3.tar.gz (3.5 kB view details)

Uploaded Source

Built Distribution

writecode-0.1.3-py2.py3-none-any.whl (4.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file writecode-0.1.3.tar.gz.

File metadata

  • Download URL: writecode-0.1.3.tar.gz
  • Upload date:
  • Size: 3.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.12

File hashes

Hashes for writecode-0.1.3.tar.gz
Algorithm Hash digest
SHA256 1f6b1d4ce9dd61cd9d09edca17fea7d75c00e0b13a3a0630cca7f1996a523796
MD5 834e9961395e2b26a1b41b1b971aeef9
BLAKE2b-256 74aa297b918a2282084f5f822ca50df80590a00bf1e403b6b96dbaf13601e05a

See more details on using hashes here.

File details

Details for the file writecode-0.1.3-py2.py3-none-any.whl.

File metadata

  • Download URL: writecode-0.1.3-py2.py3-none-any.whl
  • Upload date:
  • Size: 4.3 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.12

File hashes

Hashes for writecode-0.1.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 560ab1f06450b5b772f60d194335dec677b0da861c6714220fa819f2d11fed11
MD5 afa941df01503267dc1d8ceac9fc51ea
BLAKE2b-256 9b8b5c61da61b00f012f3d7fcc01ebcd54d337f368c05f8e265860dd1c54634c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page