Metadata-Version: 2.1
Name: plagcheck
Version: 0.1
Summary: A Powerful Moss results scrapper
Home-page: https://github.com/codeclassroom/PlagCheck
Author: Bhupesh Varshney
Author-email: varshneybhupesh@gmail.com
License: UNKNOWN
Project-URL: Documentation, https://github.com/codeclassroom/PlagCheck/blob/master/docs/docs.md
Project-URL: Source Code, https://github.com/codeclassroom/PlagCheck
Project-URL: Funding, https://www.patreon.com/bePatron?u=18082750
Project-URL: Say Thanks!, https://github.com/codeclassroom/PlagCheck/issues/new?assignees=&labels=&template=---say-thank-you.md&title=
Description: # PlagCheck ✅
        [![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg?style=plastic)](#contributors)
        [![GitHub license](https://img.shields.io/github/license/codeclassroom/PlagCheck)](https://github.com/codeclassroom/CodeRunner/blob/master/LICENSE)
        [![GitHub issues](https://img.shields.io/github/issues/codeclassroom/PlagCheck?color=blueviolet)](https://github.com/codeclassroom/CodeRunner/issues)
        [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-orange.svg)](http://makeapullrequest.com)
        ![GitHub commit activity](https://img.shields.io/github/commit-activity/m/codeclassroom/PlagCheck?style=plastic)
        
        > A Powerful [Moss](http://theory.stanford.edu/~aiken/moss/) results scrapper.
        
        ## Installation 🔮
        
        1. Create virtual environment.
        
            **Linux/MacOS**
        
            ```bash
            virtualenv -p python3 venv && cd venv && source bin/activate
            ```
        
            **Windows**
            (*PowerShell*)
        
            ```cmd
            py -m venv venv; .\venv\Scripts\activate;
            ```
        
        2. Clone the repository.
        
            ```bash
            git clone https://github.com/codeclassroom/PlagCheck.git
            ```
        
        3. Install dependencies.
        
            ```bash
            pip install -r requirements.txt
            ```
        
        4. Set-up virtual environment variables.
            1. Create a file named `.env` in the root directory & add the following contents.
        
                ```text
                USER_ID = 'moss-user-id'
                ```
        
            2. For `USER_ID` read instructions on [Moss](http://theory.stanford.edu/~aiken/moss/).
        
        5. Run `demo.py` for demo.
        
        ## Usage
        
        ```python
        """Usage example"""
        import os
        import pprint
        from plagcheck import plagcheck
        from dotenv import load_dotenv
        load_dotenv()
        
        program_files = ["testfiles/test_python.py", "testfiles/test_python3.py"]
        language = "python"
        userid = os.environ["USER_ID"]
        
        url, results = plagcheck.check(program_files, language, userid)
        
        
        print(url)
        pprint.pprint(results)
        
        ```
        
        Read [Documentation](https://github.com/codeclassroom/PlagCheck/blob/master/docs/docs.md).
        
        ## Author
        
        👥 **Bhupesh Varshney**
        
        - Twitter: [@bhupeshimself](https://twitter.com/bhupeshimself)
        - DEV: [bhupesh](https://dev.to/bhupesh)
        ## Contributors ✨
        
        Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
        
        <!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
        <!-- prettier-ignore -->
        <table>
          <tr>
            <td align="center"><a href="https://github.com/vhsw"><img src="https://avatars3.githubusercontent.com/u/7099976?v=4" width="100px;" alt="Alexey Dubrov"/><br /><sub><b>Alexey Dubrov</b></sub></a><br /><a href="https://github.com/codeclassroom/PlagCheck/commits?author=vhsw" title="Code">💻</a> <a href="https://github.com/codeclassroom/PlagCheck/issues?q=author%3Avhsw" title="Bug reports">🐛</a> <a href="https://github.com/codeclassroom/PlagCheck/commits?author=vhsw" title="Tests">⚠️</a></td>
          </tr>
        </table>
        
        <!-- ALL-CONTRIBUTORS-LIST:END -->
        
        This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
        
Keywords: mosspy moss plagiarism cheat
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Build Tools
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
