Metadata-Version: 2.4
Name: credence
Version: 0.2.0
Summary: A simple package to fetch files by number from a GitHub repository
Home-page: https://github.com/Tanmay-24/CL3
Author: Tanmay
Author-email: Tanmay <tanmay@example.com>
License: MIT
Project-URL: Homepage, https://github.com/Tanmay-24/CL3
Project-URL: Repository, https://github.com/Tanmay-24/CL3
Keywords: code,fetcher,github
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.28.0
Dynamic: author
Dynamic: home-page
Dynamic: license-file

# Credence

A simple Python package to fetch files by number from a GitHub repository.

## Installation

```bash
pip install credence
```

## Usage

The package provides a very simple interface to fetch files by number from a predefined GitHub repository:

```python
from credence import fetch

# Fetch file number 1 (1.txt from the repository)
fetch(1)
```

This will download the file named "1.txt" from the GitHub repository to your current working directory.

## How it Works

The package automatically connects to the GitHub repository at https://github.com/Tanmay-24/CL3 and fetches the file with the corresponding number. 

No configuration or setup is needed on the client side. Just import and use!

## Requirements

- Python 3.6+
- requests library
