https://github.com/deniskropp/python-testing
Python module repo for basic testing of RepoAgent
https://github.com/deniskropp/python-testing
automation documentation generative-ai python3 testing
Last synced: 10 months ago
JSON representation
Python module repo for basic testing of RepoAgent
- Host: GitHub
- URL: https://github.com/deniskropp/python-testing
- Owner: deniskropp
- Created: 2024-06-06T05:37:46.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-07T18:27:49.000Z (about 2 years ago)
- Last Synced: 2025-03-28T05:42:06.620Z (over 1 year ago)
- Topics: automation, documentation, generative-ai, python3, testing
- Language: Python
- Homepage: https://github.com/OpenBMB/RepoAgent
- Size: 133 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# jobsNqueues
## About
`jobsNqueues` is a python package that provides a simple way to manage and
execute jobs. It includes a basic queue and job object.
## Installation
To install the `jobsNqueues` package, you can use pip:
```bash
pip install jobsNqueues
```
## Usage
```python
from jobsNqueues import Queue, Job
queue = Queue()
queue.push(Job(print, 'hello', end='\n'))
queue.push(Job(print, 'world', end='\n'))
while (not queue.empty()):
job = queue.pop()
job.run()
```
## Development
```bash
pip install -e .
```
## License
MIT License
## Author
[Denis Kropp](https://github.com/deniskropp)