https://github.com/amssdias/regex-query-tool
Website to search for specific patterns on a text, using regular expressions.
https://github.com/amssdias/regex-query-tool
django python regular-expressions
Last synced: 3 months ago
JSON representation
Website to search for specific patterns on a text, using regular expressions.
- Host: GitHub
- URL: https://github.com/amssdias/regex-query-tool
- Owner: amssdias
- Created: 2021-06-05T14:01:20.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-06-10T21:48:08.000Z (about 4 years ago)
- Last Synced: 2025-01-13T19:24:30.300Z (5 months ago)
- Topics: django, python, regular-expressions
- Language: Python
- Homepage:
- Size: 52.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[python-download]: https://www.python.org/downloads/
[django-link]: https://www.djangoproject.com/
# Regex Query Tool
![]()
A simple app where a user can query through a text using regular expressions.### Built with

## :hammer: Getting started
### Pre requisites
- [Python][python-download] - 3.9 or up
- [Django][django-link] - 3.2.4### Installation
#### Pipfile and Pipfile.Lock
1. Download Pipenv through the terminal window ***(make sure you have [Python][python-download] installed)***:
```python
pip install pipenv
```
2. After installing pipenv all you have to do is to download the files and in the terminal window, go to the folder with these files and run:```python
pipenv install
```
This will create a virtual environment with all the modules needed.3. We must have this virtual environment to run our program, through the terminal window:
```python
pipenv shell # To run the virtual environment
exit # To close the virtual environment
```If any doubts here's a link to some more explanations: [Pipenv](https://pipenv-fork.readthedocs.io/en/latest/basics.html)
## :mag_right: Use the query tool
On your terminal window, go to the folder with the Pip files and type:
```python
pipenv shell
```Then change to the folder with `manage.py` and type:
```python
python manage.py runserver
```
Paste this link on your browser:
**http://127.0.0.1:8000/regex**