import os, sys url='https://www.dynamodocuments.com' # Try segno first (great for SVG/PNG) qr_png_path='dynamo_qr.png' qr_svg_path='dynamo_qr.svg' try: import segno qr = segno.make(url, error='h') qr.save(qr_png_path, scale=12, border=2) # ~ high-res qr.save(qr_svg_path, scale=8, border=2) result=('segno', qr_png_path, qr_svg_path) except Exception as e1: try: import qrcode from PIL import Image qr = qrcode.QRCode( version=None, error_correction=qrcode.constants.ERROR_CORRECT_H, box_size=12, border=2, ) qr.add_data(url) qr.make(fit=True) img = qr.make_image(fill_color='black', back_color='white').convert('RGB') img.save(qr_png_path) # Also create SVG if possible try: import qrcode.image.svg factory = qrcode.image.svg.SvgImage qr2 = qrcode.QRCode(error_correction=qrcode.constants.ERROR_CORRECT_H, box_size=10, border=2, image_factory=factory) qr2.add_data(url) qr2.make(fit=True) img2 = qr2.make_image() with open(qr_svg_path,'wb') as f: img2.save(f) except Exception: qr_svg_path=None result=('qrcode', qr_png_path, qr_svg_path) except Exception as e2: result=('failed', str(e1), str(e2)) import os, sys url='https://www.dynamodocuments.com' # Try segno first (great for SVG/PNG) qr_png_path='dynamo_qr.png' qr_svg_path='dynamo_qr.svg' try: import segno qr = segno.make(url, error='h') qr.save(qr_png_path, scale=12, border=2) # ~ high-res qr.save(qr_svg_path, scale=8, border=2) result=('segno', qr_png_path, qr_svg_path) except Exception as e1: try: import qrcode from PIL import Image qr = qrcode.QRCode( version=None, error_correction=qrcode.constants.ERROR_CORRECT_H, box_size=12, border=2, ) qr.add_data(url) qr.make(fit=True) img = qr.make_image(fill_color='black', back_color='white').convert('RGB') img.save(qr_png_path) # Also create SVG if possible try: import qrcode.image.svg factory = qrcode.image.svg.SvgImage qr2 = qrcode.QRCode(error_correction=qrcode.constants.ERROR_CORRECT_H, box_size=10, border=2, image_factory=factory) qr2.add_data(url) qr2.make(fit=True) img2 = qr2.make_image() with open(qr_svg_path,'wb') as f: img2.save(f) except Exception: qr_svg_path=None result=('qrcode', qr_png_path, qr_svg_path) except Exception as e2: result=('failed', str(e1), str(e2)) result
top of page
White Credit Card

Connecting You Locally

We offer unique solutions tailored just for our community, ensuring every visitor feels valued and appreciated in our space.

Join Our Community

Be a part of our local movement.

Welcome

Smiling with Eyes Close

Our Mission

At My Site, we are dedicated to promoting local engagement and enriching community life. Our aim is to foster connections between residents and businesses, empowering everyone involved. By advocating for local interests, we strive to create an inclusive environment where everyone thrives. Join us in celebrating local culture, talent, and resources, making our neighborhood a vibrant place for all.

Pastel Sweatshirts

Our Offerings

Local Highlights

We provide a range of services designed to enrich the community, promote local businesses, and enhance your overall experience in our area.

Support

Community Focus

Our support services are aimed at connecting residents with local resources, ensuring they have access to essential services that meet their needs.

Events

Engaging Gatherings

We host a variety of community events to bring neighbors together, encourage networking, and promote the local economy through fun and engaging activities.

Resources

Helpful Tools

We offer valuable resources to help residents navigate local services, including directories and guides that make finding what you need easier.

Partnerships

Collaborative Efforts

Our partnerships with local businesses and organizations ensure that we can provide comprehensive support to our community while fostering growth and sustainability.

Dynamo Document Solutions Services, LLC.

bottom of page
import os, sys url='https://www.dynamodocuments.com' # Try segno first (great for SVG/PNG) qr_png_path='dynamo_qr.png' qr_svg_path='dynamo_qr.svg' try: import segno qr = segno.make(url, error='h') qr.save(qr_png_path, scale=12, border=2) # ~ high-res qr.save(qr_svg_path, scale=8, border=2) result=('segno', qr_png_path, qr_svg_path) except Exception as e1: try: import qrcode from PIL import Image qr = qrcode.QRCode( version=None, error_correction=qrcode.constants.ERROR_CORRECT_H, box_size=12, border=2, ) qr.add_data(url) qr.make(fit=True) img = qr.make_image(fill_color='black', back_color='white').convert('RGB') img.save(qr_png_path) # Also create SVG if possible try: import qrcode.image.svg factory = qrcode.image.svg.SvgImage qr2 = qrcode.QRCode(error_correction=qrcode.constants.ERROR_CORRECT_H, box_size=10, border=2, image_factory=factory) qr2.add_data(url) qr2.make(fit=True) img2 = qr2.make_image() with open(qr_svg_path,'wb') as f: img2.save(f) except Exception: qr_svg_path=None result=('qrcode', qr_png_path, qr_svg_path) except Exception as e2: result=('failed', str(e1), str(e2)) result