The day-to-day front-end to the IETF database for people who work on IETF standards

Getting Started This project is following the standard Git Feature Workflow development model. Learn about all the various steps of the development workflow, from creating a fork to submitting a pull request, in the Contributing guide. Make sure to read the Styleguides section to ensure a cohesive code format across the project. You can submit bug reports, enhancement and new feature requests in the discussions area. Accepted tickets will be converted to issues. Prerequisites Python 3.6 Django 2.x Node.js 16.x […]

Read more

A sample project needed for a security course to connect web service to database

This is a sample project needed for a security course to “connect web service to database”. Why this project suits alignment purpose It connects to the PostgreSQL database with basic authentication.On this web server, you can make a gateway with Nginx It would be better if you do it in thedocker network without so web app would not have internet access, and it would be a true gateway.But easier is to send requests to localhost:8000 from Nginx. How to start […]

Read more

A technology capable of matching a human face from a digital webcam frame capture against a database

This dlib-based facial login system is a technology capable of matching a human face from a digital webcam frame capture against a database[number of Numpy Arrays – 128 computer 128-d (i.e., a list of 128 real-valued numbers) that is used to quantify the face] of faces, typically employed to authenticate users through ID verification services, works by pinpointing and measuring facial features from a given image. Before using the code, first make sure you have installed the appropriate Python Libraries! […]

Read more

A database of 300.000+ symbols containing Equities, ETFs, Funds, Indices, Currencies, Cryptocurrencies and Money Markets

As a private investor, the sheer amount of information that can be found on the internet is rather daunting. Trying tounderstand what type of companies or ETFs are available is incredibly challenging with there being millions ofcompanies and derivatives available on the market. Sure, the most traded companies and ETFs can quickly be foundsimply because they are known to the public (for example, Microsoft, Tesla, S&P500 ETF or an All-World ETF). However,what else is out there is often unknown. This […]

Read more

Makes google’s political ad database actually useful

This is a series of scripts that takes Google’s political ad transparency data and makes the ad content searchable as, ironically, the world’s most powerful search company does not make their ad data searchable. It can also takes the ad targeting information and map it to electorates, but this only works for postcodes at the moment so isn’t in the main group of scripts yet. It is aimed at Australian content, but most of the scripts could be applied to […]

Read more

A database-based CDN node supporting PostgreSQL and MongoDB backends

A database-based CDN node supporting PostgreSQL and MongoDB backends. Ubuntu host guide by Digital Ocean. A simple to use database-based deployable CDN node for hobbyist developers who wish to have their own CDN! Setup Clone this repo via this command: git clone https://github.com/justanotherbyte/imoog Go into the imoog/settings.py file and adjust your settings. Examples for both database drivers have been provided in the file. Install a production asgi server of your choice. The 2 I recommend are hypercorn and uvicorn. Installing […]

Read more

An open source Python module that makes accessing ODBC databases simple

pyodbc is an open source Python module that makes accessing ODBC databases simple. It implements the DB API 2.0 specification but is packed with even more Pythonic convenience. The easiest way to install is to use pip: pip install pyodbc Precompiled binary wheels are provided for most Python versions on Windows and macOS. On other operating systems this will build from source. Note, pyodbc contains C++ extensions so you will need a suitable C++ compiler on your computer to install […]

Read more

Python interface to Oracle Database conforming to the Python DB API 2.0 specification

cx_Oracle is a Python extension module that enables access to Oracle Database. It conforms to the Python database API 2.0 specification with a considerable number of additions and a couple of exclusions. See the homepage for a feature list. cx_Oracle 8 has been tested with Python versions 3.6 through 3.9. You can use cx_Oracle with Oracle 11.2, 12c, 18c, 19c and 21c client libraries. Oracle’s standard client-server version interoperability allows connection to both older and newer databases. For example Oracle […]

Read more

Python-beryl: a Python driver for BerylDB

If you want to learn more about BerylDB and how to install it, feel free to check our documentation at docs.beryl.dev.Follow us on Twitter. QuickStart The quick start guide will show you how to set up a simple application using BerylDB’s Python driver. It scope is only how to set up the driver and perform the simple operations. For more advanced coverage, we encourage reading our tutorial. Connecting to BerylDB Let’s create a new example.py file that we will   […]

Read more

The Python SQL Toolkit and Object Relational Mapper

The Python SQL Toolkit and Object Relational Mapper Introduction SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that gives application developers the full power and flexibility of SQL. SQLAlchemy provides a full suite of well known enterprise-level persistence patterns, designed for efficient and high-performing database access, adapted into a simple and Pythonic domain language. Major SQLAlchemy features include: An industrial strength ORM, built from the core on the identity map, unit of work, and data mapper patterns. These […]

Read more
1 2 3