Upload Python files in a directory to a GitHub Gist.
Project description
code2gist
code2gist
is a Python package that makes sharing your code projects easier than ever. With a simple command, it lets you upload your code files to GitHub's Gist. code2gist
is available on PyPI.
The package works hand-in-hand with OpenAI's ChatGPT-4's 'Browse with Bing' feature. This compatibility allows you to present substantial code bases to the model in a single instance, eliminating the need to split your code into smaller parts.
Another key feature of code2gist
is its ability to handle a wide range of text-based file types, not just Python files.
In addition, code2gist
comes with a prune
feature that provides a clean way to remove all the gists created by this tool from your GitHub account.
Installation
You can install the package via pip:
pip install code2gist
Adding code2gist Directory to the PATH Environment Variable
Here are step-by-step instructions to add the code2gist directory to your PATH environment variable on Windows:
- Open the Control Panel.
- Navigate to System and Security > System.
- Click on the Advanced system settings link on the left panel.
- Click Environment Variables.
- Under the System Variables section, find and double-click the variable PATH.
- Click New.
- Add the directory where code2gist is installed. For example, if you have Python 3.11 installed, the directory might look like this:
C:\...\Python311\Scripts
- Click OK to close all windows and save the changes.
After following these steps, your system should recognize code2gist commands from any directory in the command line.
GitHub Token
code2gist
requires a GitHub token to function. You need to create a new token with the gist
scope (which allows it to create gists). Follow this guide to create a new token.
Once you have your token, you should store it in the "GITHUB_TOKEN" environment variable. Here are the steps to set this variable in Windows:
- Open the Control Panel.
- Search for "Environment Variables".
- Click on "Edit the system environment variables".
- In the System Properties window that appears, click the "Environment Variables..." button.
- In the Environment Variables window, click the "New..." button under the "User variables" section.
- Enter "GITHUB_TOKEN" as the variable name and your token as the variable value.
- Click "OK" on all open windows to apply the changes.
Please ensure that you have this variable set before using the package.
Usage
Uploading Files
To use code2gist
, simply use the following command:
code2gist .
This command will upload all Python files in the current directory to a private Gist on your GitHub account. The Gist will be titled with the name of the current directory, followed by "[code2gist]".
If you want to include files with different extensions, you can specify them using the --ext
option:
code2gist . --ext .txt .md .py
This command will include all text, Markdown, and Python files in the upload.
Deleting Gists
The prune
feature allows you to delete all gists created by code2gist
:
code2gist --prune
Running this command will delete all your gists with "[code2gist]" in the description.
.gitignore Support
code2gist
respects .gitignore
rules. Files that match a rule in the .gitignore
file of the directory being uploaded will be skipped. In addition, by default, code2gist
skips files and directories that start with a dot (.
), although this behavior may change in future versions to strictly adhere to .gitignore
.
Note
The gists created by code2gist
are private by default, providing a safe way for you to share your code without making it publicly available.
Please remember that code2gist
is a tool for sharing code and should not be used to share sensitive information. Always ensure that your files do not contain any confidential data before uploading them.
License
code2gist
is licensed underthe GNU General Public License v3.0.
We hope code2gist
serves as a valuable tool in your development toolkit. Happy coding!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file code2gist-1.1.2.tar.gz
.
File metadata
- Download URL: code2gist-1.1.2.tar.gz
- Upload date:
- Size: 16.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 052245c80eb5de91fa19806583d89a4255046f4c5e4f07185922d47de36a87bb |
|
MD5 | a8b256c9a365cc02a10d8ca8a0681c6d |
|
BLAKE2b-256 | b1be538f8266969929dd23d773b920158a915b5eb630c946379258436e99ab99 |
File details
Details for the file code2gist-1.1.2-py3-none-any.whl
.
File metadata
- Download URL: code2gist-1.1.2-py3-none-any.whl
- Upload date:
- Size: 17.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3fa4d6300028d9893c806066faf8090e9f0d907a59eb0d83ddd1e582d66c8b38 |
|
MD5 | a5377da77a1246ac964263011b89d528 |
|
BLAKE2b-256 | 9fce583e07ab3563774891d9c1defe513bd691b22861984d9e2defabdae0e044 |