Metadata-Version: 2.1
Name: repl-run-cli
Version: 1.0.1
Summary: Generate GitHub and Repl.it Repos with One Command
Home-page: https://github.com/M4cs/BabySploit
Author: Max Bridgland
Author-email: mabridgland@protonmail.com
License: UNKNOWN
Project-URL: Discord Server, https://discord.gg/C7jgQeN
Description: # repl-from-cli
        A new way to get your source code onto Repl with one command.
        
        # What is repl-from-cli?
        
        Repl-from-cli allows you to upload your source code to a temporary GitHub repository and then allows you to clone it to repl.it and either delete or save the repo on your GitHub. You basically get to hit 2 birds with 1 stone.
        
        # How does it work?
        
        This tool uses the GitHub API through PyGithub and the `git` command line tool. It uses a Python program to create and pull repositories on GitHub to your local directory, push to remote, pull to repl.it, and then either delete the repo, or save it! You'll need a few things to get started.
        
        Requirements:
        
        - Python 3.5+
        - A GitHub Account
        - A GitHub Personal Access Token ([How Do I Get Mine?](https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line))
        - A [repl.it](https://repl.it) Account
        
        # Getting Started
        
        To start, first make sure you have `git` the command line tool installed. If you are using GitHub you most likely have it installed but if you don't [find out how here](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git). 
        
        Either Run:
        ```
        pip3 install repl_from_cli
        ```
        
        or
        
        ```
        # After pulling this repo and going into the directory:
        python3 setup.py install
        ```
        
        To install the `repl-from-cli` command.
        
        The tool pulls from `~/.replitcli/config` for configuration values. To change your GitHub token remove the `config` file there. This will run the startup wizard again and allow you setup your config.
        
        # Usage
        
        Run `repl-from-cli` inside any directory you'd like to upload to repl.it. It will make sure you are logged into repl before creating the repository. After it creates the repo on your github it will create a local git repo in the directory and push to the GitHub repo. If you want to hide files you should make a `.gitignore` prior to running this command. Also if it already has a GitHub repo simply use the URL API repl.it provides (ex. `https://repl.it/github/<Username>/<Repo Name>`).
        
        The tool will open up `repl.it` in your default browser. **Make sure you are logged into repl.it on it.**
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: Python :: Implementation :: IronPython
Classifier: Programming Language :: Python :: Implementation :: Jython
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Information Technology
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: System :: Networking
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
