1.0.7 • Published 3 years ago

github-repo-parser v1.0.7

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

GitHub Repository Parser

Hosted on saarthdeshpande.github.io

Why parse a repository?

How does the parser work?

import GitHubRepoParser from 'GitHubRepoParser';

const parser = new GitHubRepoParser(<YOUR_GITHUB_API_KEY>)

(async () => 
    console.log(
        await parser.collectData(<GITHUB_REPOSITORY_URL>)
        )
    )();
{
    gitignore: [
        'https://raw.githubusercontent.com/saarthdeshpande/book-summarizer/master/.gitignore'
    ],
    md: [
        'https://raw.githubusercontent.com/saarthdeshpande/book-summarizer/master/README.md'
    ],
    py: [
        'https://raw.githubusercontent.com/saarthdeshpande/book-summarizer/master/bsCLI.py',
        'https://raw.githubusercontent.com/saarthdeshpande/book-summarizer/master/imports.py',
        'https://raw.githubusercontent.com/saarthdeshpande/book-summarizer/master/mail.py',
        'https://raw.githubusercontent.com/saarthdeshpande/book-summarizer/master/model.py',
        'https://raw.githubusercontent.com/saarthdeshpande/book-summarizer/master/preprocess.py',
        'https://raw.githubusercontent.com/saarthdeshpande/book-summarizer/master/views.py'
    ],
    txt: [
        'https://raw.githubusercontent.com/saarthdeshpande/book-summarizer/master/fail_body.txt',
        'https://raw.githubusercontent.com/saarthdeshpande/book-summarizer/master/mail_body.txt',
        'https://raw.githubusercontent.com/saarthdeshpande/book-summarizer/master/requirements.txt',
        'https://raw.githubusercontent.com/saarthdeshpande/book-summarizer/master/static/pdf/uploads/dummy.txt'
    ],
    png: [
        'https://raw.githubusercontent.com/saarthdeshpande/book-summarizer/master/screenshots/homepage.png',
        'https://raw.githubusercontent.com/saarthdeshpande/book-summarizer/master/screenshots/mail.png'
    ],
    css: [
        'https://raw.githubusercontent.com/saarthdeshpande/book-summarizer/master/static/styles/styles.css'
    ],
    html: [
        'https://raw.githubusercontent.com/saarthdeshpande/book-summarizer/master/templates/public/end_page.html',
        'https://raw.githubusercontent.com/saarthdeshpande/book-summarizer/master/templates/public/upload_pdf.html',
        'https://raw.githubusercontent.com/saarthdeshpande/book-summarizer/master/templates/public/templates/public_template.html'
    ]
}
1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago