Science Score: 31.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic links in README
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Unable to calculate vocabulary similarity
Last synced: 10 months ago · JSON representation ·

Repository

Basic Info
  • Host: GitHub
  • Owner: LazyScholars
  • Language: HTML
  • Default Branch: main
  • Size: 3.85 MB
Statistics
  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created over 1 year ago · Last pushed over 1 year ago
Metadata Files
Citation

Owner

  • Login: LazyScholars
  • Kind: user

Citation (citation_generator.py)

class CitationGenerator:
    def __init__(self, author, title, publisher, year, url=None):
        self.author = author
        self.title = title
        self.publisher = publisher
        self.year = year
        self.url = url

    def generate(self, format_type):
        if format_type == "APA":
            return f"{self.author} ({self.year}). *{self.title}*. {self.publisher}. {self.url or ''}"
        elif format_type == "MLA":
            return f"{self.author}. \"{self.title}.\" {self.publisher}, {self.year}. {self.url or ''}"
        elif format_type == "Chicago":
            return f"{self.author}. *{self.title}*. {self.publisher}, {self.year}. {self.url or ''}"
        else:
            raise ValueError("Unsupported format type")

GitHub Events

Total
  • Push event: 6
  • Create event: 2
Last Year
  • Push event: 6
  • Create event: 2

Dependencies

requirements.txt pypi
  • Flask *
  • PyPDF2 *
  • flask-cors *
  • flask-sqlalchemy *
  • graphviz *
  • gunicorn *
  • matplotlib *
  • networkx *
  • nltk *
  • numpy *
  • openai *
  • pandas *
  • pyvis *
  • requests *
  • scikit-learn *
  • seaborn *
  • spacy *
  • torch *
  • transformers *
  • werkzeug *