Examples of Askdata usage in serving different types of data

This repository contains examples of Askdata usage in serving different types of data. Installation pip install askdata orpip install -r requirements.txt Authentication Lets handle our authenticaton from askdata import Askdata askdata = Askdata() Once your insert your account and password you’re all set Query your data # Load the list of the agents connected to your account as a pandas dataframe get_agents_df = askdata.agents_dataframe() #get one agent agent = askdata.agent(“sales_demo”) # Simple query df = agent.ask(‘give me sales by countries’) […]

Read more

Official Notion SDK rewritten in Python (sync + async)

notion-sdk-py This client is meant to be a Python version of the reference JavaScript SDK,so usage should be pretty similar between both. 😊 šŸ“¢ Announcement (14-08-2021) — 0.6.0 is now released and adds support forthe recent Notion API changes.Upgrading should be seamless from 0.4.0 onwards. Installation pip install notion-client Usage Before getting started, create an integrationand find the token.→ Learn more about authorization. Import and initialize a client using an integration token or anOAuth access token. import os from notion_client […]

Read more

Easy way to use Telegram bot to hide your identity

Easy way to use Telegram bot to hide your identity. Useful for support, anonymous channel management. Free clone of Livegram Bot. How bot works: Your client write a message to your bot Bot forwards the message to your secret chat Any chat participant can reply on a forwarded message Bot will copy the message and send it to your client .env variables You need to specify these env variables to run this bot. If you run it locally, you can […]

Read more

A ranked list of awesome python developer tools and libraries

A ranked list of awesome Python open-source libraries & tools. Updated weekly. This curated list contains 300 awesome open-source projects with a total of 950K stars grouped into 26 categories. All projects are ranked by a project-quality score, which is calculated based on various metrics automatically collected from GitHub and different package managers. If you like to add or update projects, feel free to open an issue, submit a pull request, or directly edit the projects.yaml. Contributions are very welcome! […]

Read more

EfficientTTS: An Efficient and High-Quality Text-to-Speech Architecture

EfficientTTS Unofficial Pytorch implementation of ā€œEfficientTTS: An Efficient and High-Quality Text-to-Speech Architectureā€(arXiv). Disclaimer: Somebody mistakenly think I’m one of the authors. In fact, I am not even in the author list of this paper. I am just a TTS enthusiast. Some important information of the implementation is not presented by the paper. Some model parameters in current version is based on my understanding and exepriments, which may not be consistent with those used by the authors. Updates 2020/12/23: Mandarin Chinese […]

Read more

Open-AI’s DALL-E for large scale training in mesh-tensorflow

Open-AI’s DALL-E in Mesh-Tensorflow. If this is similarly efficient to GPT-Neo, this repo should be able to train models up to, and larger than, the size of Open-AI’s DALL-E (12B params). No pretrained models… Yet. Thanks to Ben Wang for the tf vae implementation as well as getting the mtf version working, and Aran Komatsuzaki for help building the mtf VAE and input pipeline. git clone https://github.com/EleutherAI/GPTNeo cd GPTNeo pip3 install -r requirements.txt Training Setup Runs on TPUs, untested on […]

Read more

A command line utility to export Google Keep notes to markdown

A command line utility to export Google Keep notes to markdown files with metadata stored as a frontmatter header. Supports exporting: Simple notes List notes Images and Drawings Audio clips Link annotations Usage If you do not supply a username or password before running it, you will be prompted to input them. Usage: keep_export [OPTIONS] Options: –config FILE Read configuration from FILE. -u, –user TEXT Google account email (prompt if empty) [env var: GKEEP_USER; required] -p, –password TEXT Google account […]

Read more

Automatic baseball pitching overlay in realtime

⚾Automatically overlaying pitch motion and trajectory with machine learning! This project takes your baseball pitching clips and automatically generates the overlay. The input pitching clip could be directly from your phone or camera. The release point will be automatically detected by the program. This system will trace the trajectory and align all the videos to generate the overlay. A fine-tuned YOLOv4 model is used to get the location    

Read more

Prescriptions to heal your applications and application dependencies

Prescriptions for Thoth’s adviser Prescriptions to heal your applications and application dependencies. What are prescriptions? This repository keeps a database of known issues in Python open-source projects as well as suggestions for Python libraries and runtime environments they can run in. The database is used in Thoth to resolve high quality Python software stacks. When using OpenShift or Kubernetes, one provides manifest files that state how the desired state of a cluster should look like. Prescriptions might be seen analogous […]

Read more
1 507 508 509 510 511 973